Class: Google::Apis::CloudresourcemanagerV1::MoveFolderMetadata
- Inherits:
-
Object
- Object
- Google::Apis::CloudresourcemanagerV1::MoveFolderMetadata
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudresourcemanager_v1/classes.rb,
lib/google/apis/cloudresourcemanager_v1/representations.rb,
lib/google/apis/cloudresourcemanager_v1/representations.rb
Overview
Metadata pertaining to the folder move process.
Instance Attribute Summary collapse
-
#destination_parent ⇒ String
The resource name of the folder or organization to move the folder to.
-
#display_name ⇒ String
The display name of the folder.
-
#source_parent ⇒ String
The resource name of the folder's parent.
Instance Method Summary collapse
-
#initialize(**args) ⇒ MoveFolderMetadata
constructor
A new instance of MoveFolderMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ MoveFolderMetadata
Returns a new instance of MoveFolderMetadata.
1276 1277 1278 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1276 def initialize(**args) update!(**args) end |
Instance Attribute Details
#destination_parent ⇒ String
The resource name of the folder or organization to move the folder to.
Corresponds to the JSON property destinationParent
1264 1265 1266 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1264 def destination_parent @destination_parent end |
#display_name ⇒ String
The display name of the folder.
Corresponds to the JSON property displayName
1269 1270 1271 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1269 def display_name @display_name end |
#source_parent ⇒ String
The resource name of the folder's parent.
Corresponds to the JSON property sourceParent
1274 1275 1276 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1274 def source_parent @source_parent end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1281 1282 1283 1284 1285 |
# File 'lib/google/apis/cloudresourcemanager_v1/classes.rb', line 1281 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 |