Class: Google::Apis::StorageV1::ServiceAccount

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ServiceAccount

Returns a new instance of ServiceAccount.



1969
1970
1971
# File 'generated/google/apis/storage_v1/classes.rb', line 1969

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#email_addressString

The ID of the notification. Corresponds to the JSON property email_address

Returns:

  • (String)


1961
1962
1963
# File 'generated/google/apis/storage_v1/classes.rb', line 1961

def email_address
  @email_address
end

#kindString

The kind of item this is. For notifications, this is always storage# notification. Corresponds to the JSON property kind

Returns:

  • (String)


1967
1968
1969
# File 'generated/google/apis/storage_v1/classes.rb', line 1967

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1974
1975
1976
1977
# File 'generated/google/apis/storage_v1/classes.rb', line 1974

def update!(**args)
  @email_address = args[:email_address] if args.key?(:email_address)
  @kind = args[:kind] if args.key?(:kind)
end