Class: Azure::DataFactory::Mgmt::V2018_06_01::Models::IntegrationRuntimeSsisCatalogInfo

Inherits:
Object
  • Object
show all
Includes:
MsRestAzure
Defined in:
lib/2018-06-01/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_catalog_info.rb

Overview

Catalog information for managed dedicated integration runtime.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Attribute Details

#additional_propertiesObject

collection

Returns:

  • Unmatched properties from the message are deserialized this



17
18
19
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_catalog_info.rb', line 17

def additional_properties
  @additional_properties
end

#catalog_admin_passwordSecureString

of the catalog database.

Returns:

  • (SecureString)

    The password of the administrator user account



27
28
29
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_catalog_info.rb', line 27

def catalog_admin_password
  @catalog_admin_password
end

#catalog_admin_user_nameString

Returns The administrator user name of catalog database.

Returns:

  • (String)

    The administrator user name of catalog database.



23
24
25
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_catalog_info.rb', line 23

def catalog_admin_user_name
  @catalog_admin_user_name
end

#catalog_pricing_tierIntegrationRuntimeSsisCatalogPricingTier

the catalog database. The valid values could be found in azure.microsoft.com/en-us/pricing/details/sql-database/. Possible values include: ‘Basic’, ‘Standard’, ‘Premium’, ‘PremiumRS’

Returns:



33
34
35
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_catalog_info.rb', line 33

def catalog_pricing_tier
  @catalog_pricing_tier
end

#catalog_server_endpointString

Returns The catalog database server URL.

Returns:

  • (String)

    The catalog database server URL.



20
21
22
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_catalog_info.rb', line 20

def catalog_server_endpoint
  @catalog_server_endpoint
end

Class Method Details

.mapperObject

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



40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
# File 'lib/2018-06-01/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_catalog_info.rb', line 40

def self.mapper()
  {
    client_side_validation: true,
    required: false,
    serialized_name: 'IntegrationRuntimeSsisCatalogInfo',
    type: {
      name: 'Composite',
      class_name: 'IntegrationRuntimeSsisCatalogInfo',
      model_properties: {
        additional_properties: {
          client_side_validation: true,
          required: false,
          type: {
            name: 'Dictionary',
            value: {
                client_side_validation: true,
                required: false,
                serialized_name: 'ObjectElementType',
                type: {
                  name: 'Object'
                }
            }
          }
        },
        catalog_server_endpoint: {
          client_side_validation: true,
          required: false,
          serialized_name: 'catalogServerEndpoint',
          type: {
            name: 'String'
          }
        },
        catalog_admin_user_name: {
          client_side_validation: true,
          required: false,
          serialized_name: 'catalogAdminUserName',
          constraints: {
            MaxLength: 128,
            MinLength: 1
          },
          type: {
            name: 'String'
          }
        },
        catalog_admin_password: {
          client_side_validation: true,
          required: false,
          serialized_name: 'catalogAdminPassword',
          type: {
            name: 'Composite',
            class_name: 'SecureString'
          }
        },
        catalog_pricing_tier: {
          client_side_validation: true,
          required: false,
          serialized_name: 'catalogPricingTier',
          type: {
            name: 'String'
          }
        }
      }
    }
  }
end