Class: Google::Apis::LicensingV1::LicenseAssignmentList
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::LicensingV1::LicenseAssignmentList
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/licensing_v1/classes.rb,
 generated/google/apis/licensing_v1/representations.rb,
 generated/google/apis/licensing_v1/representations.rb
Overview
LicesnseAssignment List for a given product/sku for a customer.
Instance Attribute Summary collapse
- 
  
    
      #etag  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    ETag of the resource. 
- 
  
    
      #items  ⇒ Array<Google::Apis::LicensingV1::LicenseAssignment> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The LicenseAssignments in this page of results. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies the resource as a collection of LicenseAssignments. 
- 
  
    
      #next_page_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The continuation token, used to page through large result sets. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ LicenseAssignmentList 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of LicenseAssignmentList. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ LicenseAssignmentList
Returns a new instance of LicenseAssignmentList
| 130 131 132 | # File 'generated/google/apis/licensing_v1/classes.rb', line 130 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#etag ⇒ String
ETag of the resource.
Corresponds to the JSON property etag
| 112 113 114 | # File 'generated/google/apis/licensing_v1/classes.rb', line 112 def etag @etag end | 
#items ⇒ Array<Google::Apis::LicensingV1::LicenseAssignment>
The LicenseAssignments in this page of results.
Corresponds to the JSON property items
| 117 118 119 | # File 'generated/google/apis/licensing_v1/classes.rb', line 117 def items @items end | 
#kind ⇒ String
Identifies the resource as a collection of LicenseAssignments.
Corresponds to the JSON property kind
| 122 123 124 | # File 'generated/google/apis/licensing_v1/classes.rb', line 122 def kind @kind end | 
#next_page_token ⇒ String
The continuation token, used to page through large result sets. Provide this
value in a subsequent request to return the next page of results.
Corresponds to the JSON property nextPageToken
| 128 129 130 | # File 'generated/google/apis/licensing_v1/classes.rb', line 128 def next_page_token @next_page_token end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 135 136 137 138 139 140 | # File 'generated/google/apis/licensing_v1/classes.rb', line 135 def update!(**args) @etag = args[:etag] if args.key?(:etag) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end |