diff --git a/api_names_out.yaml b/api_names_out.yaml index 657888fea..aa9fff09b 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -25360,6 +25360,20 @@ "/cloudresourcemanager:v2/CloudresourcemanagerGoogleCloudResourcemanagerV2beta1FolderOperation/displayName": display_name "/cloudresourcemanager:v2/CloudresourcemanagerGoogleCloudResourcemanagerV2beta1FolderOperation/operationType": operation_type "/cloudresourcemanager:v2/CloudresourcemanagerGoogleCloudResourcemanagerV2beta1FolderOperation/sourceParent": source_parent +"/cloudresourcemanager:v2/CreateFolderMetadata": create_folder_metadata +"/cloudresourcemanager:v2/CreateFolderMetadata/displayName": display_name +"/cloudresourcemanager:v2/CreateFolderMetadata/parent": parent +"/cloudresourcemanager:v2/CreateProjectMetadata": create_project_metadata +"/cloudresourcemanager:v2/CreateProjectMetadata/createTime": create_time +"/cloudresourcemanager:v2/CreateProjectMetadata/gettable": gettable +"/cloudresourcemanager:v2/CreateProjectMetadata/ready": ready +"/cloudresourcemanager:v2/CreateTagKeyMetadata": create_tag_key_metadata +"/cloudresourcemanager:v2/CreateTagValueMetadata": create_tag_value_metadata +"/cloudresourcemanager:v2/DeleteFolderMetadata": delete_folder_metadata +"/cloudresourcemanager:v2/DeleteOrganizationMetadata": delete_organization_metadata +"/cloudresourcemanager:v2/DeleteProjectMetadata": delete_project_metadata +"/cloudresourcemanager:v2/DeleteTagKeyMetadata": delete_tag_key_metadata +"/cloudresourcemanager:v2/DeleteTagValueMetadata": delete_tag_value_metadata "/cloudresourcemanager:v2/Expr": expr "/cloudresourcemanager:v2/Expr/description": description "/cloudresourcemanager:v2/Expr/expression": expression @@ -25386,8 +25400,13 @@ "/cloudresourcemanager:v2/ListFoldersResponse/folders": folders "/cloudresourcemanager:v2/ListFoldersResponse/folders/folder": folder "/cloudresourcemanager:v2/ListFoldersResponse/nextPageToken": next_page_token +"/cloudresourcemanager:v2/MoveFolderMetadata": move_folder_metadata +"/cloudresourcemanager:v2/MoveFolderMetadata/destinationParent": destination_parent +"/cloudresourcemanager:v2/MoveFolderMetadata/displayName": display_name +"/cloudresourcemanager:v2/MoveFolderMetadata/sourceParent": source_parent "/cloudresourcemanager:v2/MoveFolderRequest": move_folder_request "/cloudresourcemanager:v2/MoveFolderRequest/destinationParent": destination_parent +"/cloudresourcemanager:v2/MoveProjectMetadata": move_project_metadata "/cloudresourcemanager:v2/Operation": operation "/cloudresourcemanager:v2/Operation/done": done "/cloudresourcemanager:v2/Operation/error": error @@ -25430,7 +25449,16 @@ "/cloudresourcemanager:v2/TestIamPermissionsResponse": test_iam_permissions_response "/cloudresourcemanager:v2/TestIamPermissionsResponse/permissions": permissions "/cloudresourcemanager:v2/TestIamPermissionsResponse/permissions/permission": permission +"/cloudresourcemanager:v2/UndeleteFolderMetadata": undelete_folder_metadata "/cloudresourcemanager:v2/UndeleteFolderRequest": undelete_folder_request +"/cloudresourcemanager:v2/UndeleteOrganizationMetadata": undelete_organization_metadata +"/cloudresourcemanager:v2/UndeleteProjectMetadata": undelete_project_metadata +"/cloudresourcemanager:v2/UndeleteTagKeyMetadata": undelete_tag_key_metadata +"/cloudresourcemanager:v2/UndeleteTagValueMetadata": undelete_tag_value_metadata +"/cloudresourcemanager:v2/UpdateFolderMetadata": update_folder_metadata +"/cloudresourcemanager:v2/UpdateProjectMetadata": update_project_metadata +"/cloudresourcemanager:v2/UpdateTagKeyMetadata": update_tag_key_metadata +"/cloudresourcemanager:v2/UpdateTagValueMetadata": update_tag_value_metadata "/cloudresourcemanager:v2/cloudresourcemanager.folders.create": create_folder "/cloudresourcemanager:v2/cloudresourcemanager.folders.create/parent": parent "/cloudresourcemanager:v2/cloudresourcemanager.folders.delete": delete_folder diff --git a/generated/google/apis/cloudresourcemanager_v2.rb b/generated/google/apis/cloudresourcemanager_v2.rb index bde90d400..abba12763 100644 --- a/generated/google/apis/cloudresourcemanager_v2.rb +++ b/generated/google/apis/cloudresourcemanager_v2.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/resource-manager module CloudresourcemanagerV2 VERSION = 'V2' - REVISION = '20201027' + REVISION = '20201111' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/cloudresourcemanager_v2/classes.rb b/generated/google/apis/cloudresourcemanager_v2/classes.rb index f601d5abe..297185b84 100644 --- a/generated/google/apis/cloudresourcemanager_v2/classes.rb +++ b/generated/google/apis/cloudresourcemanager_v2/classes.rb @@ -97,11 +97,6 @@ module Google class Binding include Google::Apis::Core::Hashable - # - # Corresponds to the JSON property `bindingId` - # @return [String] - attr_accessor :binding_id - # Represents a textual expression in the Common Expression Language (CEL) syntax. # CEL is a C-like expression language. The syntax and semantics of CEL are # documented at https://github.com/google/cel-spec. Example (Comparison): title: @@ -163,7 +158,6 @@ module Google # Update properties of this object def update!(**args) - @binding_id = args[:binding_id] if args.key?(:binding_id) @condition = args[:condition] if args.key?(:condition) @members = args[:members] if args.key?(:members) @role = args[:role] if args.key?(:role) @@ -248,6 +242,162 @@ module Google end end + # Metadata pertaining to the Folder creation process. + class CreateFolderMetadata + include Google::Apis::Core::Hashable + + # The display name of the folder. + # Corresponds to the JSON property `displayName` + # @return [String] + attr_accessor :display_name + + # The resource name of the folder or organization we are creating the folder + # under. + # Corresponds to the JSON property `parent` + # @return [String] + attr_accessor :parent + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @display_name = args[:display_name] if args.key?(:display_name) + @parent = args[:parent] if args.key?(:parent) + end + end + + # A status object which is used as the `metadata` field for the Operation + # returned by CreateProject. It provides insight for when significant phases of + # Project creation have completed. + class CreateProjectMetadata + include Google::Apis::Core::Hashable + + # Creation time of the project creation workflow. + # Corresponds to the JSON property `createTime` + # @return [String] + attr_accessor :create_time + + # True if the project can be retrieved using GetProject. No other operations on + # the project are guaranteed to work until the project creation is complete. + # Corresponds to the JSON property `gettable` + # @return [Boolean] + attr_accessor :gettable + alias_method :gettable?, :gettable + + # True if the project creation process is complete. + # Corresponds to the JSON property `ready` + # @return [Boolean] + attr_accessor :ready + alias_method :ready?, :ready + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @create_time = args[:create_time] if args.key?(:create_time) + @gettable = args[:gettable] if args.key?(:gettable) + @ready = args[:ready] if args.key?(:ready) + end + end + + # Runtime operation information for creating a TagKey. + class CreateTagKeyMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # Runtime operation information for creating a TagValue. + class CreateTagValueMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # A status object which is used as the `metadata` field for the Operation + # returned by DeleteFolder. + class DeleteFolderMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # A status object which is used as the `metadata` field for the Operation + # returned by DeleteOrganization. + class DeleteOrganizationMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # A status object which is used as the `metadata` field for the Operation + # returned by DeleteProject. + class DeleteProjectMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # Runtime operation information for deleting a TagKey. + class DeleteTagKeyMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # Runtime operation information for deleting a TagValue. + class DeleteTagValueMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + # Represents a textual expression in the Common Expression Language (CEL) syntax. # CEL is a C-like expression language. The syntax and semantics of CEL are # documented at https://github.com/google/cel-spec. Example (Comparison): title: @@ -483,6 +633,37 @@ module Google end end + # Metadata pertaining to the Folder move process. + class MoveFolderMetadata + include Google::Apis::Core::Hashable + + # The resource name of the folder or organization to move the folder to. + # Corresponds to the JSON property `destinationParent` + # @return [String] + attr_accessor :destination_parent + + # The display name of the folder. + # Corresponds to the JSON property `displayName` + # @return [String] + attr_accessor :display_name + + # The resource name of the folder's parent. + # Corresponds to the JSON property `sourceParent` + # @return [String] + attr_accessor :source_parent + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @destination_parent = args[:destination_parent] if args.key?(:destination_parent) + @display_name = args[:display_name] if args.key?(:display_name) + @source_parent = args[:source_parent] if args.key?(:source_parent) + end + end + # The MoveFolder request message. class MoveFolderRequest include Google::Apis::Core::Hashable @@ -504,6 +685,20 @@ module Google end end + # A status object which is used as the `metadata` field for the Operation + # returned by MoveProject. + class MoveProjectMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + # This resource represents a long-running operation that is the result of a # network API call. class Operation @@ -895,6 +1090,20 @@ module Google end end + # A status object which is used as the `metadata` field for the Operation + # returned by UndeleteFolder. + class UndeleteFolderMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + # The UndeleteFolder request message. class UndeleteFolderRequest include Google::Apis::Core::Hashable @@ -907,6 +1116,114 @@ module Google def update!(**args) end end + + # A status object which is used as the `metadata` field for the Operation + # returned by UndeleteOrganization. + class UndeleteOrganizationMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # A status object which is used as the `metadata` field for the Operation + # returned by UndeleteProject. + class UndeleteProjectMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # Runtime operation information for undeleting a TagKey. + class UndeleteTagKeyMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # Runtime operation information for deleting a TagValue. + class UndeleteTagValueMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # A status object which is used as the `metadata` field for the Operation + # returned by UpdateFolder. + class UpdateFolderMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # A status object which is used as the `metadata` field for the Operation + # returned by UpdateProject. + class UpdateProjectMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # Runtime operation information for updating a TagKey. + class UpdateTagKeyMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end + + # Runtime operation information for updating a TagValue. + class UpdateTagValueMetadata + include Google::Apis::Core::Hashable + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + end + end end end end diff --git a/generated/google/apis/cloudresourcemanager_v2/representations.rb b/generated/google/apis/cloudresourcemanager_v2/representations.rb index bffe805a6..d7c3bc5f0 100644 --- a/generated/google/apis/cloudresourcemanager_v2/representations.rb +++ b/generated/google/apis/cloudresourcemanager_v2/representations.rb @@ -52,6 +52,60 @@ module Google include Google::Apis::Core::JsonObjectSupport end + class CreateFolderMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class CreateProjectMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class CreateTagKeyMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class CreateTagValueMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class DeleteFolderMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class DeleteOrganizationMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class DeleteProjectMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class DeleteTagKeyMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class DeleteTagValueMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class Expr class Representation < Google::Apis::Core::JsonRepresentation; end @@ -94,12 +148,24 @@ module Google include Google::Apis::Core::JsonObjectSupport end + class MoveFolderMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class MoveFolderRequest class Representation < Google::Apis::Core::JsonRepresentation; end include Google::Apis::Core::JsonObjectSupport end + class MoveProjectMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class Operation class Representation < Google::Apis::Core::JsonRepresentation; end @@ -154,12 +220,66 @@ module Google include Google::Apis::Core::JsonObjectSupport end + class UndeleteFolderMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class UndeleteFolderRequest class Representation < Google::Apis::Core::JsonRepresentation; end include Google::Apis::Core::JsonObjectSupport end + class UndeleteOrganizationMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class UndeleteProjectMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class UndeleteTagKeyMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class UndeleteTagValueMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class UpdateFolderMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class UpdateProjectMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class UpdateTagKeyMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + + class UpdateTagValueMetadata + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class AuditConfig # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -180,7 +300,6 @@ module Google class Binding # @private class Representation < Google::Apis::Core::JsonRepresentation - property :binding_id, as: 'bindingId' property :condition, as: 'condition', class: Google::Apis::CloudresourcemanagerV2::Expr, decorator: Google::Apis::CloudresourcemanagerV2::Expr::Representation collection :members, as: 'members' @@ -208,6 +327,65 @@ module Google end end + class CreateFolderMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + property :display_name, as: 'displayName' + property :parent, as: 'parent' + end + end + + class CreateProjectMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + property :create_time, as: 'createTime' + property :gettable, as: 'gettable' + property :ready, as: 'ready' + end + end + + class CreateTagKeyMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class CreateTagValueMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class DeleteFolderMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class DeleteOrganizationMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class DeleteProjectMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class DeleteTagKeyMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class DeleteTagValueMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + class Expr # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -270,6 +448,15 @@ module Google end end + class MoveFolderMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + property :destination_parent, as: 'destinationParent' + property :display_name, as: 'displayName' + property :source_parent, as: 'sourceParent' + end + end + class MoveFolderRequest # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -277,6 +464,12 @@ module Google end end + class MoveProjectMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + class Operation # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -360,11 +553,65 @@ module Google end end + class UndeleteFolderMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + class UndeleteFolderRequest # @private class Representation < Google::Apis::Core::JsonRepresentation end end + + class UndeleteOrganizationMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class UndeleteProjectMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class UndeleteTagKeyMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class UndeleteTagValueMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class UpdateFolderMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class UpdateProjectMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class UpdateTagKeyMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + + class UpdateTagValueMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end end end end diff --git a/generated/google/apis/cloudresourcemanager_v2/service.rb b/generated/google/apis/cloudresourcemanager_v2/service.rb index 06e3d3c3c..2493cd880 100644 --- a/generated/google/apis/cloudresourcemanager_v2/service.rb +++ b/generated/google/apis/cloudresourcemanager_v2/service.rb @@ -302,11 +302,11 @@ module Google # formatting rules or naming constraints described in the CreateFolder # documentation. The Folder's display name must start and end with a letter or # digit, may contain letters, digits, spaces, hyphens and underscores and can be - # no longer than 30 characters. This is captured by the regular expression: `[\p` - # L`\p`N`]([\p`L`\p`N`_- ]`0,28`[\p`L`\p`N`])?`. The caller must have ` - # resourcemanager.folders.update` permission on the identified folder. If the - # update fails due to the unique name constraint then a PreconditionFailure - # explaining this violation will be returned in the Status.details field. + # between 3 and 30 characters. This is captured by the regular expression: `\p`L` + # \p`N``1,28`[\p`L`\p`N`]`. The caller must have `resourcemanager.folders.update` + # permission on the identified folder. If the update fails due to the unique + # name constraint then a PreconditionFailure explaining this violation will be + # returned in the Status.details field. # @param [String] name # Output only. The resource name of the Folder. Its format is `folders/` # folder_id``, for example: "folders/1234". diff --git a/generated/google/apis/cloudresourcemanager_v2/synth.metadata b/generated/google/apis/cloudresourcemanager_v2/synth.metadata index bfdcc4715..f64f8d2a0 100644 --- a/generated/google/apis/cloudresourcemanager_v2/synth.metadata +++ b/generated/google/apis/cloudresourcemanager_v2/synth.metadata @@ -4,7 +4,7 @@ "git": { "name": ".", "remote": "https://github.com/googleapis/google-api-ruby-client.git", - "sha": "14885a31971894de4c45841c7b2623b8e6d8e748" + "sha": "a0833120c5511b30a60c4c1a440ec78b29f8b748" } } ]