class Google::Apis::CloudresourcemanagerV1beta1::MoveFolderMetadata
Metadata pertaining to the folder move process.
Attributes
destination_parent[RW]
The resource name of the folder or organization to move the folder to. Corresponds to the JSON property `destinationParent` @return [String]
display_name[RW]
The display name of the folder. Corresponds to the JSON property `displayName` @return [String]
source_parent[RW]
The resource name of the folder's parent. Corresponds to the JSON property `sourceParent` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/cloudresourcemanager_v1beta1/classes.rb, line 736 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/cloudresourcemanager_v1beta1/classes.rb, line 741 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