Class: Google::Apis::ClouddeployV1::DeployArtifact
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::DeployArtifact
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/clouddeploy_v1/classes.rb,
lib/google/apis/clouddeploy_v1/representations.rb,
lib/google/apis/clouddeploy_v1/representations.rb
Overview
The artifacts produced by a deploy operation.
Instance Attribute Summary collapse
-
#artifact_uri ⇒ String
Output only.
-
#manifest_paths ⇒ Array<String>
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DeployArtifact
constructor
A new instance of DeployArtifact.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ DeployArtifact
Returns a new instance of DeployArtifact.
1800 1801 1802 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1800 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifact_uri ⇒ String
Output only. URI of a directory containing the artifacts. All paths are
relative to this location.
Corresponds to the JSON property artifactUri
1792 1793 1794 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1792 def artifact_uri @artifact_uri end |
#manifest_paths ⇒ Array<String>
Output only. File paths of the manifests applied during the deploy operation
relative to the URI.
Corresponds to the JSON property manifestPaths
1798 1799 1800 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1798 def manifest_paths @manifest_paths end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1805 1806 1807 1808 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1805 def update!(**args) @artifact_uri = args[:artifact_uri] if args.key?(:artifact_uri) @manifest_paths = args[:manifest_paths] if args.key?(:manifest_paths) end |