Class SoftwareRecipeArtifactGcs
Specifies an artifact available as a Google Cloud Storage object.
Implements
Inherited Members
Namespace: Google.Apis.OSConfig.v1beta.Data
Assembly: Google.Apis.OSConfig.v1beta.dll
Syntax
public class SoftwareRecipeArtifactGcs : IDirectResponseSchema
Properties
Bucket
Bucket of the Google Cloud Storage object. Given an example URL:
https://storage.googleapis.com/my-bucket/foo/bar#1234567
this value would be my-bucket
.
Declaration
[JsonProperty("bucket")]
public virtual string Bucket { get; set; }
Property Value
Type | Description |
---|---|
string |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Generation
Must be provided if allow_insecure is false. Generation number of the Google Cloud Storage object.
https://storage.googleapis.com/my-bucket/foo/bar#1234567
this value would be 1234567
.
Declaration
[JsonProperty("generation")]
public virtual long? Generation { get; set; }
Property Value
Type | Description |
---|---|
long? |
Object__
Name of the Google Cloud Storage object. As specified [here]
(https://cloud.google.com/storage/docs/naming#objectnames) Given an example URL:
https://storage.googleapis.com/my-bucket/foo/bar#1234567
this value would be foo/bar
.
Declaration
[JsonProperty("object")]
public virtual string Object__ { get; set; }
Property Value
Type | Description |
---|---|
string |