Class: Azure::ServiceFabric::V6_4_0_36::Models::ProvisionFabricDescription

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/6.4.0.36/generated/azure_service_fabric/models/provision_fabric_description.rb

Overview

Describes the parameters for provisioning a cluster.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#cluster_manifest_file_pathString

Returns The cluster manifest file path.

Returns:

  • (String)

    The cluster manifest file path.



19
20
21
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/provision_fabric_description.rb', line 19

def cluster_manifest_file_path
  @cluster_manifest_file_path
end

#code_file_pathString

Returns The cluster code package file path.

Returns:

  • (String)

    The cluster code package file path.



16
17
18
# File 'lib/6.4.0.36/generated/azure_service_fabric/models/provision_fabric_description.rb', line 16

def code_file_path
  @code_file_path
end

Class Method Details

.mapperObject

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



26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# File 'lib/6.4.0.36/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