class Google::Apis::ClouddeployV1::TargetArtifact
The artifacts produced by a target render operation.
Attributes
artifact_uri[RW]
Output only. URI of a directory containing the artifacts. This contains deployment configuration used by Skaffold during a rollout, and all paths are relative to this location. Corresponds to the JSON property ‘artifactUri` @return [String]
manifest_path[RW]
Output only. File path of the rendered manifest relative to the URI. Corresponds to the JSON property ‘manifestPath` @return [String]
skaffold_config_path[RW]
Output only. File path of the resolved Skaffold configuration relative to the URI. Corresponds to the JSON property ‘skaffoldConfigPath` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/clouddeploy_v1/classes.rb, line 1715 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/clouddeploy_v1/classes.rb, line 1720 def update!(**args) @artifact_uri = args[:artifact_uri] if args.key?(:artifact_uri) @manifest_path = args[:manifest_path] if args.key?(:manifest_path) @skaffold_config_path = args[:skaffold_config_path] if args.key?(:skaffold_config_path) end