Class: Google::Apis::ClouddeployV1::ToolVersions
- Inherits:
-
Object
- Object
- Google::Apis::ClouddeployV1::ToolVersions
- 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
Details of ToolVersions for the release.
Instance Attribute Summary collapse
-
#docker ⇒ String
Optional.
-
#helm ⇒ String
Optional.
-
#kpt ⇒ String
Optional.
-
#kubectl ⇒ String
Optional.
-
#kustomize ⇒ String
Optional.
-
#skaffold ⇒ String
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ToolVersions
constructor
A new instance of ToolVersions.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ToolVersions
Returns a new instance of ToolVersions.
6543 6544 6545 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 6543 def initialize(**args) update!(**args) end |
Instance Attribute Details
#docker ⇒ String
Optional. The docker version to use for Cloud Deploy operations.
Corresponds to the JSON property docker
6516 6517 6518 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 6516 def docker @docker end |
#helm ⇒ String
Optional. The helm version to use for Cloud Deploy operations.
Corresponds to the JSON property helm
6521 6522 6523 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 6521 def helm @helm end |
#kpt ⇒ String
Optional. The kpt version to use for Cloud Deploy operations.
Corresponds to the JSON property kpt
6526 6527 6528 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 6526 def kpt @kpt end |
#kubectl ⇒ String
Optional. The kubectl version to use for Cloud Deploy operations.
Corresponds to the JSON property kubectl
6531 6532 6533 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 6531 def kubectl @kubectl end |
#kustomize ⇒ String
Optional. The kustomize version to use for Cloud Deploy operations.
Corresponds to the JSON property kustomize
6536 6537 6538 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 6536 def kustomize @kustomize end |
#skaffold ⇒ String
Optional. The skaffold version to use for Cloud Deploy operations.
Corresponds to the JSON property skaffold
6541 6542 6543 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 6541 def skaffold @skaffold end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6548 6549 6550 6551 6552 6553 6554 6555 |
# File 'lib/google/apis/clouddeploy_v1/classes.rb', line 6548 def update!(**args) @docker = args[:docker] if args.key?(:docker) @helm = args[:helm] if args.key?(:helm) @kpt = args[:kpt] if args.key?(:kpt) @kubectl = args[:kubectl] if args.key?(:kubectl) @kustomize = args[:kustomize] if args.key?(:kustomize) @skaffold = args[:skaffold] if args.key?(:skaffold) end |