class Azure::ServiceFabric::V6_4_0_36::Models::ContainerLabel
Describes a container label.
Attributes
name[RW]
@return [String] The name of the container label.
value[RW]
@return [String] The value of the container label.
Public Class Methods
mapper()
click to toggle source
Mapper for ContainerLabel
class as Ruby Hash. This will be used for serialization/deserialization.
# File lib/6.4.0.36/generated/azure_service_fabric/models/container_label.rb, line 26 def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ContainerLabel', type: { name: 'Composite', class_name: 'ContainerLabel', 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' } } } } } end