# 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 # # This type describes a service resource. # class ServiceResourceDescription include MsRestAzure # @return [String] Name of the Service resource. attr_accessor :name # @return [OperatingSystemType] The operation system required by the code # in service. Possible values include: 'Linux', 'Windows' attr_accessor :os_type # @return [Array] Describes the set of # code packages that forms the service. A code package describes the # container and the properties for running it. All the code packages are # started together on the same host and share the same context (network, # process etc.). attr_accessor :code_packages # @return [Array] The names of the private networks that this # service needs to be part of. attr_accessor :network_refs # @return [DiagnosticsRef] Reference to sinks in DiagnosticsDescription. attr_accessor :diagnostics # @return [String] User readable description of the service. attr_accessor :description # @return [Integer] The number of replicas of the service to create. # Defaults to 1 if not specified. attr_accessor :replica_count # @return [Array] Auto scaling policies attr_accessor :auto_scaling_policies # @return [ResourceStatus] Status of the service. Possible values # include: 'Unknown', 'Ready', 'Upgrading', 'Creating', 'Deleting', # 'Failed' attr_accessor :status # @return [String] Gives additional information about the current status # of the service. attr_accessor :status_details # @return [HealthState] Describes the health state of an application # resource. Possible values include: 'Invalid', 'Ok', 'Warning', 'Error', # 'Unknown' attr_accessor :health_state # @return [String] When the service's health state is not 'Ok', this # additional details from service fabric Health Manager for the user to # know why the service is marked unhealthy. attr_accessor :unhealthy_evaluation # # Mapper for ServiceResourceDescription class as Ruby Hash. # This will be used for serialization/deserialization. # def self.mapper() { client_side_validation: true, required: false, serialized_name: 'ServiceResourceDescription', type: { name: 'Composite', class_name: 'ServiceResourceDescription', model_properties: { name: { client_side_validation: true, required: true, serialized_name: 'name', type: { name: 'String' } }, os_type: { client_side_validation: true, required: true, serialized_name: 'properties.osType', type: { name: 'String' } }, code_packages: { client_side_validation: true, required: true, serialized_name: 'properties.codePackages', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'ContainerCodePackagePropertiesElementType', type: { name: 'Composite', class_name: 'ContainerCodePackageProperties' } } } }, network_refs: { client_side_validation: true, required: false, serialized_name: 'properties.networkRefs', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'NetworkRefElementType', type: { name: 'Composite', class_name: 'NetworkRef' } } } }, diagnostics: { client_side_validation: true, required: false, serialized_name: 'properties.diagnostics', type: { name: 'Composite', class_name: 'DiagnosticsRef' } }, description: { client_side_validation: true, required: false, serialized_name: 'properties.description', type: { name: 'String' } }, replica_count: { client_side_validation: true, required: false, serialized_name: 'properties.replicaCount', type: { name: 'Number' } }, auto_scaling_policies: { client_side_validation: true, required: false, serialized_name: 'properties.autoScalingPolicies', type: { name: 'Sequence', element: { client_side_validation: true, required: false, serialized_name: 'AutoScalingPolicyElementType', type: { name: 'Composite', class_name: 'AutoScalingPolicy' } } } }, status: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.status', type: { name: 'String' } }, status_details: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.statusDetails', type: { name: 'String' } }, health_state: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.healthState', type: { name: 'String' } }, unhealthy_evaluation: { client_side_validation: true, required: false, read_only: true, serialized_name: 'properties.unhealthyEvaluation', type: { name: 'String' } } } } } end end end end