Class: Google::Apis::CloudresourcemanagerV2::CreateFolderMetadata

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

Overview

Metadata pertaining to the Folder creation process.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ CreateFolderMetadata

Returns a new instance of CreateFolderMetadata.



263
264
265
# File 'lib/google/apis/cloudresourcemanager_v2/classes.rb', line 263

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

Instance Attribute Details

#display_nameString

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

Returns:

  • (String)


255
256
257
# File 'lib/google/apis/cloudresourcemanager_v2/classes.rb', line 255

def display_name
  @display_name
end

#parentString

The resource name of the folder or organization we are creating the folder under. Corresponds to the JSON property parent

Returns:

  • (String)


261
262
263
# File 'lib/google/apis/cloudresourcemanager_v2/classes.rb', line 261

def parent
  @parent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



268
269
270
271
# File 'lib/google/apis/cloudresourcemanager_v2/classes.rb', line 268

def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @parent = args[:parent] if args.key?(:parent)
end