Class: Google::Apis::ConfigV1::PreviewArtifacts
- Inherits:
-
Object
- Object
- Google::Apis::ConfigV1::PreviewArtifacts
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/config_v1/classes.rb,
lib/google/apis/config_v1/representations.rb,
lib/google/apis/config_v1/representations.rb
Overview
Artifacts created by preview.
Instance Attribute Summary collapse
-
#artifacts ⇒ String
Output only.
-
#content ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PreviewArtifacts
constructor
A new instance of PreviewArtifacts.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PreviewArtifacts
Returns a new instance of PreviewArtifacts.
1974 1975 1976 |
# File 'lib/google/apis/config_v1/classes.rb', line 1974 def initialize(**args) update!(**args) end |
Instance Attribute Details
#artifacts ⇒ String
Output only. Location of artifacts in Google Cloud Storage. Format: gs://
bucket/object`
Corresponds to the JSON propertyartifacts`
1966 1967 1968 |
# File 'lib/google/apis/config_v1/classes.rb', line 1966 def artifacts @artifacts end |
#content ⇒ String
Output only. Location of a blueprint copy and other content in Google Cloud
Storage. Format: gs://bucket/object`
Corresponds to the JSON propertycontent`
1972 1973 1974 |
# File 'lib/google/apis/config_v1/classes.rb', line 1972 def content @content end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1979 1980 1981 1982 |
# File 'lib/google/apis/config_v1/classes.rb', line 1979 def update!(**args) @artifacts = args[:artifacts] if args.key?(:artifacts) @content = args[:content] if args.key?(:content) end |