azure_mgmt_analysis_services 0.11.0 → 0.12.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (32) hide show
  1. checksums.yaml +4 -4
  2. data/lib/generated/azure_mgmt_analysis_services.rb +17 -4
  3. data/lib/generated/azure_mgmt_analysis_services/analysis_services_management_client.rb +5 -1
  4. data/lib/generated/azure_mgmt_analysis_services/models/analysis_services_server.rb +42 -0
  5. data/lib/generated/azure_mgmt_analysis_services/models/analysis_services_server_update_parameters.rb +42 -0
  6. data/lib/generated/azure_mgmt_analysis_services/models/analysis_services_servers.rb +0 -0
  7. data/lib/generated/azure_mgmt_analysis_services/models/connection_mode.rb +16 -0
  8. data/lib/generated/azure_mgmt_analysis_services/models/error_response.rb +55 -0
  9. data/lib/generated/azure_mgmt_analysis_services/models/gateway_details.rb +68 -0
  10. data/lib/generated/azure_mgmt_analysis_services/models/gateway_error.rb +55 -0
  11. data/lib/generated/azure_mgmt_analysis_services/models/gateway_list_status_error.rb +46 -0
  12. data/lib/generated/azure_mgmt_analysis_services/models/gateway_list_status_live.rb +47 -0
  13. data/lib/generated/azure_mgmt_analysis_services/models/ipv4firewall_rule.rb +65 -0
  14. data/lib/generated/azure_mgmt_analysis_services/models/ipv4firewall_settings.rb +63 -0
  15. data/lib/generated/azure_mgmt_analysis_services/models/operation.rb +57 -0
  16. data/lib/generated/azure_mgmt_analysis_services/models/operation_display.rb +69 -0
  17. data/lib/generated/azure_mgmt_analysis_services/models/operation_list_result.rb +99 -0
  18. data/lib/generated/azure_mgmt_analysis_services/models/provisioning_state.rb +0 -0
  19. data/lib/generated/azure_mgmt_analysis_services/models/resource.rb +0 -0
  20. data/lib/generated/azure_mgmt_analysis_services/models/resource_sku.rb +16 -0
  21. data/lib/generated/azure_mgmt_analysis_services/models/server_administrators.rb +1 -1
  22. data/lib/generated/azure_mgmt_analysis_services/models/sku_details_for_existing_resource.rb +1 -1
  23. data/lib/generated/azure_mgmt_analysis_services/models/sku_enumeration_for_existing_resource_result.rb +2 -2
  24. data/lib/generated/azure_mgmt_analysis_services/models/sku_enumeration_for_new_resource_result.rb +2 -2
  25. data/lib/generated/azure_mgmt_analysis_services/models/sku_tier.rb +0 -0
  26. data/lib/generated/azure_mgmt_analysis_services/models/state.rb +0 -0
  27. data/lib/generated/azure_mgmt_analysis_services/models/status.rb +15 -0
  28. data/lib/generated/azure_mgmt_analysis_services/module_definition.rb +0 -0
  29. data/lib/generated/azure_mgmt_analysis_services/operations.rb +215 -0
  30. data/lib/generated/azure_mgmt_analysis_services/servers.rb +97 -0
  31. data/lib/generated/azure_mgmt_analysis_services/version.rb +1 -1
  32. metadata +17 -4
@@ -0,0 +1,65 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::AnalysisServices
7
+ module Models
8
+ #
9
+ # The detail of firewall rule.
10
+ #
11
+ class IPv4FirewallRule
12
+
13
+ include MsRestAzure
14
+
15
+ include MsRest::JSONable
16
+ # @return [String] The rule name.
17
+ attr_accessor :firewall_rule_name
18
+
19
+ # @return [String] The start range of IPv4.
20
+ attr_accessor :range_start
21
+
22
+ # @return [String] The end range of IPv4.
23
+ attr_accessor :range_end
24
+
25
+
26
+ #
27
+ # Mapper for IPv4FirewallRule class as Ruby Hash.
28
+ # This will be used for serialization/deserialization.
29
+ #
30
+ def self.mapper()
31
+ {
32
+ required: false,
33
+ serialized_name: 'IPv4FirewallRule',
34
+ type: {
35
+ name: 'Composite',
36
+ class_name: 'IPv4FirewallRule',
37
+ model_properties: {
38
+ firewall_rule_name: {
39
+ required: false,
40
+ serialized_name: 'firewallRuleName',
41
+ type: {
42
+ name: 'String'
43
+ }
44
+ },
45
+ range_start: {
46
+ required: false,
47
+ serialized_name: 'rangeStart',
48
+ type: {
49
+ name: 'String'
50
+ }
51
+ },
52
+ range_end: {
53
+ required: false,
54
+ serialized_name: 'rangeEnd',
55
+ type: {
56
+ name: 'String'
57
+ }
58
+ }
59
+ }
60
+ }
61
+ }
62
+ end
63
+ end
64
+ end
65
+ end
@@ -0,0 +1,63 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::AnalysisServices
7
+ module Models
8
+ #
9
+ # An array of firewall rules.
10
+ #
11
+ class IPv4FirewallSettings
12
+
13
+ include MsRestAzure
14
+
15
+ include MsRest::JSONable
16
+ # @return [Array<IPv4FirewallRule>] An array of firewall rules.
17
+ attr_accessor :firewall_rules
18
+
19
+ # @return [String] The indicator of enableing PBI service.
20
+ attr_accessor :enable_power_biservice
21
+
22
+
23
+ #
24
+ # Mapper for IPv4FirewallSettings class as Ruby Hash.
25
+ # This will be used for serialization/deserialization.
26
+ #
27
+ def self.mapper()
28
+ {
29
+ required: false,
30
+ serialized_name: 'IPv4FirewallSettings',
31
+ type: {
32
+ name: 'Composite',
33
+ class_name: 'IPv4FirewallSettings',
34
+ model_properties: {
35
+ firewall_rules: {
36
+ required: false,
37
+ serialized_name: 'firewallRules',
38
+ type: {
39
+ name: 'Sequence',
40
+ element: {
41
+ required: false,
42
+ serialized_name: 'IPv4FirewallRuleElementType',
43
+ type: {
44
+ name: 'Composite',
45
+ class_name: 'IPv4FirewallRule'
46
+ }
47
+ }
48
+ }
49
+ },
50
+ enable_power_biservice: {
51
+ required: false,
52
+ serialized_name: 'enablePowerBIService',
53
+ type: {
54
+ name: 'String'
55
+ }
56
+ }
57
+ }
58
+ }
59
+ }
60
+ end
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,57 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::AnalysisServices
7
+ module Models
8
+ #
9
+ # A Consumption REST API operation.
10
+ #
11
+ class Operation
12
+
13
+ include MsRestAzure
14
+
15
+ include MsRest::JSONable
16
+ # @return [String] Operation name: {provider}/{resource}/{operation}.
17
+ attr_accessor :name
18
+
19
+ # @return [OperationDisplay] The object that represents the operation.
20
+ attr_accessor :display
21
+
22
+
23
+ #
24
+ # Mapper for Operation class as Ruby Hash.
25
+ # This will be used for serialization/deserialization.
26
+ #
27
+ def self.mapper()
28
+ {
29
+ required: false,
30
+ serialized_name: 'Operation',
31
+ type: {
32
+ name: 'Composite',
33
+ class_name: 'Operation',
34
+ model_properties: {
35
+ name: {
36
+ required: false,
37
+ read_only: true,
38
+ serialized_name: 'name',
39
+ type: {
40
+ name: 'String'
41
+ }
42
+ },
43
+ display: {
44
+ required: false,
45
+ serialized_name: 'display',
46
+ type: {
47
+ name: 'Composite',
48
+ class_name: 'OperationDisplay'
49
+ }
50
+ }
51
+ }
52
+ }
53
+ }
54
+ end
55
+ end
56
+ end
57
+ end
@@ -0,0 +1,69 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::AnalysisServices
7
+ module Models
8
+ #
9
+ # The object that represents the operation.
10
+ #
11
+ class OperationDisplay
12
+
13
+ include MsRestAzure
14
+
15
+ include MsRest::JSONable
16
+ # @return [String] Service provider: Microsoft.Consumption.
17
+ attr_accessor :provider
18
+
19
+ # @return [String] Resource on which the operation is performed:
20
+ # UsageDetail, etc.
21
+ attr_accessor :resource
22
+
23
+ # @return [String] Operation type: Read, write, delete, etc.
24
+ attr_accessor :operation
25
+
26
+
27
+ #
28
+ # Mapper for OperationDisplay class as Ruby Hash.
29
+ # This will be used for serialization/deserialization.
30
+ #
31
+ def self.mapper()
32
+ {
33
+ required: false,
34
+ serialized_name: 'Operation_display',
35
+ type: {
36
+ name: 'Composite',
37
+ class_name: 'OperationDisplay',
38
+ model_properties: {
39
+ provider: {
40
+ required: false,
41
+ read_only: true,
42
+ serialized_name: 'provider',
43
+ type: {
44
+ name: 'String'
45
+ }
46
+ },
47
+ resource: {
48
+ required: false,
49
+ read_only: true,
50
+ serialized_name: 'resource',
51
+ type: {
52
+ name: 'String'
53
+ }
54
+ },
55
+ operation: {
56
+ required: false,
57
+ read_only: true,
58
+ serialized_name: 'operation',
59
+ type: {
60
+ name: 'String'
61
+ }
62
+ }
63
+ }
64
+ }
65
+ }
66
+ end
67
+ end
68
+ end
69
+ end
@@ -0,0 +1,99 @@
1
+ # encoding: utf-8
2
+ # Code generated by Microsoft (R) AutoRest Code Generator 1.2.2.0
3
+ # Changes may cause incorrect behavior and will be lost if the code is
4
+ # regenerated.
5
+
6
+ module Azure::ARM::AnalysisServices
7
+ module Models
8
+ #
9
+ # Result of listing consumption operations. It contains a list of
10
+ # operations and a URL link to get the next set of results.
11
+ #
12
+ class OperationListResult
13
+
14
+ include MsRestAzure
15
+
16
+ include MsRest::JSONable
17
+ # @return [Array<Operation>] List of analysis services operations
18
+ # supported by the Microsoft.AnalysisServices resource provider.
19
+ attr_accessor :value
20
+
21
+ # @return [String] URL to get the next set of operation list results if
22
+ # there are any.
23
+ attr_accessor :next_link
24
+
25
+ # return [Proc] with next page method call.
26
+ attr_accessor :next_method
27
+
28
+ #
29
+ # Gets the rest of the items for the request, enabling auto-pagination.
30
+ #
31
+ # @return [Array<Operation>] operation results.
32
+ #
33
+ def get_all_items
34
+ items = @value
35
+ page = self
36
+ while page.next_link != nil do
37
+ page = page.get_next_page
38
+ items.concat(page.value)
39
+ end
40
+ items
41
+ end
42
+
43
+ #
44
+ # Gets the next page of results.
45
+ #
46
+ # @return [OperationListResult] with next page content.
47
+ #
48
+ def get_next_page
49
+ response = @next_method.call(@next_link).value! unless @next_method.nil?
50
+ unless response.nil?
51
+ @next_link = response.body.next_link
52
+ @value = response.body.value
53
+ self
54
+ end
55
+ end
56
+
57
+ #
58
+ # Mapper for OperationListResult class as Ruby Hash.
59
+ # This will be used for serialization/deserialization.
60
+ #
61
+ def self.mapper()
62
+ {
63
+ required: false,
64
+ serialized_name: 'OperationListResult',
65
+ type: {
66
+ name: 'Composite',
67
+ class_name: 'OperationListResult',
68
+ model_properties: {
69
+ value: {
70
+ required: false,
71
+ read_only: true,
72
+ serialized_name: 'value',
73
+ type: {
74
+ name: 'Sequence',
75
+ element: {
76
+ required: false,
77
+ serialized_name: 'OperationElementType',
78
+ type: {
79
+ name: 'Composite',
80
+ class_name: 'Operation'
81
+ }
82
+ }
83
+ }
84
+ },
85
+ next_link: {
86
+ required: false,
87
+ read_only: true,
88
+ serialized_name: 'nextLink',
89
+ type: {
90
+ name: 'String'
91
+ }
92
+ }
93
+ }
94
+ }
95
+ }
96
+ end
97
+ end
98
+ end
99
+ end
@@ -21,6 +21,10 @@ module Azure::ARM::AnalysisServices
21
21
  # applies. Possible values include: 'Development', 'Basic', 'Standard'
22
22
  attr_accessor :tier
23
23
 
24
+ # @return [Integer] The number of instances in the read only query pool.
25
+ # Default value: 1 .
26
+ attr_accessor :capacity
27
+
24
28
 
25
29
  #
26
30
  # Mapper for ResourceSku class as Ruby Hash.
@@ -47,6 +51,18 @@ module Azure::ARM::AnalysisServices
47
51
  type: {
48
52
  name: 'String'
49
53
  }
54
+ },
55
+ capacity: {
56
+ required: false,
57
+ serialized_name: 'capacity',
58
+ default_value: 1,
59
+ constraints: {
60
+ InclusiveMaximum: 8,
61
+ InclusiveMinimum: 1
62
+ },
63
+ type: {
64
+ name: 'Number'
65
+ }
50
66
  }
51
67
  }
52
68
  }
@@ -6,7 +6,7 @@
6
6
  module Azure::ARM::AnalysisServices
7
7
  module Models
8
8
  #
9
- # An array of administrator user identities
9
+ # An array of administrator user identities.
10
10
  #
11
11
  class ServerAdministrators
12
12
 
@@ -6,7 +6,7 @@
6
6
  module Azure::ARM::AnalysisServices
7
7
  module Models
8
8
  #
9
- # An object that represents SKU details for existing resources
9
+ # An object that represents SKU details for existing resources.
10
10
  #
11
11
  class SkuDetailsForExistingResource
12
12
 
@@ -6,7 +6,7 @@
6
6
  module Azure::ARM::AnalysisServices
7
7
  module Models
8
8
  #
9
- # An object that represents enumerating SKUs for existing resources
9
+ # An object that represents enumerating SKUs for existing resources.
10
10
  #
11
11
  class SkuEnumerationForExistingResourceResult
12
12
 
@@ -14,7 +14,7 @@ module Azure::ARM::AnalysisServices
14
14
 
15
15
  include MsRest::JSONable
16
16
  # @return [Array<SkuDetailsForExistingResource>] The collection of
17
- # available SKUs for existing resources
17
+ # available SKUs for existing resources.
18
18
  attr_accessor :value
19
19
 
20
20
 
@@ -6,7 +6,7 @@
6
6
  module Azure::ARM::AnalysisServices
7
7
  module Models
8
8
  #
9
- # An object that represents enumerating SKUs for new resources
9
+ # An object that represents enumerating SKUs for new resources.
10
10
  #
11
11
  class SkuEnumerationForNewResourceResult
12
12
 
@@ -14,7 +14,7 @@ module Azure::ARM::AnalysisServices
14
14
 
15
15
  include MsRest::JSONable
16
16
  # @return [Array<ResourceSku>] The collection of available SKUs for new
17
- # resources
17
+ # resources.
18
18
  attr_accessor :value
19
19
 
20
20