diff --git a/api_names_out.yaml b/api_names_out.yaml index a482054c5..657888fea 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -24951,6 +24951,20 @@ "/cloudresourcemanager:v1/Constraint/listConstraint": list_constraint "/cloudresourcemanager:v1/Constraint/name": name "/cloudresourcemanager:v1/Constraint/version": version +"/cloudresourcemanager:v1/CreateFolderMetadata": create_folder_metadata +"/cloudresourcemanager:v1/CreateFolderMetadata/displayName": display_name +"/cloudresourcemanager:v1/CreateFolderMetadata/parent": parent +"/cloudresourcemanager:v1/CreateProjectMetadata": create_project_metadata +"/cloudresourcemanager:v1/CreateProjectMetadata/createTime": create_time +"/cloudresourcemanager:v1/CreateProjectMetadata/gettable": gettable +"/cloudresourcemanager:v1/CreateProjectMetadata/ready": ready +"/cloudresourcemanager:v1/CreateTagKeyMetadata": create_tag_key_metadata +"/cloudresourcemanager:v1/CreateTagValueMetadata": create_tag_value_metadata +"/cloudresourcemanager:v1/DeleteFolderMetadata": delete_folder_metadata +"/cloudresourcemanager:v1/DeleteOrganizationMetadata": delete_organization_metadata +"/cloudresourcemanager:v1/DeleteProjectMetadata": delete_project_metadata +"/cloudresourcemanager:v1/DeleteTagKeyMetadata": delete_tag_key_metadata +"/cloudresourcemanager:v1/DeleteTagValueMetadata": delete_tag_value_metadata "/cloudresourcemanager:v1/Empty": empty "/cloudresourcemanager:v1/Expr": expr "/cloudresourcemanager:v1/Expr/description": description @@ -25017,6 +25031,11 @@ "/cloudresourcemanager:v1/ListProjectsResponse/nextPageToken": next_page_token "/cloudresourcemanager:v1/ListProjectsResponse/projects": projects "/cloudresourcemanager:v1/ListProjectsResponse/projects/project": project +"/cloudresourcemanager:v1/MoveFolderMetadata": move_folder_metadata +"/cloudresourcemanager:v1/MoveFolderMetadata/destinationParent": destination_parent +"/cloudresourcemanager:v1/MoveFolderMetadata/displayName": display_name +"/cloudresourcemanager:v1/MoveFolderMetadata/sourceParent": source_parent +"/cloudresourcemanager:v1/MoveProjectMetadata": move_project_metadata "/cloudresourcemanager:v1/Operation": operation "/cloudresourcemanager:v1/Operation/done": done "/cloudresourcemanager:v1/Operation/error": error @@ -25090,7 +25109,16 @@ "/cloudresourcemanager:v1/TestIamPermissionsResponse": test_iam_permissions_response "/cloudresourcemanager:v1/TestIamPermissionsResponse/permissions": permissions "/cloudresourcemanager:v1/TestIamPermissionsResponse/permissions/permission": permission +"/cloudresourcemanager:v1/UndeleteFolderMetadata": undelete_folder_metadata +"/cloudresourcemanager:v1/UndeleteOrganizationMetadata": undelete_organization_metadata +"/cloudresourcemanager:v1/UndeleteProjectMetadata": undelete_project_metadata "/cloudresourcemanager:v1/UndeleteProjectRequest": undelete_project_request +"/cloudresourcemanager:v1/UndeleteTagKeyMetadata": undelete_tag_key_metadata +"/cloudresourcemanager:v1/UndeleteTagValueMetadata": undelete_tag_value_metadata +"/cloudresourcemanager:v1/UpdateFolderMetadata": update_folder_metadata +"/cloudresourcemanager:v1/UpdateProjectMetadata": update_project_metadata +"/cloudresourcemanager:v1/UpdateTagKeyMetadata": update_tag_key_metadata +"/cloudresourcemanager:v1/UpdateTagValueMetadata": update_tag_value_metadata "/cloudresourcemanager:v1/cloudresourcemanager.folders.clearOrgPolicy": clear_folder_org_policy "/cloudresourcemanager:v1/cloudresourcemanager.folders.clearOrgPolicy/resource": resource "/cloudresourcemanager:v1/cloudresourcemanager.folders.getEffectiveOrgPolicy": get_folder_effective_org_policy diff --git a/generated/google/apis/cloudresourcemanager_v1.rb b/generated/google/apis/cloudresourcemanager_v1.rb index d893c8716..160a665d0 100644 --- a/generated/google/apis/cloudresourcemanager_v1.rb +++ b/generated/google/apis/cloudresourcemanager_v1.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/resource-manager module CloudresourcemanagerV1 VERSION = 'V1' - 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_v1/classes.rb b/generated/google/apis/cloudresourcemanager_v1/classes.rb index 0ade9cdf9..85892a44c 100644 --- a/generated/google/apis/cloudresourcemanager_v1/classes.rb +++ b/generated/google/apis/cloudresourcemanager_v1/classes.rb @@ -119,11 +119,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: @@ -185,7 +180,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) @@ -426,6 +420,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 + # 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. @@ -1046,6 +1196,51 @@ 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 + + # 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 @@ -1744,6 +1939,48 @@ 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 + + # 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 + # The request sent to the UndeleteProject method. class UndeleteProjectRequest include Google::Apis::Core::Hashable @@ -1756,6 +1993,86 @@ module Google 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_v1/representations.rb b/generated/google/apis/cloudresourcemanager_v1/representations.rb index 9e0cbabe6..1c7243902 100644 --- a/generated/google/apis/cloudresourcemanager_v1/representations.rb +++ b/generated/google/apis/cloudresourcemanager_v1/representations.rb @@ -82,6 +82,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 Empty class Representation < Google::Apis::Core::JsonRepresentation; end @@ -196,6 +250,18 @@ module Google include Google::Apis::Core::JsonObjectSupport end + class MoveFolderMetadata + 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 @@ -292,12 +358,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 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 UndeleteProjectRequest 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 Ancestor # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -326,7 +446,6 @@ module Google class Binding # @private class Representation < Google::Apis::Core::JsonRepresentation - property :binding_id, as: 'bindingId' property :condition, as: 'condition', class: Google::Apis::CloudresourcemanagerV1::Expr, decorator: Google::Apis::CloudresourcemanagerV1::Expr::Representation collection :members, as: 'members' @@ -390,6 +509,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 Empty # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -549,6 +727,21 @@ 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 MoveProjectMetadata + # @private + class Representation < Google::Apis::Core::JsonRepresentation + end + end + class Operation # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -703,11 +896,65 @@ module Google end end + class UndeleteFolderMetadata + # @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 UndeleteProjectRequest # @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_v1/synth.metadata b/generated/google/apis/cloudresourcemanager_v1/synth.metadata index bfdcc4715..f64f8d2a0 100644 --- a/generated/google/apis/cloudresourcemanager_v1/synth.metadata +++ b/generated/google/apis/cloudresourcemanager_v1/synth.metadata @@ -4,7 +4,7 @@ "git": { "name": ".", "remote": "https://github.com/googleapis/google-api-ruby-client.git", - "sha": "14885a31971894de4c45841c7b2623b8e6d8e748" + "sha": "a0833120c5511b30a60c4c1a440ec78b29f8b748" } } ]