azure_mgmt_data_factory 0.18.6 → 0.18.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (23) hide show
  1. checksums.yaml +4 -4
  2. data/lib/2017-09-01-preview/generated/azure_mgmt_data_factory/data_factory_management_client.rb +1 -1
  3. data/lib/2018-06-01/generated/azure_mgmt_data_factory.rb +125 -119
  4. data/lib/2018-06-01/generated/azure_mgmt_data_factory/data_factory_management_client.rb +1 -1
  5. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/azure_databricks_linked_service.rb +39 -1
  6. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/azure_mlexecute_pipeline_activity.rb +39 -1
  7. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/cmkidentity_definition.rb +47 -0
  8. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/custom_activity.rb +12 -0
  9. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/custom_events_trigger.rb +171 -0
  10. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/encryption_configuration.rb +84 -0
  11. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/factory.rb +13 -0
  12. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/factory_identity.rb +20 -2
  13. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/integration_runtime_ssis_catalog_info.rb +12 -0
  14. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/managed_integration_runtime.rb +13 -0
  15. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/managed_virtual_network_reference.rb +60 -0
  16. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/pipeline_elapsed_time_metric_policy.rb +47 -0
  17. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/pipeline_policy.rb +47 -0
  18. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/pipeline_resource.rb +12 -0
  19. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/trigger.rb +1 -0
  20. data/lib/2018-06-01/generated/azure_mgmt_data_factory/models/web_activity_authentication.rb +26 -9
  21. data/lib/profiles/latest/modules/datafactory_profile_module.rb +415 -391
  22. data/lib/version.rb +1 -1
  23. metadata +8 -2
@@ -0,0 +1,47 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::DataFactory::Mgmt::V2018_06_01
7
+ module Models
8
+ #
9
+ # Managed Identity used for CMK.
10
+ #
11
+ class CMKIdentityDefinition
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] The resource id of the user assigned identity to
16
+ # authenticate to customer's key vault.
17
+ attr_accessor :user_assigned_identity
18
+
19
+
20
+ #
21
+ # Mapper for CMKIdentityDefinition class as Ruby Hash.
22
+ # This will be used for serialization/deserialization.
23
+ #
24
+ def self.mapper()
25
+ {
26
+ client_side_validation: true,
27
+ required: false,
28
+ serialized_name: 'CMKIdentityDefinition',
29
+ type: {
30
+ name: 'Composite',
31
+ class_name: 'CMKIdentityDefinition',
32
+ model_properties: {
33
+ user_assigned_identity: {
34
+ client_side_validation: true,
35
+ required: false,
36
+ serialized_name: 'userAssignedIdentity',
37
+ type: {
38
+ name: 'String'
39
+ }
40
+ }
41
+ }
42
+ }
43
+ }
44
+ end
45
+ end
46
+ end
47
+ end
@@ -42,6 +42,10 @@ module Azure::DataFactory::Mgmt::V2018_06_01
42
42
  # Type: double (or Expression with resultType double).
43
43
  attr_accessor :retention_time_in_days
44
44
 
45
+ # @return Elevation level and scope for the user, default is nonadmin
46
+ # task. Type: string (or Expression with resultType double).
47
+ attr_accessor :auto_user_specification
48
+
45
49
 
46
50
  #
47
51
  # Mapper for CustomActivity class as Ruby Hash.
@@ -204,6 +208,14 @@ module Azure::DataFactory::Mgmt::V2018_06_01
204
208
  type: {
205
209
  name: 'Object'
206
210
  }
211
+ },
212
+ auto_user_specification: {
213
+ client_side_validation: true,
214
+ required: false,
215
+ serialized_name: 'typeProperties.autoUserSpecification',
216
+ type: {
217
+ name: 'Object'
218
+ }
207
219
  }
208
220
  }
209
221
  }
@@ -0,0 +1,171 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::DataFactory::Mgmt::V2018_06_01
7
+ module Models
8
+ #
9
+ # Trigger that runs every time a custom event is received.
10
+ #
11
+ class CustomEventsTrigger < MultiplePipelineTrigger
12
+
13
+ include MsRestAzure
14
+
15
+
16
+ def initialize
17
+ @type = "CustomEventsTrigger"
18
+ end
19
+
20
+ attr_accessor :type
21
+
22
+ # @return [String] The event subject must begin with the pattern provided
23
+ # for trigger to fire. At least one of these must be provided:
24
+ # subjectBeginsWith, subjectEndsWith.
25
+ attr_accessor :subject_begins_with
26
+
27
+ # @return [String] The event subject must end with the pattern provided
28
+ # for trigger to fire. At least one of these must be provided:
29
+ # subjectBeginsWith, subjectEndsWith.
30
+ attr_accessor :subject_ends_with
31
+
32
+ # @return The list of event types that cause this trigger to fire.
33
+ attr_accessor :events
34
+
35
+ # @return [String] The ARM resource ID of the Azure Event Grid Topic.
36
+ attr_accessor :scope
37
+
38
+
39
+ #
40
+ # Mapper for CustomEventsTrigger class as Ruby Hash.
41
+ # This will be used for serialization/deserialization.
42
+ #
43
+ def self.mapper()
44
+ {
45
+ client_side_validation: true,
46
+ required: false,
47
+ serialized_name: 'CustomEventsTrigger',
48
+ type: {
49
+ name: 'Composite',
50
+ class_name: 'CustomEventsTrigger',
51
+ model_properties: {
52
+ additional_properties: {
53
+ client_side_validation: true,
54
+ required: false,
55
+ type: {
56
+ name: 'Dictionary',
57
+ value: {
58
+ client_side_validation: true,
59
+ required: false,
60
+ serialized_name: 'ObjectElementType',
61
+ type: {
62
+ name: 'Object'
63
+ }
64
+ }
65
+ }
66
+ },
67
+ description: {
68
+ client_side_validation: true,
69
+ required: false,
70
+ serialized_name: 'description',
71
+ type: {
72
+ name: 'String'
73
+ }
74
+ },
75
+ runtime_state: {
76
+ client_side_validation: true,
77
+ required: false,
78
+ read_only: true,
79
+ serialized_name: 'runtimeState',
80
+ type: {
81
+ name: 'String'
82
+ }
83
+ },
84
+ annotations: {
85
+ client_side_validation: true,
86
+ required: false,
87
+ serialized_name: 'annotations',
88
+ type: {
89
+ name: 'Sequence',
90
+ element: {
91
+ client_side_validation: true,
92
+ required: false,
93
+ serialized_name: 'ObjectElementType',
94
+ type: {
95
+ name: 'Object'
96
+ }
97
+ }
98
+ }
99
+ },
100
+ type: {
101
+ client_side_validation: true,
102
+ required: true,
103
+ serialized_name: 'type',
104
+ type: {
105
+ name: 'String'
106
+ }
107
+ },
108
+ pipelines: {
109
+ client_side_validation: true,
110
+ required: false,
111
+ serialized_name: 'pipelines',
112
+ type: {
113
+ name: 'Sequence',
114
+ element: {
115
+ client_side_validation: true,
116
+ required: false,
117
+ serialized_name: 'TriggerPipelineReferenceElementType',
118
+ type: {
119
+ name: 'Composite',
120
+ class_name: 'TriggerPipelineReference'
121
+ }
122
+ }
123
+ }
124
+ },
125
+ subject_begins_with: {
126
+ client_side_validation: true,
127
+ required: false,
128
+ serialized_name: 'typeProperties.subjectBeginsWith',
129
+ type: {
130
+ name: 'String'
131
+ }
132
+ },
133
+ subject_ends_with: {
134
+ client_side_validation: true,
135
+ required: false,
136
+ serialized_name: 'typeProperties.subjectEndsWith',
137
+ type: {
138
+ name: 'String'
139
+ }
140
+ },
141
+ events: {
142
+ client_side_validation: true,
143
+ required: false,
144
+ serialized_name: 'typeProperties.events',
145
+ type: {
146
+ name: 'Sequence',
147
+ element: {
148
+ client_side_validation: true,
149
+ required: false,
150
+ serialized_name: 'ObjectElementType',
151
+ type: {
152
+ name: 'Object'
153
+ }
154
+ }
155
+ }
156
+ },
157
+ scope: {
158
+ client_side_validation: true,
159
+ required: false,
160
+ serialized_name: 'typeProperties.scope',
161
+ type: {
162
+ name: 'String'
163
+ }
164
+ }
165
+ }
166
+ }
167
+ }
168
+ end
169
+ end
170
+ end
171
+ end
@@ -0,0 +1,84 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator.
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::DataFactory::Mgmt::V2018_06_01
7
+ module Models
8
+ #
9
+ # Definition of CMK for the factory.
10
+ #
11
+ class EncryptionConfiguration
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] The name of the key in Azure Key Vault to use as
16
+ # Customer Managed Key.
17
+ attr_accessor :key_name
18
+
19
+ # @return [String] The url of the Azure Key Vault used for CMK.
20
+ attr_accessor :vault_base_url
21
+
22
+ # @return [String] The version of the key used for CMK. If not provided,
23
+ # latest version will be used.
24
+ attr_accessor :key_version
25
+
26
+ # @return [CMKIdentityDefinition] User assigned identity to use to
27
+ # authenticate to customer's key vault. If not provided Managed Service
28
+ # Identity will be used.
29
+ attr_accessor :identity
30
+
31
+
32
+ #
33
+ # Mapper for EncryptionConfiguration class as Ruby Hash.
34
+ # This will be used for serialization/deserialization.
35
+ #
36
+ def self.mapper()
37
+ {
38
+ client_side_validation: true,
39
+ required: false,
40
+ serialized_name: 'EncryptionConfiguration',
41
+ type: {
42
+ name: 'Composite',
43
+ class_name: 'EncryptionConfiguration',
44
+ model_properties: {
45
+ key_name: {
46
+ client_side_validation: true,
47
+ required: true,
48
+ serialized_name: 'keyName',
49
+ type: {
50
+ name: 'String'
51
+ }
52
+ },
53
+ vault_base_url: {
54
+ client_side_validation: true,
55
+ required: true,
56
+ serialized_name: 'vaultBaseUrl',
57
+ type: {
58
+ name: 'String'
59
+ }
60
+ },
61
+ key_version: {
62
+ client_side_validation: true,
63
+ required: false,
64
+ serialized_name: 'keyVersion',
65
+ type: {
66
+ name: 'String'
67
+ }
68
+ },
69
+ identity: {
70
+ client_side_validation: true,
71
+ required: false,
72
+ serialized_name: 'identity',
73
+ type: {
74
+ name: 'Composite',
75
+ class_name: 'CMKIdentityDefinition'
76
+ }
77
+ }
78
+ }
79
+ }
80
+ }
81
+ end
82
+ end
83
+ end
84
+ end
@@ -35,6 +35,10 @@ module Azure::DataFactory::Mgmt::V2018_06_01
35
35
  # parameters for factory.
36
36
  attr_accessor :global_parameters
37
37
 
38
+ # @return [EncryptionConfiguration] Properties to enable Customer Managed
39
+ # Key for the factory.
40
+ attr_accessor :encryption
41
+
38
42
  # @return [PublicNetworkAccess] Whether or not public network access is
39
43
  # allowed for the data factory. Possible values include: 'Enabled',
40
44
  # 'Disabled'
@@ -193,6 +197,15 @@ module Azure::DataFactory::Mgmt::V2018_06_01
193
197
  }
194
198
  }
195
199
  },
200
+ encryption: {
201
+ client_side_validation: true,
202
+ required: false,
203
+ serialized_name: 'properties.encryption',
204
+ type: {
205
+ name: 'Composite',
206
+ class_name: 'EncryptionConfiguration'
207
+ }
208
+ },
196
209
  public_network_access: {
197
210
  client_side_validation: true,
198
211
  required: false,
@@ -12,8 +12,7 @@ module Azure::DataFactory::Mgmt::V2018_06_01
12
12
 
13
13
  include MsRestAzure
14
14
 
15
- # @return [String] The identity type. Currently the only supported type
16
- # is 'SystemAssigned'. Default value: 'SystemAssigned' .
15
+ # @return [String] The identity type. Default value: 'SystemAssigned' .
17
16
  attr_accessor :type
18
17
 
19
18
  # @return The principal id of the identity.
@@ -22,6 +21,9 @@ module Azure::DataFactory::Mgmt::V2018_06_01
22
21
  # @return The client tenant id of the identity.
23
22
  attr_accessor :tenant_id
24
23
 
24
+ # @return List of user assigned identities for the factory.
25
+ attr_accessor :user_assigned_identities
26
+
25
27
 
26
28
  #
27
29
  # Mapper for FactoryIdentity class as Ruby Hash.
@@ -63,6 +65,22 @@ module Azure::DataFactory::Mgmt::V2018_06_01
63
65
  type: {
64
66
  name: 'String'
65
67
  }
68
+ },
69
+ user_assigned_identities: {
70
+ client_side_validation: true,
71
+ required: false,
72
+ serialized_name: 'userAssignedIdentities',
73
+ type: {
74
+ name: 'Dictionary',
75
+ value: {
76
+ client_side_validation: true,
77
+ required: false,
78
+ serialized_name: 'ObjectElementType',
79
+ type: {
80
+ name: 'Object'
81
+ }
82
+ }
83
+ }
66
84
  }
67
85
  }
68
86
  }
@@ -32,6 +32,10 @@ module Azure::DataFactory::Mgmt::V2018_06_01
32
32
  # Possible values include: 'Basic', 'Standard', 'Premium', 'PremiumRS'
33
33
  attr_accessor :catalog_pricing_tier
34
34
 
35
+ # @return [String] The dual standby pair name of Azure-SSIS Integration
36
+ # Runtimes to support SSISDB failover.
37
+ attr_accessor :dual_standby_pair_name
38
+
35
39
 
36
40
  #
37
41
  # Mapper for IntegrationRuntimeSsisCatalogInfo class as Ruby Hash.
@@ -97,6 +101,14 @@ module Azure::DataFactory::Mgmt::V2018_06_01
97
101
  type: {
98
102
  name: 'String'
99
103
  }
104
+ },
105
+ dual_standby_pair_name: {
106
+ client_side_validation: true,
107
+ required: false,
108
+ serialized_name: 'dualStandbyPairName',
109
+ type: {
110
+ name: 'String'
111
+ }
100
112
  }
101
113
  }
102
114
  }
@@ -34,6 +34,10 @@ module Azure::DataFactory::Mgmt::V2018_06_01
34
34
  # integration runtime.
35
35
  attr_accessor :ssis_properties
36
36
 
37
+ # @return [ManagedVirtualNetworkReference] Managed Virtual Network
38
+ # reference.
39
+ attr_accessor :managed_virtual_network
40
+
37
41
 
38
42
  #
39
43
  # Mapper for ManagedIntegrationRuntime class as Ruby Hash.
@@ -105,6 +109,15 @@ module Azure::DataFactory::Mgmt::V2018_06_01
105
109
  name: 'Composite',
106
110
  class_name: 'IntegrationRuntimeSsisProperties'
107
111
  }
112
+ },
113
+ managed_virtual_network: {
114
+ client_side_validation: true,
115
+ required: false,
116
+ serialized_name: 'managedVirtualNetwork',
117
+ type: {
118
+ name: 'Composite',
119
+ class_name: 'ManagedVirtualNetworkReference'
120
+ }
108
121
  }
109
122
  }
110
123
  }