Sha256: c2226c60aaadf8293c70fea4b12ef63f1ed6a818889ec8faf05304ca17e2eabf
Contents?: true
Size: 1.55 KB
Versions: 3
Compression:
Stored size: 1.55 KB
Contents
# encoding: utf-8 # Code generated by Microsoft (R) AutoRest Code Generator. # Changes may cause incorrect behavior and will be lost if the code is # regenerated. module Azure::ServiceFabric::V6_5_0_36 module Models # # Describes a setting for the container. The setting file path can be # fetched from environment variable "Fabric_SettingPath". The path for # Windows container is "C:\\secrets". The path for Linux container is # "/var/secrets". # class Setting include MsRestAzure # @return [String] The name of the setting. attr_accessor :name # @return [String] The value of the setting. attr_accessor :value # # Mapper for Setting class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'Setting', type: { name: 'Composite', class_name: 'Setting', model_properties: { name: { client_side_validation: true, required: false, serialized_name: 'name', type: { name: 'String' } }, value: { client_side_validation: true, required: false, serialized_name: 'value', type: { name: 'String' } } } } } end end end end
Version data entries
3 entries across 3 versions & 1 rubygems