Class: Google::Apis::OsconfigV1beta::SoftwareRecipeArtifact

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/osconfig_v1beta/classes.rb,
generated/google/apis/osconfig_v1beta/representations.rb,
generated/google/apis/osconfig_v1beta/representations.rb

Overview

Specifies a resource to be used in the recipe.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SoftwareRecipeArtifact

Returns a new instance of SoftwareRecipeArtifact.



2087
2088
2089
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2087

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#allow_insecureBoolean Also known as: allow_insecure?

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. Corresponds to the JSON property allowInsecure

Returns:

  • (Boolean)


2068
2069
2070
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2068

def allow_insecure
  @allow_insecure
end

#gcsGoogle::Apis::OsconfigV1beta::SoftwareRecipeArtifactGcs

Specifies an artifact available as a Google Cloud Storage object. Corresponds to the JSON property gcs



2074
2075
2076
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2074

def gcs
  @gcs
end

#idString

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. Corresponds to the JSON property id

Returns:

  • (String)


2080
2081
2082
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2080

def id
  @id
end

#remoteGoogle::Apis::OsconfigV1beta::SoftwareRecipeArtifactRemote

Specifies an artifact available via some URI. Corresponds to the JSON property remote



2085
2086
2087
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2085

def remote
  @remote
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2092
2093
2094
2095
2096
2097
# File 'generated/google/apis/osconfig_v1beta/classes.rb', line 2092

def update!(**args)
  @allow_insecure = args[:allow_insecure] if args.key?(:allow_insecure)
  @gcs = args[:gcs] if args.key?(:gcs)
  @id = args[:id] if args.key?(:id)
  @remote = args[:remote] if args.key?(:remote)
end