Class: Google::Apis::ServiceusageV1beta1::GoogleApiServiceIdentity

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

Overview

The per-product per-project service identity for a service. Use this field to configure per-product per-project service identity. Example of a service identity configuration. usage: service_identity:

  • service_account_parent: "projects/123456789" display_name: "Cloud XXX Service Agent" description: "Used as the identity of Cloud XXX to access resources"

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) ⇒ GoogleApiServiceIdentity

Returns a new instance of GoogleApiServiceIdentity.



1794
1795
1796
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1794

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

Instance Attribute Details

#descriptionString

Optional. A user-specified opaque description of the service account. Must be less than or equal to 256 UTF-8 bytes. Corresponds to the JSON property description

Returns:

  • (String)


1779
1780
1781
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1779

def description
  @description
end

#display_nameString

Optional. A user-specified name for the service account. Must be less than or equal to 100 UTF-8 bytes. Corresponds to the JSON property displayName

Returns:

  • (String)


1785
1786
1787
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1785

def display_name
  @display_name
end

#service_account_parentString

A service account project that hosts the service accounts. An example name would be: projects/123456789 Corresponds to the JSON property serviceAccountParent

Returns:

  • (String)


1792
1793
1794
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1792

def 
  @service_account_parent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1799
1800
1801
1802
1803
# File 'generated/google/apis/serviceusage_v1beta1/classes.rb', line 1799

def update!(**args)
  @description = args[:description] if args.key?(:description)
  @display_name = args[:display_name] if args.key?(:display_name)
  @service_account_parent = args[:service_account_parent] if args.key?(:service_account_parent)
end