Sha256: 46ae997d5dccdb3f7c85a4b2106f5da8ad861efaaa7a1ed03086ef9b1cdbdb06
Contents?: true
Size: 1.76 KB
Versions: 5
Compression:
Stored size: 1.76 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_4_0_36 module Models # # Describes the policy to be used for placement of a Service Fabric service # where a particular fault or upgrade domain should not be used for # placement of the instances or replicas of that service. # class ServicePlacementInvalidDomainPolicyDescription < ServicePlacementPolicyDescription include MsRestAzure def initialize @Type = "InvalidDomain" end attr_accessor :Type # @return [String] The name of the domain that should not be used for # placement. attr_accessor :domain_name # # Mapper for ServicePlacementInvalidDomainPolicyDescription class as Ruby # Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'InvalidDomain', type: { name: 'Composite', class_name: 'ServicePlacementInvalidDomainPolicyDescription', model_properties: { Type: { client_side_validation: true, required: true, serialized_name: 'Type', type: { name: 'String' } }, domain_name: { client_side_validation: true, required: false, serialized_name: 'DomainName', type: { name: 'String' } } } } } end end end end
Version data entries
5 entries across 5 versions & 1 rubygems