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.
1973 1974 1975 |
# File 'lib/google/apis/config_v1/classes.rb', line 1973 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`
1965 1966 1967 |
# File 'lib/google/apis/config_v1/classes.rb', line 1965 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`
1971 1972 1973 |
# File 'lib/google/apis/config_v1/classes.rb', line 1971 def content @content end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1978 1979 1980 1981 |
# File 'lib/google/apis/config_v1/classes.rb', line 1978 def update!(**args) @artifacts = args[:artifacts] if args.key?(:artifacts) @content = args[:content] if args.key?(:content) end |