azure_mgmt_hdinsight 0.18.4 → 0.18.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/2015-03-01-preview/generated/azure_mgmt_hdinsight/hdinsight_management_client.rb +1 -1
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight.rb +47 -41
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/applications.rb +1 -1
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/clusters.rb +99 -1
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/extensions.rb +4 -4
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/hdinsight_management_client.rb +1 -1
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/locations.rb +97 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_endpoint.rb +11 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/application_get_https_endpoint.rb +11 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/{operation_resource.rb → async_operation_result.rb} +4 -4
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/billing_response_list_result.rb +40 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/capabilities_result.rb +6 -6
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_get_properties.rb +35 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_identity_user_assigned_identities_value.rb +11 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_monitoring_request.rb +3 -3
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/cluster_monitoring_response.rb +4 -5
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/connectivity_endpoint.rb +11 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/dimension.rb +80 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/excluded_services_config.rb +57 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/extension.rb +1 -1
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/filter_mode.rb +2 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/metric_specifications.rb +251 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/operation.rb +12 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/operation_display.rb +11 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/operation_properties.rb +47 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/role.rb +22 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/service_specification.rb +55 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/storage_account.rb +22 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/version_spec.rb +2 -2
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/vm_size_compatibility_filter_v2.rb +1 -1
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/models/vm_size_property.rb +149 -0
- data/lib/2018-06-01-preview/generated/azure_mgmt_hdinsight/script_actions.rb +1 -1
- data/lib/profiles/latest/modules/hdinsight_profile_module.rb +153 -129
- data/lib/version.rb +1 -1
- metadata +9 -3
@@ -0,0 +1,251 @@
|
|
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::Hdinsight::Mgmt::V2018_06_01_preview
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# The details of metric specifications.
|
10
|
+
#
|
11
|
+
class MetricSpecifications
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [String] The name of the metric specification.
|
16
|
+
attr_accessor :name
|
17
|
+
|
18
|
+
# @return [String] The display name of the metric specification.
|
19
|
+
attr_accessor :display_name
|
20
|
+
|
21
|
+
# @return [String] The display description of the metric specification.
|
22
|
+
attr_accessor :display_description
|
23
|
+
|
24
|
+
# @return [String] The unit of the metric specification.
|
25
|
+
attr_accessor :unit
|
26
|
+
|
27
|
+
# @return [String] The aggregation type of the metric specification.
|
28
|
+
attr_accessor :aggregation_type
|
29
|
+
|
30
|
+
# @return [Array<String>] The supported aggregation types of the metric
|
31
|
+
# specification.
|
32
|
+
attr_accessor :supported_aggregation_types
|
33
|
+
|
34
|
+
# @return [Array<String>] The supported time grain types of the metric
|
35
|
+
# specification.
|
36
|
+
attr_accessor :supported_time_grain_types
|
37
|
+
|
38
|
+
# @return [Boolean] The flag indicates whether enable regional mdm
|
39
|
+
# account or not.
|
40
|
+
attr_accessor :enable_regional_mdm_account
|
41
|
+
|
42
|
+
# @return [String] The source mdm account.
|
43
|
+
attr_accessor :source_mdm_account
|
44
|
+
|
45
|
+
# @return [String] The source mdm namespace.
|
46
|
+
attr_accessor :source_mdm_namespace
|
47
|
+
|
48
|
+
# @return [String] The metric filter pattern.
|
49
|
+
attr_accessor :metric_filter_pattern
|
50
|
+
|
51
|
+
# @return [Boolean] The flag indicates whether filling gap with zero.
|
52
|
+
attr_accessor :fill_gap_with_zero
|
53
|
+
|
54
|
+
# @return [String] The category of the metric.
|
55
|
+
attr_accessor :category
|
56
|
+
|
57
|
+
# @return [String] The override name of resource id dimension name.
|
58
|
+
attr_accessor :resource_id_dimension_name_override
|
59
|
+
|
60
|
+
# @return [Boolean] The flag indicates whether the metric is internal or
|
61
|
+
# not.
|
62
|
+
attr_accessor :is_internal
|
63
|
+
|
64
|
+
# @return [String] The override name of delegate metric.
|
65
|
+
attr_accessor :delegate_metric_name_override
|
66
|
+
|
67
|
+
# @return [Array<Dimension>] The dimensions of the metric specification.
|
68
|
+
attr_accessor :dimensions
|
69
|
+
|
70
|
+
|
71
|
+
#
|
72
|
+
# Mapper for MetricSpecifications class as Ruby Hash.
|
73
|
+
# This will be used for serialization/deserialization.
|
74
|
+
#
|
75
|
+
def self.mapper()
|
76
|
+
{
|
77
|
+
client_side_validation: true,
|
78
|
+
required: false,
|
79
|
+
serialized_name: 'MetricSpecifications',
|
80
|
+
type: {
|
81
|
+
name: 'Composite',
|
82
|
+
class_name: 'MetricSpecifications',
|
83
|
+
model_properties: {
|
84
|
+
name: {
|
85
|
+
client_side_validation: true,
|
86
|
+
required: false,
|
87
|
+
serialized_name: 'name',
|
88
|
+
type: {
|
89
|
+
name: 'String'
|
90
|
+
}
|
91
|
+
},
|
92
|
+
display_name: {
|
93
|
+
client_side_validation: true,
|
94
|
+
required: false,
|
95
|
+
serialized_name: 'displayName',
|
96
|
+
type: {
|
97
|
+
name: 'String'
|
98
|
+
}
|
99
|
+
},
|
100
|
+
display_description: {
|
101
|
+
client_side_validation: true,
|
102
|
+
required: false,
|
103
|
+
serialized_name: 'displayDescription',
|
104
|
+
type: {
|
105
|
+
name: 'String'
|
106
|
+
}
|
107
|
+
},
|
108
|
+
unit: {
|
109
|
+
client_side_validation: true,
|
110
|
+
required: false,
|
111
|
+
serialized_name: 'unit',
|
112
|
+
type: {
|
113
|
+
name: 'String'
|
114
|
+
}
|
115
|
+
},
|
116
|
+
aggregation_type: {
|
117
|
+
client_side_validation: true,
|
118
|
+
required: false,
|
119
|
+
serialized_name: 'aggregationType',
|
120
|
+
type: {
|
121
|
+
name: 'String'
|
122
|
+
}
|
123
|
+
},
|
124
|
+
supported_aggregation_types: {
|
125
|
+
client_side_validation: true,
|
126
|
+
required: false,
|
127
|
+
serialized_name: 'supportedAggregationTypes',
|
128
|
+
type: {
|
129
|
+
name: 'Sequence',
|
130
|
+
element: {
|
131
|
+
client_side_validation: true,
|
132
|
+
required: false,
|
133
|
+
serialized_name: 'StringElementType',
|
134
|
+
type: {
|
135
|
+
name: 'String'
|
136
|
+
}
|
137
|
+
}
|
138
|
+
}
|
139
|
+
},
|
140
|
+
supported_time_grain_types: {
|
141
|
+
client_side_validation: true,
|
142
|
+
required: false,
|
143
|
+
serialized_name: 'supportedTimeGrainTypes',
|
144
|
+
type: {
|
145
|
+
name: 'Sequence',
|
146
|
+
element: {
|
147
|
+
client_side_validation: true,
|
148
|
+
required: false,
|
149
|
+
serialized_name: 'StringElementType',
|
150
|
+
type: {
|
151
|
+
name: 'String'
|
152
|
+
}
|
153
|
+
}
|
154
|
+
}
|
155
|
+
},
|
156
|
+
enable_regional_mdm_account: {
|
157
|
+
client_side_validation: true,
|
158
|
+
required: false,
|
159
|
+
serialized_name: 'enableRegionalMdmAccount',
|
160
|
+
type: {
|
161
|
+
name: 'Boolean'
|
162
|
+
}
|
163
|
+
},
|
164
|
+
source_mdm_account: {
|
165
|
+
client_side_validation: true,
|
166
|
+
required: false,
|
167
|
+
serialized_name: 'sourceMdmAccount',
|
168
|
+
type: {
|
169
|
+
name: 'String'
|
170
|
+
}
|
171
|
+
},
|
172
|
+
source_mdm_namespace: {
|
173
|
+
client_side_validation: true,
|
174
|
+
required: false,
|
175
|
+
serialized_name: 'sourceMdmNamespace',
|
176
|
+
type: {
|
177
|
+
name: 'String'
|
178
|
+
}
|
179
|
+
},
|
180
|
+
metric_filter_pattern: {
|
181
|
+
client_side_validation: true,
|
182
|
+
required: false,
|
183
|
+
serialized_name: 'metricFilterPattern',
|
184
|
+
type: {
|
185
|
+
name: 'String'
|
186
|
+
}
|
187
|
+
},
|
188
|
+
fill_gap_with_zero: {
|
189
|
+
client_side_validation: true,
|
190
|
+
required: false,
|
191
|
+
serialized_name: 'fillGapWithZero',
|
192
|
+
type: {
|
193
|
+
name: 'Boolean'
|
194
|
+
}
|
195
|
+
},
|
196
|
+
category: {
|
197
|
+
client_side_validation: true,
|
198
|
+
required: false,
|
199
|
+
serialized_name: 'category',
|
200
|
+
type: {
|
201
|
+
name: 'String'
|
202
|
+
}
|
203
|
+
},
|
204
|
+
resource_id_dimension_name_override: {
|
205
|
+
client_side_validation: true,
|
206
|
+
required: false,
|
207
|
+
serialized_name: 'resourceIdDimensionNameOverride',
|
208
|
+
type: {
|
209
|
+
name: 'String'
|
210
|
+
}
|
211
|
+
},
|
212
|
+
is_internal: {
|
213
|
+
client_side_validation: true,
|
214
|
+
required: false,
|
215
|
+
serialized_name: 'isInternal',
|
216
|
+
type: {
|
217
|
+
name: 'Boolean'
|
218
|
+
}
|
219
|
+
},
|
220
|
+
delegate_metric_name_override: {
|
221
|
+
client_side_validation: true,
|
222
|
+
required: false,
|
223
|
+
serialized_name: 'delegateMetricNameOverride',
|
224
|
+
type: {
|
225
|
+
name: 'String'
|
226
|
+
}
|
227
|
+
},
|
228
|
+
dimensions: {
|
229
|
+
client_side_validation: true,
|
230
|
+
required: false,
|
231
|
+
serialized_name: 'dimensions',
|
232
|
+
type: {
|
233
|
+
name: 'Sequence',
|
234
|
+
element: {
|
235
|
+
client_side_validation: true,
|
236
|
+
required: false,
|
237
|
+
serialized_name: 'DimensionElementType',
|
238
|
+
type: {
|
239
|
+
name: 'Composite',
|
240
|
+
class_name: 'Dimension'
|
241
|
+
}
|
242
|
+
}
|
243
|
+
}
|
244
|
+
}
|
245
|
+
}
|
246
|
+
}
|
247
|
+
}
|
248
|
+
end
|
249
|
+
end
|
250
|
+
end
|
251
|
+
end
|
@@ -18,6 +18,9 @@ module Azure::Hdinsight::Mgmt::V2018_06_01_preview
|
|
18
18
|
# @return [OperationDisplay] The object that represents the operation.
|
19
19
|
attr_accessor :display
|
20
20
|
|
21
|
+
# @return [OperationProperties] The operation properties.
|
22
|
+
attr_accessor :properties
|
23
|
+
|
21
24
|
|
22
25
|
#
|
23
26
|
# Mapper for Operation class as Ruby Hash.
|
@@ -48,6 +51,15 @@ module Azure::Hdinsight::Mgmt::V2018_06_01_preview
|
|
48
51
|
name: 'Composite',
|
49
52
|
class_name: 'OperationDisplay'
|
50
53
|
}
|
54
|
+
},
|
55
|
+
properties: {
|
56
|
+
client_side_validation: true,
|
57
|
+
required: false,
|
58
|
+
serialized_name: 'properties',
|
59
|
+
type: {
|
60
|
+
name: 'Composite',
|
61
|
+
class_name: 'OperationProperties'
|
62
|
+
}
|
51
63
|
}
|
52
64
|
}
|
53
65
|
}
|
@@ -22,6 +22,9 @@ module Azure::Hdinsight::Mgmt::V2018_06_01_preview
|
|
22
22
|
# @return [String] The operation type: read, write, delete, etc.
|
23
23
|
attr_accessor :operation
|
24
24
|
|
25
|
+
# @return [String] Localized friendly description for the operation
|
26
|
+
attr_accessor :description
|
27
|
+
|
25
28
|
|
26
29
|
#
|
27
30
|
# Mapper for OperationDisplay class as Ruby Hash.
|
@@ -59,6 +62,14 @@ module Azure::Hdinsight::Mgmt::V2018_06_01_preview
|
|
59
62
|
type: {
|
60
63
|
name: 'String'
|
61
64
|
}
|
65
|
+
},
|
66
|
+
description: {
|
67
|
+
client_side_validation: true,
|
68
|
+
required: false,
|
69
|
+
serialized_name: 'description',
|
70
|
+
type: {
|
71
|
+
name: 'String'
|
72
|
+
}
|
62
73
|
}
|
63
74
|
}
|
64
75
|
}
|
@@ -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::Hdinsight::Mgmt::V2018_06_01_preview
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# The details of operation.
|
10
|
+
#
|
11
|
+
class OperationProperties
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [ServiceSpecification] The specification of the service.
|
16
|
+
attr_accessor :service_specification
|
17
|
+
|
18
|
+
|
19
|
+
#
|
20
|
+
# Mapper for OperationProperties class as Ruby Hash.
|
21
|
+
# This will be used for serialization/deserialization.
|
22
|
+
#
|
23
|
+
def self.mapper()
|
24
|
+
{
|
25
|
+
client_side_validation: true,
|
26
|
+
required: false,
|
27
|
+
serialized_name: 'OperationProperties',
|
28
|
+
type: {
|
29
|
+
name: 'Composite',
|
30
|
+
class_name: 'OperationProperties',
|
31
|
+
model_properties: {
|
32
|
+
service_specification: {
|
33
|
+
client_side_validation: true,
|
34
|
+
required: false,
|
35
|
+
serialized_name: 'serviceSpecification',
|
36
|
+
type: {
|
37
|
+
name: 'Composite',
|
38
|
+
class_name: 'ServiceSpecification'
|
39
|
+
}
|
40
|
+
}
|
41
|
+
}
|
42
|
+
}
|
43
|
+
}
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
@@ -21,6 +21,9 @@ module Azure::Hdinsight::Mgmt::V2018_06_01_preview
|
|
21
21
|
# @return [Integer] The instance count of the cluster.
|
22
22
|
attr_accessor :target_instance_count
|
23
23
|
|
24
|
+
# @return [String] The name of the virtual machine group.
|
25
|
+
attr_accessor :vmgroup_name
|
26
|
+
|
24
27
|
# @return [Autoscale] The autoscale configurations.
|
25
28
|
attr_accessor :autoscale_configuration
|
26
29
|
|
@@ -39,6 +42,9 @@ module Azure::Hdinsight::Mgmt::V2018_06_01_preview
|
|
39
42
|
# @return [Array<ScriptAction>] The list of script actions on the role.
|
40
43
|
attr_accessor :script_actions
|
41
44
|
|
45
|
+
# @return [Boolean] Indicates whether encrypt the data disks.
|
46
|
+
attr_accessor :encrypt_data_disks
|
47
|
+
|
42
48
|
|
43
49
|
#
|
44
50
|
# Mapper for Role class as Ruby Hash.
|
@@ -77,6 +83,14 @@ module Azure::Hdinsight::Mgmt::V2018_06_01_preview
|
|
77
83
|
name: 'Number'
|
78
84
|
}
|
79
85
|
},
|
86
|
+
vmgroup_name: {
|
87
|
+
client_side_validation: true,
|
88
|
+
required: false,
|
89
|
+
serialized_name: 'VMGroupName',
|
90
|
+
type: {
|
91
|
+
name: 'String'
|
92
|
+
}
|
93
|
+
},
|
80
94
|
autoscale_configuration: {
|
81
95
|
client_side_validation: true,
|
82
96
|
required: false,
|
@@ -146,6 +160,14 @@ module Azure::Hdinsight::Mgmt::V2018_06_01_preview
|
|
146
160
|
}
|
147
161
|
}
|
148
162
|
}
|
163
|
+
},
|
164
|
+
encrypt_data_disks: {
|
165
|
+
client_side_validation: true,
|
166
|
+
required: false,
|
167
|
+
serialized_name: 'encryptDataDisks',
|
168
|
+
type: {
|
169
|
+
name: 'Boolean'
|
170
|
+
}
|
149
171
|
}
|
150
172
|
}
|
151
173
|
}
|
@@ -0,0 +1,55 @@
|
|
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::Hdinsight::Mgmt::V2018_06_01_preview
|
7
|
+
module Models
|
8
|
+
#
|
9
|
+
# The specification of the service.
|
10
|
+
#
|
11
|
+
class ServiceSpecification
|
12
|
+
|
13
|
+
include MsRestAzure
|
14
|
+
|
15
|
+
# @return [Array<MetricSpecifications>] The metric specifications.
|
16
|
+
attr_accessor :metric_specifications
|
17
|
+
|
18
|
+
|
19
|
+
#
|
20
|
+
# Mapper for ServiceSpecification class as Ruby Hash.
|
21
|
+
# This will be used for serialization/deserialization.
|
22
|
+
#
|
23
|
+
def self.mapper()
|
24
|
+
{
|
25
|
+
client_side_validation: true,
|
26
|
+
required: false,
|
27
|
+
serialized_name: 'ServiceSpecification',
|
28
|
+
type: {
|
29
|
+
name: 'Composite',
|
30
|
+
class_name: 'ServiceSpecification',
|
31
|
+
model_properties: {
|
32
|
+
metric_specifications: {
|
33
|
+
client_side_validation: true,
|
34
|
+
required: false,
|
35
|
+
serialized_name: 'metricSpecifications',
|
36
|
+
type: {
|
37
|
+
name: 'Sequence',
|
38
|
+
element: {
|
39
|
+
client_side_validation: true,
|
40
|
+
required: false,
|
41
|
+
serialized_name: 'MetricSpecificationsElementType',
|
42
|
+
type: {
|
43
|
+
name: 'Composite',
|
44
|
+
class_name: 'MetricSpecifications'
|
45
|
+
}
|
46
|
+
}
|
47
|
+
}
|
48
|
+
}
|
49
|
+
}
|
50
|
+
}
|
51
|
+
}
|
52
|
+
end
|
53
|
+
end
|
54
|
+
end
|
55
|
+
end
|