class Azure::ServiceFabric::V6_2_0_9::Models::ProvisionFabricDescription

Describes the parameters for provisioning a cluster.

Attributes

cluster_manifest_file_path[RW]

@return [String] The cluster manifest file path.

code_file_path[RW]

@return [String] The cluster code package file path.

Public Class Methods

mapper() click to toggle source

Mapper for ProvisionFabricDescription class as Ruby Hash. This will be used for serialization/deserialization.

# File lib/6.2.0.9/generated/azure_service_fabric/models/provision_fabric_description.rb, line 26
def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'ProvisionFabricDescription',
    type: {
      name: 'Composite',
      class_name: 'ProvisionFabricDescription',
      model_properties: {
        code_file_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'CodeFilePath',
          type: {
            name: 'String'
          }
        },
        cluster_manifest_file_path: {
          client_side_validation: true,
          required: false,
          serialized_name: 'ClusterManifestFilePath',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end