class Google::Apis::ManagerV1beta2::ParamOverride

A specification for overriding parameters in a Template that corresponds to the Deployment.

Attributes

path[RW]

A JSON Path expression that specifies which parameter should be overridden. Corresponds to the JSON property `path` @return [String]

value[RW]

The new value to assign to the overridden parameter. Corresponds to the JSON property `value` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/manager_v1beta2/classes.rb, line 960
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/manager_v1beta2/classes.rb, line 965
def update!(**args)
  @path = args[:path] if args.key?(:path)
  @value = args[:value] if args.key?(:value)
end