Class: Google::Apis::AdminDirectoryV1::Asps
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::AdminDirectoryV1::Asps
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admin_directory_v1/classes.rb,
 generated/google/apis/admin_directory_v1/representations.rb,
 generated/google/apis/admin_directory_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ETag of the resource. 
- 
  
    
      #items  ⇒ Array<Google::Apis::AdminDirectoryV1::Asp> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of ASP resources. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the API resource. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Asps 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Asps. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Asps
Returns a new instance of Asps
| 241 242 243 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 241 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
| 229 230 231 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 229 def etag @etag end | 
#items ⇒ Array<Google::Apis::AdminDirectoryV1::Asp>
A list of ASP resources.
Corresponds to the JSON property items
| 234 235 236 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 234 def items @items end | 
#kind ⇒ String
The type of the API resource. This is always admin#directory#aspList.
Corresponds to the JSON property kind
| 239 240 241 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 239 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 246 247 248 249 250 | # File 'generated/google/apis/admin_directory_v1/classes.rb', line 246 def update!(**args) @etag = args[:etag] if args.key?(:etag) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |