Class: Google::Apis::ClouddeployV1::DeployJobRun

Inherits:
Object
  • Object
show all
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

DeployJobRun contains information specific to a deploy JobRun.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DeployJobRun

Returns a new instance of DeployJobRun.



1856
1857
1858
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1856

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#artifactGoogle::Apis::ClouddeployV1::DeployArtifact

The artifacts produced by a deploy operation. Corresponds to the JSON property artifact



1831
1832
1833
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1831

def artifact
  @artifact
end

#buildString

Output only. The resource name of the Cloud Build Build object that is used to deploy. Format is projects/project/locations/location/builds/build`. Corresponds to the JSON propertybuild`

Returns:

  • (String)


1837
1838
1839
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1837

def build
  @build
end

#failure_causeString

Output only. The reason the deploy failed. This will always be unspecified while the deploy is in progress or if it succeeded. Corresponds to the JSON property failureCause

Returns:

  • (String)


1843
1844
1845
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1843

def failure_cause
  @failure_cause
end

#failure_messageString

Output only. Additional information about the deploy failure, if available. Corresponds to the JSON property failureMessage

Returns:

  • (String)


1848
1849
1850
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1848

def failure_message
  @failure_message
end

#metadataGoogle::Apis::ClouddeployV1::DeployJobRunMetadata

DeployJobRunMetadata surfaces information associated with a DeployJobRun to the user. Corresponds to the JSON property metadata



1854
1855
1856
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1854

def 
  @metadata
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1861
1862
1863
1864
1865
1866
1867
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1861

def update!(**args)
  @artifact = args[:artifact] if args.key?(:artifact)
  @build = args[:build] if args.key?(:build)
  @failure_cause = args[:failure_cause] if args.key?(:failure_cause)
  @failure_message = args[:failure_message] if args.key?(:failure_message)
  @metadata = args[:metadata] if args.key?(:metadata)
end