Class: Azure::Web::Mgmt::V2018_02_01::Models::CsmPublishingProfileOptions

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-02-01/generated/azure_mgmt_web/models/csm_publishing_profile_options.rb

Overview

Publishing options for requested profile.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#formatPublishingProfileFormat

FileZilla3 WebDeploy – default Ftp. Possible values include: ‘FileZilla3’, ‘WebDeploy’, ‘Ftp’

Returns:



19
20
21
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/csm_publishing_profile_options.rb', line 19

def format
  @format
end

#include_disaster_recovery_endpointsBoolean

Returns Include the DisasterRecover endpoint if true.

Returns:

  • (Boolean)

    Include the DisasterRecover endpoint if true



22
23
24
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/csm_publishing_profile_options.rb', line 22

def include_disaster_recovery_endpoints
  @include_disaster_recovery_endpoints
end

Class Method Details

.mapperObject

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



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
55
56
57
# File 'lib/2018-02-01/generated/azure_mgmt_web/models/csm_publishing_profile_options.rb', line 29

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'CsmPublishingProfileOptions',
    type: {
      name: 'Composite',
      class_name: 'CsmPublishingProfileOptions',
      model_properties: {
        format: {
          client_side_validation: true,
          required: false,
          serialized_name: 'format',
          type: {
            name: 'String'
          }
        },
        include_disaster_recovery_endpoints: {
          client_side_validation: true,
          required: false,
          serialized_name: 'includeDisasterRecoveryEndpoints',
          type: {
            name: 'Boolean'
          }
        }
      }
    }
  }
end