class Azure::ContainerRegistry::Mgmt::V2018_09_01::Models::Argument
The properties of a run argument.
Attributes
is_secret[RW]
@return [Boolean] Flag to indicate whether the argument represents a secret and want to be removed from build logs. Default value: false .
name[RW]
@return [String] The name of the argument.
value[RW]
@return [String] The value of the argument.
Public Class Methods
mapper()
click to toggle source
Mapper for Argument
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/2018-09-01/generated/azure_mgmt_container_registry/models/argument.rb, line 30 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Argument', type: { name: 'Composite', class_name: 'Argument', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, value: { client_side_validation: true, required: true, serialized_name: 'value', type: { name: 'String' } }, is_secret: { client_side_validation: true, required: false, serialized_name: 'isSecret', default_value: false, type: { name: 'Boolean' } } } } } end