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

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/storage_v1/classes.rb,
lib/google/apis/storage_v1/representations.rb,
lib/google/apis/storage_v1/representations.rb

Overview

A subscription to receive Google PubSub notifications.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ServiceAccount

Returns a new instance of ServiceAccount.



2077
2078
2079
# File 'lib/google/apis/storage_v1/classes.rb', line 2077

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)


2069
2070
2071
# File 'lib/google/apis/storage_v1/classes.rb', line 2069

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)


2075
2076
2077
# File 'lib/google/apis/storage_v1/classes.rb', line 2075

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2082
2083
2084
2085
# File 'lib/google/apis/storage_v1/classes.rb', line 2082

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