-
Notifications
You must be signed in to change notification settings - Fork 461
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Automated regeneration of ServiceControl client
- Loading branch information
1 parent
7ac1a0b
commit b1b6902
Showing
13 changed files
with
220 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
...nts/service_control/lib/google_api/service_control/v1/model/service_delegation_history.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright 2019 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# NOTE: This file is auto generated by the elixir code generator program. | ||
# Do not edit this file manually. | ||
|
||
defmodule GoogleApi.ServiceControl.V1.Model.ServiceDelegationHistory do | ||
@moduledoc """ | ||
The history of delegation across multiple services as the result of the original user's action. Such as "service A uses its own account to do something for user B". This differs from ServiceAccountDelegationInfo, which only tracks the history of direct token exchanges (impersonation). | ||
## Attributes | ||
* `originalPrincipal` (*type:* `String.t`, *default:* `nil`) - The original end user who initiated the request to GCP. | ||
* `serviceMetadata` (*type:* `list(GoogleApi.ServiceControl.V1.Model.ServiceMetadata.t)`, *default:* `nil`) - Data identifying the service specific jobs or units of work that were involved in a chain of service calls. | ||
""" | ||
|
||
use GoogleApi.Gax.ModelBase | ||
|
||
@type t :: %__MODULE__{ | ||
:originalPrincipal => String.t() | nil, | ||
:serviceMetadata => list(GoogleApi.ServiceControl.V1.Model.ServiceMetadata.t()) | nil | ||
} | ||
|
||
field(:originalPrincipal) | ||
field(:serviceMetadata, as: GoogleApi.ServiceControl.V1.Model.ServiceMetadata, type: :list) | ||
end | ||
|
||
defimpl Poison.Decoder, for: GoogleApi.ServiceControl.V1.Model.ServiceDelegationHistory do | ||
def decode(value, options) do | ||
GoogleApi.ServiceControl.V1.Model.ServiceDelegationHistory.decode(value, options) | ||
end | ||
end | ||
|
||
defimpl Poison.Encoder, for: GoogleApi.ServiceControl.V1.Model.ServiceDelegationHistory do | ||
def encode(value, options) do | ||
GoogleApi.Gax.ModelBase.encode(value, options) | ||
end | ||
end |
52 changes: 52 additions & 0 deletions
52
clients/service_control/lib/google_api/service_control/v1/model/service_metadata.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Copyright 2019 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# NOTE: This file is auto generated by the elixir code generator program. | ||
# Do not edit this file manually. | ||
|
||
defmodule GoogleApi.ServiceControl.V1.Model.ServiceMetadata do | ||
@moduledoc """ | ||
Metadata describing the service and additional service specific information used to identify the job or unit of work at hand. | ||
## Attributes | ||
* `jobMetadata` (*type:* `map()`, *default:* `nil`) - Additional metadata provided by service teams to describe service specific job information that was triggered by the original principal. | ||
* `principalSubject` (*type:* `String.t`, *default:* `nil`) - A string representing the principal_subject associated with the identity. For most identities, the format will be `principal://iam.googleapis.com/{identity pool name}/subject/{subject)` except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format `serviceAccount:{identity pool name}[{subject}]` If the identity is a Google account (e.g. workspace user account or service account), this will be the email of the prefixed by `serviceAccount:`. For example: `serviceAccount:[email protected]`. If the identity is an individual user, the identity will be formatted as: `user:[email protected]`. | ||
* `serviceDomain` (*type:* `String.t`, *default:* `nil`) - The service's fully qualified domain name, e.g. "dataproc.googleapis.com". | ||
""" | ||
|
||
use GoogleApi.Gax.ModelBase | ||
|
||
@type t :: %__MODULE__{ | ||
:jobMetadata => map() | nil, | ||
:principalSubject => String.t() | nil, | ||
:serviceDomain => String.t() | nil | ||
} | ||
|
||
field(:jobMetadata, type: :map) | ||
field(:principalSubject) | ||
field(:serviceDomain) | ||
end | ||
|
||
defimpl Poison.Decoder, for: GoogleApi.ServiceControl.V1.Model.ServiceMetadata do | ||
def decode(value, options) do | ||
GoogleApi.ServiceControl.V1.Model.ServiceMetadata.decode(value, options) | ||
end | ||
end | ||
|
||
defimpl Poison.Encoder, for: GoogleApi.ServiceControl.V1.Model.ServiceMetadata do | ||
def encode(value, options) do | ||
GoogleApi.Gax.ModelBase.encode(value, options) | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
49 changes: 49 additions & 0 deletions
49
...nts/service_control/lib/google_api/service_control/v2/model/service_delegation_history.ex
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# Copyright 2019 Google LLC | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
# NOTE: This file is auto generated by the elixir code generator program. | ||
# Do not edit this file manually. | ||
|
||
defmodule GoogleApi.ServiceControl.V2.Model.ServiceDelegationHistory do | ||
@moduledoc """ | ||
The history of delegation across multiple services as the result of the original user's action. Such as "service A uses its own account to do something for user B". This differs from ServiceAccountDelegationInfo, which only tracks the history of direct token exchanges (impersonation). | ||
## Attributes | ||
* `originalPrincipal` (*type:* `String.t`, *default:* `nil`) - The original end user who initiated the request to GCP. | ||
* `serviceMetadata` (*type:* `list(GoogleApi.ServiceControl.V2.Model.ServiceMetadata.t)`, *default:* `nil`) - Data identifying the service specific jobs or units of work that were involved in a chain of service calls. | ||
""" | ||
|
||
use GoogleApi.Gax.ModelBase | ||
|
||
@type t :: %__MODULE__{ | ||
:originalPrincipal => String.t() | nil, | ||
:serviceMetadata => list(GoogleApi.ServiceControl.V2.Model.ServiceMetadata.t()) | nil | ||
} | ||
|
||
field(:originalPrincipal) | ||
field(:serviceMetadata, as: GoogleApi.ServiceControl.V2.Model.ServiceMetadata, type: :list) | ||
end | ||
|
||
defimpl Poison.Decoder, for: GoogleApi.ServiceControl.V2.Model.ServiceDelegationHistory do | ||
def decode(value, options) do | ||
GoogleApi.ServiceControl.V2.Model.ServiceDelegationHistory.decode(value, options) | ||
end | ||
end | ||
|
||
defimpl Poison.Encoder, for: GoogleApi.ServiceControl.V2.Model.ServiceDelegationHistory do | ||
def encode(value, options) do | ||
GoogleApi.Gax.ModelBase.encode(value, options) | ||
end | ||
end |
Oops, something went wrong.