Class ResourceId
A container to reference an id for any resource type. A resource
in Google Cloud Platform is a generic term
for something you (a developer) may want to interact with through one of our API's. Some examples are an App
Engine app, a Compute Engine instance, a Cloud SQL database, and so on.
Implements
Inherited Members
Namespace: Google.Apis.CloudResourceManager.v1beta1.Data
Assembly: Google.Apis.CloudResourceManager.v1beta1.dll
Syntax
public class ResourceId : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Id
Required field for the type-specific id. This should correspond to the id used in the type-specific API's.
Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Type
Required field representing the resource type this id is for. At present, the valid types are "project", "folder", and "organization".
Declaration
[JsonProperty("type")]
public virtual string Type { get; set; }
Property Value
Type | Description |
---|---|
string |