Class: Google::Apis::ServicemanagementV1::ServiceIdentity

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/servicemanagement_v1/classes.rb,
generated/google/apis/servicemanagement_v1/representations.rb,
generated/google/apis/servicemanagement_v1/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) ⇒ ServiceIdentity

Returns a new instance of ServiceIdentity.



4045
4046
4047
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 4045

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)


4030
4031
4032
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 4030

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)


4036
4037
4038
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 4036

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)


4043
4044
4045
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 4043

def 
  @service_account_parent
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4050
4051
4052
4053
4054
# File 'generated/google/apis/servicemanagement_v1/classes.rb', line 4050

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