Class: Google::Apis::PlusV1::Acl
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::PlusV1::Acl
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/plus_v1/classes.rb,
 generated/google/apis/plus_v1/representations.rb,
 generated/google/apis/plus_v1/representations.rb
Instance Attribute Summary collapse
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Description of the access granted, suitable for display. 
- 
  
    
      #items  ⇒ Array<Google::Apis::PlusV1::PlusAclentryResource> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The list of access entries. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Identifies this resource as a collection of access controls. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Acl 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of Acl. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Acl
Returns a new instance of Acl
| 44 45 46 | # File 'generated/google/apis/plus_v1/classes.rb', line 44 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#description ⇒ String
Description of the access granted, suitable for display.
Corresponds to the JSON property description
| 32 33 34 | # File 'generated/google/apis/plus_v1/classes.rb', line 32 def description @description end | 
#items ⇒ Array<Google::Apis::PlusV1::PlusAclentryResource>
The list of access entries.
Corresponds to the JSON property items
| 37 38 39 | # File 'generated/google/apis/plus_v1/classes.rb', line 37 def items @items end | 
#kind ⇒ String
Identifies this resource as a collection of access controls. Value: "plus#acl".
Corresponds to the JSON property kind
| 42 43 44 | # File 'generated/google/apis/plus_v1/classes.rb', line 42 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 49 50 51 52 53 | # File 'generated/google/apis/plus_v1/classes.rb', line 49 def update!(**args) @description = args[:description] if args.key?(:description) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) end |