Class: Google::Apis::StorageV1::TestIamPermissionsResponse
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::StorageV1::TestIamPermissionsResponse
 
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/storage_v1/classes.rb,
 generated/google/apis/storage_v1/representations.rb,
 generated/google/apis/storage_v1/representations.rb
Overview
A storage.(buckets|objects).testIamPermissions response.
Instance Attribute Summary collapse
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kind of item this is. 
- 
  
    
      #permissions  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The permissions held by the caller. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ TestIamPermissionsResponse 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of TestIamPermissionsResponse. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ TestIamPermissionsResponse
Returns a new instance of TestIamPermissionsResponse
| 1701 1702 1703 | # File 'generated/google/apis/storage_v1/classes.rb', line 1701 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#kind ⇒ String
The kind of item this is.
Corresponds to the JSON property kind
| 1678 1679 1680 | # File 'generated/google/apis/storage_v1/classes.rb', line 1678 def kind @kind end | 
#permissions ⇒ Array<String>
The permissions held by the caller. Permissions are always of the format storage.resource.capability, where resource is one of buckets or objects. The supported permissions are as follows:
- storage.buckets.delete — Delete bucket.
- storage.buckets.get — Read bucket metadata.
- storage.buckets.getIamPolicy — Read bucket IAM policy.
- storage.buckets.create — Create bucket.
- storage.buckets.list — List buckets.
- storage.buckets.setIamPolicy — Update bucket IAM policy.
- storage.buckets.update — Update bucket metadata.
- storage.objects.delete — Delete object.
- storage.objects.get — Read object data and metadata.
- storage.objects.getIamPolicy — Read object IAM policy.
- storage.objects.create — Create object.
- storage.objects.list — List objects.
- storage.objects.setIamPolicy — Update object IAM policy.
- storage.objects.update — Update object metadata.
Corresponds to the JSON property permissions
| 1699 1700 1701 | # File 'generated/google/apis/storage_v1/classes.rb', line 1699 def @permissions end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1706 1707 1708 1709 | # File 'generated/google/apis/storage_v1/classes.rb', line 1706 def update!(**args) @kind = args[:kind] if args.key?(:kind) @permissions = args[:permissions] if args.key?(:permissions) end |