Class: Google::Apis::CloudresourcemanagerV1beta1::FolderOperation
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::CloudresourcemanagerV1beta1::FolderOperation
 
- Defined in:
- generated/google/apis/cloudresourcemanager_v1beta1/classes.rb,
 generated/google/apis/cloudresourcemanager_v1beta1/representations.rb,
 generated/google/apis/cloudresourcemanager_v1beta1/representations.rb
Overview
Metadata describing a long running folder operation
Instance Attribute Summary collapse
- 
  
    
      #destination_parent  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The resource name of the folder or organization we are either creating the folder under or moving the folder to. 
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The display name of the folder. 
- 
  
    
      #operation_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of this operation. 
- 
  
    
      #source_parent  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The resource name of the folder's parent. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ FolderOperation 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of FolderOperation. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ FolderOperation
Returns a new instance of FolderOperation
| 248 249 250 | # File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 248 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#destination_parent ⇒ String
The resource name of the folder or organization we are either creating
the folder under or moving the folder to.
Corresponds to the JSON property destinationParent
| 230 231 232 | # File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 230 def destination_parent @destination_parent end | 
#display_name ⇒ String
The display name of the folder.
Corresponds to the JSON property displayName
| 235 236 237 | # File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 235 def display_name @display_name end | 
#operation_type ⇒ String
The type of this operation.
Corresponds to the JSON property operationType
| 240 241 242 | # File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 240 def operation_type @operation_type end | 
#source_parent ⇒ String
The resource name of the folder's parent.
Only applicable when the operation_type is MOVE.
Corresponds to the JSON property sourceParent
| 246 247 248 | # File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 246 def source_parent @source_parent end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 253 254 255 256 257 258 | # File 'generated/google/apis/cloudresourcemanager_v1beta1/classes.rb', line 253 def update!(**args) @destination_parent = args[:destination_parent] if args.key?(:destination_parent) @display_name = args[:display_name] if args.key?(:display_name) @operation_type = args[:operation_type] if args.key?(:operation_type) @source_parent = args[:source_parent] if args.key?(:source_parent) end |