Class: Google::Apis::CloudresourcemanagerV2beta1::MoveFolderMetadata

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudresourcemanager_v2beta1/classes.rb,
lib/google/apis/cloudresourcemanager_v2beta1/representations.rb,
lib/google/apis/cloudresourcemanager_v2beta1/representations.rb
more...

Overview

Metadata pertaining to the folder move process.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ MoveFolderMetadata

Returns a new instance of MoveFolderMetadata.

[View source]

722
723
724
# File 'lib/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 722

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#destination_parentString

The resource name of the folder or organization to move the folder to. Corresponds to the JSON property destinationParent

Returns:

  • (String)

710
711
712
# File 'lib/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 710

def destination_parent
  @destination_parent
end

#display_nameString

The display name of the folder. Corresponds to the JSON property displayName

Returns:

  • (String)

715
716
717
# File 'lib/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 715

def display_name
  @display_name
end

#source_parentString

The resource name of the folder's parent. Corresponds to the JSON property sourceParent

Returns:

  • (String)

720
721
722
# File 'lib/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 720

def source_parent
  @source_parent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object

[View source]

727
728
729
730
731
# File 'lib/google/apis/cloudresourcemanager_v2beta1/classes.rb', line 727

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