Class SoftwareRecipeArtifact
Specifies a resource to be used in the recipe.
Implements
Inherited Members
Namespace: Google.Apis.OSConfig.v1beta.Data
Assembly: Google.Apis.OSConfig.v1beta.dll
Syntax
public class SoftwareRecipeArtifact : IDirectResponseSchema
Properties
AllowInsecure
Defaults to false. When false, recipes are subject to validations based on the artifact type: Remote: A checksum must be specified, and only protocols with transport-layer security are permitted. GCS: An object generation number must be specified.
Declaration
[JsonProperty("allowInsecure")]
public virtual bool? AllowInsecure { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Gcs
A Google Cloud Storage artifact.
Declaration
[JsonProperty("gcs")]
public virtual SoftwareRecipeArtifactGcs Gcs { get; set; }
Property Value
Type | Description |
---|---|
SoftwareRecipeArtifactGcs |
Id
Required. Id of the artifact, which the installation and update steps of this recipe can reference. Artifacts in a recipe cannot have the same id.
Declaration
[JsonProperty("id")]
public virtual string Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Remote
A generic remote artifact.
Declaration
[JsonProperty("remote")]
public virtual SoftwareRecipeArtifactRemote Remote { get; set; }
Property Value
Type | Description |
---|---|
SoftwareRecipeArtifactRemote |