class Google::Apis::CloudresourcemanagerV1beta1::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_v1beta1/classes.rb, line 282 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 287 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @parent = args[:parent] if args.key?(:parent) end