Class: Google::Apis::StorageV1::ServiceAccount
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::StorageV1::ServiceAccount
 
- 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 subscription to receive Google PubSub notifications.
Instance Attribute Summary collapse
- 
  
    
      #email_address  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The ID of the notification. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The kind of item this is. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ ServiceAccount 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of ServiceAccount. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ ServiceAccount
Returns a new instance of ServiceAccount
| 1660 1661 1662 | # File 'generated/google/apis/storage_v1/classes.rb', line 1660 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#email_address ⇒ String
The ID of the notification.
Corresponds to the JSON property email_address
| 1652 1653 1654 | # File 'generated/google/apis/storage_v1/classes.rb', line 1652 def email_address @email_address end | 
#kind ⇒ String
The kind of item this is. For notifications, this is always storage#
notification.
Corresponds to the JSON property kind
| 1658 1659 1660 | # File 'generated/google/apis/storage_v1/classes.rb', line 1658 def kind @kind end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 1665 1666 1667 1668 | # File 'generated/google/apis/storage_v1/classes.rb', line 1665 def update!(**args) @email_address = args[:email_address] if args.key?(:email_address) @kind = args[:kind] if args.key?(:kind) end |