Class: Google::Apis::ConfigV1::PreviewOperationMetadata
- Inherits:
-
Object
- Object
- Google::Apis::ConfigV1::PreviewOperationMetadata
- 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
Ephemeral metadata content describing the state of a preview operation.
Instance Attribute Summary collapse
-
#build ⇒ String
Output only.
-
#logs ⇒ String
Output only.
-
#preview_artifacts ⇒ Google::Apis::ConfigV1::PreviewArtifacts
Artifacts created by preview.
-
#step ⇒ String
The current step the preview operation is running.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PreviewOperationMetadata
constructor
A new instance of PreviewOperationMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PreviewOperationMetadata
Returns a new instance of PreviewOperationMetadata.
2009 2010 2011 |
# File 'lib/google/apis/config_v1/classes.rb', line 2009 def initialize(**args) update!(**args) end |
Instance Attribute Details
#build ⇒ String
Output only. Cloud Build instance UUID associated with this preview.
Corresponds to the JSON property build
1992 1993 1994 |
# File 'lib/google/apis/config_v1/classes.rb', line 1992 def build @build end |
#logs ⇒ String
Output only. Location of preview logs in gs://bucket/object`format.
Corresponds to the JSON propertylogs`
1997 1998 1999 |
# File 'lib/google/apis/config_v1/classes.rb', line 1997 def logs @logs end |
#preview_artifacts ⇒ Google::Apis::ConfigV1::PreviewArtifacts
Artifacts created by preview.
Corresponds to the JSON property previewArtifacts
2002 2003 2004 |
# File 'lib/google/apis/config_v1/classes.rb', line 2002 def preview_artifacts @preview_artifacts end |
#step ⇒ String
The current step the preview operation is running.
Corresponds to the JSON property step
2007 2008 2009 |
# File 'lib/google/apis/config_v1/classes.rb', line 2007 def step @step end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2014 2015 2016 2017 2018 2019 |
# File 'lib/google/apis/config_v1/classes.rb', line 2014 def update!(**args) @build = args[:build] if args.key?(:build) @logs = args[:logs] if args.key?(:logs) @preview_artifacts = args[:preview_artifacts] if args.key?(:preview_artifacts) @step = args[:step] if args.key?(:step) end |