class Google::Apis::CloudresourcemanagerV3::CreateFolderMetadata

Metadata pertaining to the Folder creation process.

Attributes

display_name[RW]

The display name of the folder. Corresponds to the JSON property `displayName` @return [String]

parent[RW]

The resource name of the folder or organization we are creating the folder under. Corresponds to the JSON property `parent` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudresourcemanager_v3/classes.rb, line 260
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_v3/classes.rb, line 265
def update!(**args)
  @display_name = args[:display_name] if args.key?(:display_name)
  @parent = args[:parent] if args.key?(:parent)
end