google-api-ruby-client/generated/google/apis/iam_v1/classes.rb

641 lines
26 KiB
Ruby
Raw Normal View History

2016-03-11 22:41:20 +00:00
# Copyright 2015 Google Inc.
#
# 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.
require 'date'
require 'google/apis/core/base_service'
require 'google/apis/core/json_representation'
require 'google/apis/core/hashable'
require 'google/apis/errors'
module Google
module Apis
module IamV1
# The service account list response.
class ListServiceAccountsResponse
include Google::Apis::Core::Hashable
# The list of matching service accounts.
# Corresponds to the JSON property `accounts`
# @return [Array<Google::Apis::IamV1::ServiceAccount>]
attr_accessor :accounts
2016-10-04 00:27:26 +00:00
# To retrieve the next page of results, set ListServiceAccountsRequest.
# page_token to this value.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `nextPageToken`
# @return [String]
attr_accessor :next_page_token
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@accounts = args[:accounts] if args.key?(:accounts)
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end
end
# A service account in the Identity and Access Management API. To create a
2016-10-04 00:27:26 +00:00
# service account, specify the `project_id` and the `account_id` for the account.
# The `account_id` is unique within the project, and is used to generate the
# service account email address and a stable `unique_id`. If the account already
# exists, the account's resource name is returned in util::Status's ResourceInfo.
# resource_name in the format of projects/`project`/serviceAccounts/`email`. The
# caller can use the name in other methods to access the account. All other
# methods can identify the service account using the format `projects/`project`/
# serviceAccounts/`account``. Using `-` as a wildcard for the project will infer
# the project from the account. The `account` value can be the `email` address
# or the `unique_id` of the service account.
2016-03-11 22:41:20 +00:00
class ServiceAccount
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The resource name of the service account in the following format: `projects/`
# project`/serviceAccounts/`account``. Requests using `-` as a wildcard for the
# project will infer the project from the `account` and the `account` value can
# be the `email` address or the `unique_id` of the service account. In responses
# the resource name will always be in the format `projects/`project`/
# serviceAccounts/`email``.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# @OutputOnly The id of the project that owns the service account.
# Corresponds to the JSON property `projectId`
# @return [String]
attr_accessor :project_id
2016-10-04 00:27:26 +00:00
# @OutputOnly The unique and stable id of the service account.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `uniqueId`
# @return [String]
attr_accessor :unique_id
2016-10-04 00:27:26 +00:00
# @OutputOnly The email address of the service account.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `email`
# @return [String]
attr_accessor :email
# Optional. A user-specified description of the service account. Must be fewer
# than 100 UTF-8 bytes.
# Corresponds to the JSON property `displayName`
# @return [String]
attr_accessor :display_name
# Used to perform a consistent read-modify-write.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
# @OutputOnly. The OAuth2 client id for the service account. This is used in
# conjunction with the OAuth2 clientconfig API to make three legged OAuth2 (3LO)
# flows to access the data of Google users.
# Corresponds to the JSON property `oauth2ClientId`
# @return [String]
attr_accessor :oauth2_client_id
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@name = args[:name] if args.key?(:name)
@project_id = args[:project_id] if args.key?(:project_id)
@unique_id = args[:unique_id] if args.key?(:unique_id)
@email = args[:email] if args.key?(:email)
@display_name = args[:display_name] if args.key?(:display_name)
@etag = args[:etag] if args.key?(:etag)
@oauth2_client_id = args[:oauth2_client_id] if args.key?(:oauth2_client_id)
end
end
# The service account create request.
class CreateServiceAccountRequest
include Google::Apis::Core::Hashable
# Required. The account id that is used to generate the service account email
2016-10-04 00:27:26 +00:00
# address and a stable unique id. It is unique within a project, must be 6-30
# characters long, and match the regular expression `[a-z]([-a-z0-9]*[a-z0-9])`
# to comply with RFC1035.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `accountId`
# @return [String]
attr_accessor :account_id
# A service account in the Identity and Access Management API. To create a
2016-10-04 00:27:26 +00:00
# service account, specify the `project_id` and the `account_id` for the account.
# The `account_id` is unique within the project, and is used to generate the
# service account email address and a stable `unique_id`. If the account already
# exists, the account's resource name is returned in util::Status's ResourceInfo.
# resource_name in the format of projects/`project`/serviceAccounts/`email`. The
# caller can use the name in other methods to access the account. All other
# methods can identify the service account using the format `projects/`project`/
# serviceAccounts/`account``. Using `-` as a wildcard for the project will infer
# the project from the account. The `account` value can be the `email` address
# or the `unique_id` of the service account.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `serviceAccount`
# @return [Google::Apis::IamV1::ServiceAccount]
attr_accessor :service_account
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@account_id = args[:account_id] if args.key?(:account_id)
@service_account = args[:service_account] if args.key?(:service_account)
end
end
# A generic empty message that you can re-use to avoid defining duplicated empty
# messages in your APIs. A typical example is to use it as the request or the
# response type of an API method. For instance: service Foo ` rpc Bar(google.
# protobuf.Empty) returns (google.protobuf.Empty); ` The JSON representation for
# `Empty` is empty JSON object ````.
class Empty
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# The service account keys list response.
class ListServiceAccountKeysResponse
include Google::Apis::Core::Hashable
# The public keys for the service account.
# Corresponds to the JSON property `keys`
# @return [Array<Google::Apis::IamV1::ServiceAccountKey>]
attr_accessor :keys
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@keys = args[:keys] if args.key?(:keys)
end
end
2016-10-04 00:27:26 +00:00
# Represents a service account key. A service account has two sets of key-pairs:
# user-managed, and system-managed. User-managed key-pairs can be created and
# deleted by users. Users are responsible for rotating these keys periodically
# to ensure security of their service accounts. Users retain the private key of
# these key-pairs, and Google retains ONLY the public key. System-managed key-
# pairs are managed automatically by Google, and rotated daily without user
# intervention. The private key never leaves Google's servers to maximize
# security. Public keys for all service accounts are also published at the
# OAuth2 Service Account API.
2016-03-11 22:41:20 +00:00
class ServiceAccountKey
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The resource name of the service account key in the following format `projects/
# `project`/serviceAccounts/`account`/keys/`key``.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
2016-10-04 00:27:26 +00:00
# The output format for the private key. Only provided in `
# CreateServiceAccountKey` responses, not in `GetServiceAccountKey` or `
# ListServiceAccountKey` responses. Google never exposes system-managed private
# keys, and never retains user-managed private keys.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `privateKeyType`
# @return [String]
attr_accessor :private_key_type
2016-10-04 00:27:26 +00:00
# Specifies the algorithm (and possibly key size) for the key.
# Corresponds to the JSON property `keyAlgorithm`
# @return [String]
attr_accessor :key_algorithm
# The private key data. Only provided in `CreateServiceAccountKey` responses.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `privateKeyData`
# @return [String]
attr_accessor :private_key_data
2016-10-04 00:27:26 +00:00
# The public key data. Only provided in `GetServiceAccountKey` responses.
# Corresponds to the JSON property `publicKeyData`
# @return [String]
attr_accessor :public_key_data
2016-03-11 22:41:20 +00:00
# The key can be used after this timestamp.
# Corresponds to the JSON property `validAfterTime`
# @return [String]
attr_accessor :valid_after_time
# The key can be used before this timestamp.
# Corresponds to the JSON property `validBeforeTime`
# @return [String]
attr_accessor :valid_before_time
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@name = args[:name] if args.key?(:name)
@private_key_type = args[:private_key_type] if args.key?(:private_key_type)
2016-10-04 00:27:26 +00:00
@key_algorithm = args[:key_algorithm] if args.key?(:key_algorithm)
2016-03-11 22:41:20 +00:00
@private_key_data = args[:private_key_data] if args.key?(:private_key_data)
2016-10-04 00:27:26 +00:00
@public_key_data = args[:public_key_data] if args.key?(:public_key_data)
2016-03-11 22:41:20 +00:00
@valid_after_time = args[:valid_after_time] if args.key?(:valid_after_time)
@valid_before_time = args[:valid_before_time] if args.key?(:valid_before_time)
end
end
# The service account key create request.
class CreateServiceAccountKeyRequest
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The output format of the private key. `GOOGLE_CREDENTIALS_FILE` is the default
# output format.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `privateKeyType`
# @return [String]
attr_accessor :private_key_type
2016-10-04 00:27:26 +00:00
# Which type of key and algorithm to use for the key. The default is currently a
# 4K RSA key. However this may change in the future.
# Corresponds to the JSON property `keyAlgorithm`
# @return [String]
attr_accessor :key_algorithm
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@private_key_type = args[:private_key_type] if args.key?(:private_key_type)
2016-10-04 00:27:26 +00:00
@key_algorithm = args[:key_algorithm] if args.key?(:key_algorithm)
2016-03-11 22:41:20 +00:00
end
end
# The service account sign blob request.
class SignBlobRequest
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The bytes to sign.
2016-03-11 22:41:20 +00:00
# Corresponds to the JSON property `bytesToSign`
# @return [String]
attr_accessor :bytes_to_sign
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@bytes_to_sign = args[:bytes_to_sign] if args.key?(:bytes_to_sign)
end
end
# The service account sign blob response.
class SignBlobResponse
include Google::Apis::Core::Hashable
# The id of the key used to sign the blob.
# Corresponds to the JSON property `keyId`
# @return [String]
attr_accessor :key_id
# The signed blob.
# Corresponds to the JSON property `signature`
# @return [String]
attr_accessor :signature
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@key_id = args[:key_id] if args.key?(:key_id)
@signature = args[:signature] if args.key?(:signature)
end
end
# Defines an Identity and Access Management (IAM) policy. It is used to specify
# access control policies for Cloud Platform resources. A `Policy` consists of a
# list of `bindings`. A `Binding` binds a list of `members` to a `role`, where
# the members can be user accounts, Google groups, Google domains, and service
# accounts. A `role` is a named list of permissions defined by IAM. **Example** `
# "bindings": [ ` "role": "roles/owner", "members": [ "user:mike@example.com", "
# group:admins@example.com", "domain:google.com", "serviceAccount:my-other-app@
2016-10-04 00:27:26 +00:00
# appspot.gserviceaccount.com", ] `, ` "role": "roles/viewer", "members": ["user:
2016-03-11 22:41:20 +00:00
# sean@example.com"] ` ] ` For a description of IAM and its features, see the [
# IAM developer's guide](https://cloud.google.com/iam).
class Policy
include Google::Apis::Core::Hashable
# Version of the `Policy`. The default version is 0.
# Corresponds to the JSON property `version`
# @return [Fixnum]
attr_accessor :version
# Associates a list of `members` to a `role`. Multiple `bindings` must not be
# specified for the same `role`. `bindings` with no members will result in an
# error.
# Corresponds to the JSON property `bindings`
# @return [Array<Google::Apis::IamV1::Binding>]
attr_accessor :bindings
# `etag` is used for optimistic concurrency control as a way to help prevent
# simultaneous updates of a policy from overwriting each other. It is strongly
# suggested that systems make use of the `etag` in the read-modify-write cycle
# to perform policy updates in order to avoid race conditions: An `etag` is
# returned in the response to `getIamPolicy`, and systems are expected to put
# that etag in the request to `setIamPolicy` to ensure that their change will be
# applied to the same version of the policy. If no `etag` is provided in the
# call to `setIamPolicy`, then the existing policy is overwritten blindly.
# Corresponds to the JSON property `etag`
# @return [String]
attr_accessor :etag
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@version = args[:version] if args.key?(:version)
@bindings = args[:bindings] if args.key?(:bindings)
@etag = args[:etag] if args.key?(:etag)
end
end
# Associates `members` with a `role`.
class Binding
include Google::Apis::Core::Hashable
# Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
# , or `roles/owner`. Required
# Corresponds to the JSON property `role`
# @return [String]
attr_accessor :role
# Specifies the identities requesting access for a Cloud Platform resource. `
# members` can have the following values: * `allUsers`: A special identifier
# that represents anyone who is on the internet; with or without a Google
# account. * `allAuthenticatedUsers`: A special identifier that represents
# anyone who is authenticated with a Google account or a service account. * `
# user:`emailid``: An email address that represents a specific Google account.
# For example, `alice@gmail.com` or `joe@example.com`. * `serviceAccount:`
# emailid``: An email address that represents a service account. For example, `
# my-other-app@appspot.gserviceaccount.com`. * `group:`emailid``: An email
# address that represents a Google group. For example, `admins@example.com`. * `
# domain:`domain``: A Google Apps domain name that represents all the users of
# that domain. For example, `google.com` or `example.com`.
# Corresponds to the JSON property `members`
# @return [Array<String>]
attr_accessor :members
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
@role = args[:role] if args.key?(:role)
@members = args[:members] if args.key?(:members)
end
end
2016-10-04 00:27:26 +00:00
# Request message for `SetIamPolicy` method.
class SetIamPolicyRequest
2016-03-11 22:41:20 +00:00
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# Defines an Identity and Access Management (IAM) policy. It is used to specify
# access control policies for Cloud Platform resources. A `Policy` consists of a
# list of `bindings`. A `Binding` binds a list of `members` to a `role`, where
# the members can be user accounts, Google groups, Google domains, and service
# accounts. A `role` is a named list of permissions defined by IAM. **Example** `
# "bindings": [ ` "role": "roles/owner", "members": [ "user:mike@example.com", "
# group:admins@example.com", "domain:google.com", "serviceAccount:my-other-app@
# appspot.gserviceaccount.com", ] `, ` "role": "roles/viewer", "members": ["user:
# sean@example.com"] ` ] ` For a description of IAM and its features, see the [
# IAM developer's guide](https://cloud.google.com/iam).
# Corresponds to the JSON property `policy`
# @return [Google::Apis::IamV1::Policy]
attr_accessor :policy
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
2016-10-04 00:27:26 +00:00
@policy = args[:policy] if args.key?(:policy)
2016-03-11 22:41:20 +00:00
end
end
2016-10-04 00:27:26 +00:00
# Request message for `TestIamPermissions` method.
class TestIamPermissionsRequest
2016-03-11 22:41:20 +00:00
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The set of permissions to check for the `resource`. Permissions with wildcards
# (such as '*' or 'storage.*') are not allowed. For more information see [IAM
# Overview](https://cloud.google.com/iam/docs/overview#permissions).
# Corresponds to the JSON property `permissions`
2016-03-11 22:41:20 +00:00
# @return [Array<String>]
2016-10-04 00:27:26 +00:00
attr_accessor :permissions
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
2016-10-04 00:27:26 +00:00
@permissions = args[:permissions] if args.key?(:permissions)
2016-03-11 22:41:20 +00:00
end
end
2016-10-04 00:27:26 +00:00
# Response message for `TestIamPermissions` method.
class TestIamPermissionsResponse
2016-03-11 22:41:20 +00:00
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# A subset of `TestPermissionsRequest.permissions` that the caller is allowed.
# Corresponds to the JSON property `permissions`
# @return [Array<String>]
attr_accessor :permissions
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
2016-10-04 00:27:26 +00:00
@permissions = args[:permissions] if args.key?(:permissions)
2016-03-11 22:41:20 +00:00
end
end
2016-10-04 00:27:26 +00:00
# The grantable role query request.
class QueryGrantableRolesRequest
2016-03-11 22:41:20 +00:00
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# Required. The full resource name to query from the list of grantable roles.
# The name follows the Google Cloud Platform resource format. For example, a
# Cloud Platform project with id `my-project` will be named `//
# cloudresourcemanager.googleapis.com/projects/my-project`.
# Corresponds to the JSON property `fullResourceName`
2016-03-11 22:41:20 +00:00
# @return [String]
2016-10-04 00:27:26 +00:00
attr_accessor :full_resource_name
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
2016-10-04 00:27:26 +00:00
@full_resource_name = args[:full_resource_name] if args.key?(:full_resource_name)
2016-03-11 22:41:20 +00:00
end
end
2016-10-04 00:27:26 +00:00
# The grantable role query response.
class QueryGrantableRolesResponse
2016-03-11 22:41:20 +00:00
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The list of matching roles.
# Corresponds to the JSON property `roles`
# @return [Array<Google::Apis::IamV1::Role>]
attr_accessor :roles
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
2016-10-04 00:27:26 +00:00
@roles = args[:roles] if args.key?(:roles)
2016-03-11 22:41:20 +00:00
end
end
2016-10-04 00:27:26 +00:00
# A role in the Identity and Access Management API.
class Role
2016-03-11 22:41:20 +00:00
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The name of the role. When Role is used in CreateRole, the role name must not
# be set. When Role is used in output and other input such as UpdateRole, the
# role name is the complete path, e.g., roles/logging.viewer for curated roles
# and organizations/`organization-id`/roles/logging.viewer for custom roles.
# Corresponds to the JSON property `name`
# @return [String]
attr_accessor :name
# Optional. A human-readable title for the role. Typically this is limited to
# 100 UTF-8 bytes.
# Corresponds to the JSON property `title`
# @return [String]
attr_accessor :title
# Optional. A human-readable description for the role.
# Corresponds to the JSON property `description`
# @return [String]
attr_accessor :description
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
2016-10-04 00:27:26 +00:00
@name = args[:name] if args.key?(:name)
@title = args[:title] if args.key?(:title)
@description = args[:description] if args.key?(:description)
2016-03-11 22:41:20 +00:00
end
end
2016-10-04 00:27:26 +00:00
# Audit log information specific to Cloud IAM. This message is serialized as an `
# Any` type in the `ServiceData` message of an `AuditLog` message.
class AuditData
2016-03-11 22:41:20 +00:00
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The difference delta between two policies.
# Corresponds to the JSON property `policyDelta`
# @return [Google::Apis::IamV1::PolicyDelta]
attr_accessor :policy_delta
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
2016-10-04 00:27:26 +00:00
@policy_delta = args[:policy_delta] if args.key?(:policy_delta)
2016-03-11 22:41:20 +00:00
end
end
2016-10-04 00:27:26 +00:00
# The difference delta between two policies.
class PolicyDelta
2016-03-11 22:41:20 +00:00
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The delta for Bindings between two policies.
# Corresponds to the JSON property `bindingDeltas`
# @return [Array<Google::Apis::IamV1::BindingDelta>]
attr_accessor :binding_deltas
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
2016-10-04 00:27:26 +00:00
@binding_deltas = args[:binding_deltas] if args.key?(:binding_deltas)
2016-03-11 22:41:20 +00:00
end
end
2016-10-04 00:27:26 +00:00
# One delta entry for Binding. Each individual change (only one member in each
# entry) to a binding will be a separate entry.
class BindingDelta
2016-03-11 22:41:20 +00:00
include Google::Apis::Core::Hashable
2016-10-04 00:27:26 +00:00
# The action that was performed on a Binding. Required
# Corresponds to the JSON property `action`
# @return [String]
attr_accessor :action
# Role that is assigned to `members`. For example, `roles/viewer`, `roles/editor`
# , or `roles/owner`. Required
# Corresponds to the JSON property `role`
# @return [String]
attr_accessor :role
# A single identity requesting access for a Cloud Platform resource. Follows the
# same format of Binding.members. Required
# Corresponds to the JSON property `member`
# @return [String]
attr_accessor :member
2016-03-11 22:41:20 +00:00
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
2016-10-04 00:27:26 +00:00
@action = args[:action] if args.key?(:action)
@role = args[:role] if args.key?(:role)
@member = args[:member] if args.key?(:member)
2016-03-11 22:41:20 +00:00
end
end
end
end
end