Show / Hide Table of Contents

Class ServiceIdentity

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"

Inheritance
System.Object
ServiceIdentity
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ServiceNetworking.v1beta.Data
Assembly: Google.Apis.ServiceNetworking.v1beta.dll
Syntax
public class ServiceIdentity : IDirectResponseSchema

Properties

Description

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

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

DisplayName

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

Declaration
[JsonProperty("displayName")]
public virtual string DisplayName { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

ServiceAccountParent

A service account project that hosts the service accounts. An example name would be: projects/123456789

Declaration
[JsonProperty("serviceAccountParent")]
public virtual string ServiceAccountParent { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top