Class: Google::Apis::ClouddeployV1::PhaseArtifact

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

Contains the paths to the artifacts, relative to the URI, for a phase.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ PhaseArtifact

Returns a new instance of PhaseArtifact.



1977
1978
1979
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1977

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

Instance Attribute Details

#job_manifests_pathString

Output only. File path of the directory of rendered job manifests relative to the URI. This is only set if it is applicable. Corresponds to the JSON property jobManifestsPath

Returns:

  • (String)


1964
1965
1966
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1964

def job_manifests_path
  @job_manifests_path
end

#manifest_pathString

Output only. File path of the rendered manifest relative to the URI. Corresponds to the JSON property manifestPath

Returns:

  • (String)


1969
1970
1971
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1969

def manifest_path
  @manifest_path
end

#skaffold_config_pathString

Output only. File path of the resolved Skaffold configuration relative to the URI. Corresponds to the JSON property skaffoldConfigPath

Returns:

  • (String)


1975
1976
1977
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1975

def skaffold_config_path
  @skaffold_config_path
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1982
1983
1984
1985
1986
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 1982

def update!(**args)
  @job_manifests_path = args[:job_manifests_path] if args.key?(:job_manifests_path)
  @manifest_path = args[:manifest_path] if args.key?(:manifest_path)
  @skaffold_config_path = args[:skaffold_config_path] if args.key?(:skaffold_config_path)
end