Show / Hide Table of Contents

Class GaePlatformDetails

Google App Engine details.

Inheritance
System.Object
GaePlatformDetails
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Api.Gax
Assembly: Google.Api.Gax.dll
Syntax
public sealed class GaePlatformDetails

Constructors

GaePlatformDetails(String, String, String, String)

Construct details of Google App Engine

Declaration
public GaePlatformDetails(string gcloudProject, string gaeInstance, string gaeService, string gaeVersion)
Parameters
Type Name Description
System.String gcloudProject

The Project ID associated with your application, which is visible in the Google Cloud Platform Console. Must not be null.

System.String gaeInstance

The name of the current instance. Must not be null.

System.String gaeService

The service name specified in your application's app.yaml file, or if no service name is specified, it is set to default. Must not be null.

System.String gaeVersion

The version label of the current application. Must not be null.

Properties

InstanceId

The name of the current instance.

Declaration
public string InstanceId { get; }
Property Value
Type Description
System.String

ProjectId

The Project ID associated with your application, which is visible in the Google Cloud Platform Console.

Declaration
public string ProjectId { get; }
Property Value
Type Description
System.String

ServiceId

The service name specified in your application's app.yaml file, or if no service name is specified, it is set to default.

Declaration
public string ServiceId { get; }
Property Value
Type Description
System.String

VersionId

The version label of the current application.

Declaration
public string VersionId { get; }
Property Value
Type Description
System.String

Methods

ToString()

Declaration
public override string ToString()
Returns
Type Description
System.String
Overrides
System.Object.ToString()
Back to top