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.
2002 2003 2004 |
# File 'lib/google/apis/config_v1/classes.rb', line 2002 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
1985 1986 1987 |
# File 'lib/google/apis/config_v1/classes.rb', line 1985 def build @build end |
#logs ⇒ String
Output only. Location of preview logs in gs://bucket/object`format.
Corresponds to the JSON propertylogs`
1990 1991 1992 |
# File 'lib/google/apis/config_v1/classes.rb', line 1990 def logs @logs end |
#preview_artifacts ⇒ Google::Apis::ConfigV1::PreviewArtifacts
Artifacts created by preview.
Corresponds to the JSON property previewArtifacts
1995 1996 1997 |
# File 'lib/google/apis/config_v1/classes.rb', line 1995 def preview_artifacts @preview_artifacts end |
#step ⇒ String
The current step the preview operation is running.
Corresponds to the JSON property step
2000 2001 2002 |
# File 'lib/google/apis/config_v1/classes.rb', line 2000 def step @step end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2007 2008 2009 2010 2011 2012 |
# File 'lib/google/apis/config_v1/classes.rb', line 2007 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 |