azure_mgmt_support 0.17.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/lib/2020-04-01/generated/azure_mgmt_support.rb +62 -0
  4. data/lib/2020-04-01/generated/azure_mgmt_support/communications.rb +661 -0
  5. data/lib/2020-04-01/generated/azure_mgmt_support/microsoft_support.rb +147 -0
  6. data/lib/2020-04-01/generated/azure_mgmt_support/models/check_name_availability_input.rb +59 -0
  7. data/lib/2020-04-01/generated/azure_mgmt_support/models/check_name_availability_output.rb +72 -0
  8. data/lib/2020-04-01/generated/azure_mgmt_support/models/communication_details.rb +145 -0
  9. data/lib/2020-04-01/generated/azure_mgmt_support/models/communication_direction.rb +16 -0
  10. data/lib/2020-04-01/generated/azure_mgmt_support/models/communication_type.rb +16 -0
  11. data/lib/2020-04-01/generated/azure_mgmt_support/models/communications_list_result.rb +99 -0
  12. data/lib/2020-04-01/generated/azure_mgmt_support/models/contact_profile.rb +156 -0
  13. data/lib/2020-04-01/generated/azure_mgmt_support/models/exception_response.rb +47 -0
  14. data/lib/2020-04-01/generated/azure_mgmt_support/models/operation.rb +59 -0
  15. data/lib/2020-04-01/generated/azure_mgmt_support/models/operation_display.rb +84 -0
  16. data/lib/2020-04-01/generated/azure_mgmt_support/models/operations_list_result.rb +56 -0
  17. data/lib/2020-04-01/generated/azure_mgmt_support/models/preferred_contact_method.rb +16 -0
  18. data/lib/2020-04-01/generated/azure_mgmt_support/models/problem_classification.rb +83 -0
  19. data/lib/2020-04-01/generated/azure_mgmt_support/models/problem_classifications_list_result.rb +56 -0
  20. data/lib/2020-04-01/generated/azure_mgmt_support/models/quota_change_request.rb +58 -0
  21. data/lib/2020-04-01/generated/azure_mgmt_support/models/quota_ticket_details.rb +82 -0
  22. data/lib/2020-04-01/generated/azure_mgmt_support/models/service.rb +101 -0
  23. data/lib/2020-04-01/generated/azure_mgmt_support/models/service_error.rb +89 -0
  24. data/lib/2020-04-01/generated/azure_mgmt_support/models/service_error_detail.rb +70 -0
  25. data/lib/2020-04-01/generated/azure_mgmt_support/models/service_level_agreement.rb +73 -0
  26. data/lib/2020-04-01/generated/azure_mgmt_support/models/services_list_result.rb +55 -0
  27. data/lib/2020-04-01/generated/azure_mgmt_support/models/severity_level.rb +18 -0
  28. data/lib/2020-04-01/generated/azure_mgmt_support/models/status.rb +16 -0
  29. data/lib/2020-04-01/generated/azure_mgmt_support/models/support_engineer.rb +48 -0
  30. data/lib/2020-04-01/generated/azure_mgmt_support/models/support_ticket_details.rb +321 -0
  31. data/lib/2020-04-01/generated/azure_mgmt_support/models/support_tickets_list_result.rb +99 -0
  32. data/lib/2020-04-01/generated/azure_mgmt_support/models/technical_ticket_details.rb +48 -0
  33. data/lib/2020-04-01/generated/azure_mgmt_support/models/type.rb +16 -0
  34. data/lib/2020-04-01/generated/azure_mgmt_support/models/update_contact_profile.rb +156 -0
  35. data/lib/2020-04-01/generated/azure_mgmt_support/models/update_support_ticket.rb +73 -0
  36. data/lib/2020-04-01/generated/azure_mgmt_support/module_definition.rb +9 -0
  37. data/lib/2020-04-01/generated/azure_mgmt_support/operations.rb +109 -0
  38. data/lib/2020-04-01/generated/azure_mgmt_support/problem_classifications.rb +219 -0
  39. data/lib/2020-04-01/generated/azure_mgmt_support/services.rb +222 -0
  40. data/lib/2020-04-01/generated/azure_mgmt_support/support_tickets.rb +854 -0
  41. data/lib/azure_mgmt_support.rb +6 -0
  42. data/lib/module_definition.rb +7 -0
  43. data/lib/profiles/latest/modules/support_profile_module.rb +189 -0
  44. data/lib/profiles/latest/support_latest_profile_client.rb +40 -0
  45. data/lib/profiles/latest/support_module_definition.rb +8 -0
  46. data/lib/version.rb +7 -0
  47. metadata +162 -0
@@ -0,0 +1,6 @@
1
+ # encoding: utf-8
2
+ # Copyright (c) Microsoft Corporation. All rights reserved.
3
+ # Licensed under the MIT License. See License.txt in the project root for license information.
4
+
5
+ require '2020-04-01/generated/azure_mgmt_support'
6
+ require 'profiles/latest/support_latest_profile_client'
@@ -0,0 +1,7 @@
1
+ # encoding: utf-8
2
+ # Copyright (c) Microsoft Corporation. All rights reserved.
3
+ # Licensed under the MIT License. See License.txt in the project root for license information.
4
+
5
+ module Azure end
6
+ module Azure::Support end
7
+ module Azure::Support::Mgmt end
@@ -0,0 +1,189 @@
1
+ # encoding: utf-8
2
+ # Copyright (c) Microsoft Corporation. All rights reserved.
3
+ # Licensed under the MIT License. See License.txt in the project root for license information.
4
+
5
+ require 'azure_mgmt_support'
6
+
7
+ module Azure::Support::Profiles::Latest
8
+ module Mgmt
9
+ Operations = Azure::Support::Mgmt::V2020_04_01::Operations
10
+ Services = Azure::Support::Mgmt::V2020_04_01::Services
11
+ ProblemClassifications = Azure::Support::Mgmt::V2020_04_01::ProblemClassifications
12
+ SupportTickets = Azure::Support::Mgmt::V2020_04_01::SupportTickets
13
+ Communications = Azure::Support::Mgmt::V2020_04_01::Communications
14
+
15
+ module Models
16
+ TechnicalTicketDetails = Azure::Support::Mgmt::V2020_04_01::Models::TechnicalTicketDetails
17
+ OperationDisplay = Azure::Support::Mgmt::V2020_04_01::Models::OperationDisplay
18
+ QuotaChangeRequest = Azure::Support::Mgmt::V2020_04_01::Models::QuotaChangeRequest
19
+ OperationsListResult = Azure::Support::Mgmt::V2020_04_01::Models::OperationsListResult
20
+ QuotaTicketDetails = Azure::Support::Mgmt::V2020_04_01::Models::QuotaTicketDetails
21
+ ServicesListResult = Azure::Support::Mgmt::V2020_04_01::Models::ServicesListResult
22
+ SupportTicketDetails = Azure::Support::Mgmt::V2020_04_01::Models::SupportTicketDetails
23
+ ProblemClassificationsListResult = Azure::Support::Mgmt::V2020_04_01::Models::ProblemClassificationsListResult
24
+ SupportTicketsListResult = Azure::Support::Mgmt::V2020_04_01::Models::SupportTicketsListResult
25
+ CheckNameAvailabilityOutput = Azure::Support::Mgmt::V2020_04_01::Models::CheckNameAvailabilityOutput
26
+ CommunicationDetails = Azure::Support::Mgmt::V2020_04_01::Models::CommunicationDetails
27
+ ServiceLevelAgreement = Azure::Support::Mgmt::V2020_04_01::Models::ServiceLevelAgreement
28
+ CommunicationsListResult = Azure::Support::Mgmt::V2020_04_01::Models::CommunicationsListResult
29
+ Operation = Azure::Support::Mgmt::V2020_04_01::Models::Operation
30
+ ServiceErrorDetail = Azure::Support::Mgmt::V2020_04_01::Models::ServiceErrorDetail
31
+ ProblemClassification = Azure::Support::Mgmt::V2020_04_01::Models::ProblemClassification
32
+ ServiceError = Azure::Support::Mgmt::V2020_04_01::Models::ServiceError
33
+ ContactProfile = Azure::Support::Mgmt::V2020_04_01::Models::ContactProfile
34
+ ExceptionResponse = Azure::Support::Mgmt::V2020_04_01::Models::ExceptionResponse
35
+ Service = Azure::Support::Mgmt::V2020_04_01::Models::Service
36
+ UpdateContactProfile = Azure::Support::Mgmt::V2020_04_01::Models::UpdateContactProfile
37
+ SupportEngineer = Azure::Support::Mgmt::V2020_04_01::Models::SupportEngineer
38
+ UpdateSupportTicket = Azure::Support::Mgmt::V2020_04_01::Models::UpdateSupportTicket
39
+ CheckNameAvailabilityInput = Azure::Support::Mgmt::V2020_04_01::Models::CheckNameAvailabilityInput
40
+ Type = Azure::Support::Mgmt::V2020_04_01::Models::Type
41
+ SeverityLevel = Azure::Support::Mgmt::V2020_04_01::Models::SeverityLevel
42
+ PreferredContactMethod = Azure::Support::Mgmt::V2020_04_01::Models::PreferredContactMethod
43
+ CommunicationType = Azure::Support::Mgmt::V2020_04_01::Models::CommunicationType
44
+ CommunicationDirection = Azure::Support::Mgmt::V2020_04_01::Models::CommunicationDirection
45
+ Status = Azure::Support::Mgmt::V2020_04_01::Models::Status
46
+ end
47
+
48
+ #
49
+ # SupportManagementClass
50
+ #
51
+ class SupportManagementClass
52
+ attr_reader :operations, :services, :problem_classifications, :support_tickets, :communications, :configurable, :base_url, :options, :model_classes
53
+
54
+ def initialize(options = {})
55
+ if options.is_a?(Hash) && options.length == 0
56
+ @options = setup_default_options
57
+ else
58
+ @options = options
59
+ end
60
+
61
+ reset!(options)
62
+
63
+ @configurable = self
64
+ @base_url = options[:base_url].nil? ? nil:options[:base_url]
65
+ @options = options[:options].nil? ? nil:options[:options]
66
+
67
+ @client_0 = Azure::Support::Mgmt::V2020_04_01::MicrosoftSupport.new(configurable.credentials, base_url, options)
68
+ if(@client_0.respond_to?(:subscription_id))
69
+ @client_0.subscription_id = configurable.subscription_id
70
+ end
71
+ add_telemetry(@client_0)
72
+ @operations = @client_0.operations
73
+ @services = @client_0.services
74
+ @problem_classifications = @client_0.problem_classifications
75
+ @support_tickets = @client_0.support_tickets
76
+ @communications = @client_0.communications
77
+
78
+ @model_classes = ModelClasses.new
79
+ end
80
+
81
+ def add_telemetry(client)
82
+ profile_information = 'Profiles/Latest/Support/Mgmt'
83
+ client.add_user_agent_information(profile_information)
84
+ end
85
+
86
+ def method_missing(method, *args)
87
+ if @client_0.respond_to?method
88
+ @client_0.send(method, *args)
89
+ else
90
+ super
91
+ end
92
+ end
93
+
94
+ end
95
+
96
+ class ModelClasses
97
+ def technical_ticket_details
98
+ Azure::Support::Mgmt::V2020_04_01::Models::TechnicalTicketDetails
99
+ end
100
+ def operation_display
101
+ Azure::Support::Mgmt::V2020_04_01::Models::OperationDisplay
102
+ end
103
+ def quota_change_request
104
+ Azure::Support::Mgmt::V2020_04_01::Models::QuotaChangeRequest
105
+ end
106
+ def operations_list_result
107
+ Azure::Support::Mgmt::V2020_04_01::Models::OperationsListResult
108
+ end
109
+ def quota_ticket_details
110
+ Azure::Support::Mgmt::V2020_04_01::Models::QuotaTicketDetails
111
+ end
112
+ def services_list_result
113
+ Azure::Support::Mgmt::V2020_04_01::Models::ServicesListResult
114
+ end
115
+ def support_ticket_details
116
+ Azure::Support::Mgmt::V2020_04_01::Models::SupportTicketDetails
117
+ end
118
+ def problem_classifications_list_result
119
+ Azure::Support::Mgmt::V2020_04_01::Models::ProblemClassificationsListResult
120
+ end
121
+ def support_tickets_list_result
122
+ Azure::Support::Mgmt::V2020_04_01::Models::SupportTicketsListResult
123
+ end
124
+ def check_name_availability_output
125
+ Azure::Support::Mgmt::V2020_04_01::Models::CheckNameAvailabilityOutput
126
+ end
127
+ def communication_details
128
+ Azure::Support::Mgmt::V2020_04_01::Models::CommunicationDetails
129
+ end
130
+ def service_level_agreement
131
+ Azure::Support::Mgmt::V2020_04_01::Models::ServiceLevelAgreement
132
+ end
133
+ def communications_list_result
134
+ Azure::Support::Mgmt::V2020_04_01::Models::CommunicationsListResult
135
+ end
136
+ def operation
137
+ Azure::Support::Mgmt::V2020_04_01::Models::Operation
138
+ end
139
+ def service_error_detail
140
+ Azure::Support::Mgmt::V2020_04_01::Models::ServiceErrorDetail
141
+ end
142
+ def problem_classification
143
+ Azure::Support::Mgmt::V2020_04_01::Models::ProblemClassification
144
+ end
145
+ def service_error
146
+ Azure::Support::Mgmt::V2020_04_01::Models::ServiceError
147
+ end
148
+ def contact_profile
149
+ Azure::Support::Mgmt::V2020_04_01::Models::ContactProfile
150
+ end
151
+ def exception_response
152
+ Azure::Support::Mgmt::V2020_04_01::Models::ExceptionResponse
153
+ end
154
+ def service
155
+ Azure::Support::Mgmt::V2020_04_01::Models::Service
156
+ end
157
+ def update_contact_profile
158
+ Azure::Support::Mgmt::V2020_04_01::Models::UpdateContactProfile
159
+ end
160
+ def support_engineer
161
+ Azure::Support::Mgmt::V2020_04_01::Models::SupportEngineer
162
+ end
163
+ def update_support_ticket
164
+ Azure::Support::Mgmt::V2020_04_01::Models::UpdateSupportTicket
165
+ end
166
+ def check_name_availability_input
167
+ Azure::Support::Mgmt::V2020_04_01::Models::CheckNameAvailabilityInput
168
+ end
169
+ def type
170
+ Azure::Support::Mgmt::V2020_04_01::Models::Type
171
+ end
172
+ def severity_level
173
+ Azure::Support::Mgmt::V2020_04_01::Models::SeverityLevel
174
+ end
175
+ def preferred_contact_method
176
+ Azure::Support::Mgmt::V2020_04_01::Models::PreferredContactMethod
177
+ end
178
+ def communication_type
179
+ Azure::Support::Mgmt::V2020_04_01::Models::CommunicationType
180
+ end
181
+ def communication_direction
182
+ Azure::Support::Mgmt::V2020_04_01::Models::CommunicationDirection
183
+ end
184
+ def status
185
+ Azure::Support::Mgmt::V2020_04_01::Models::Status
186
+ end
187
+ end
188
+ end
189
+ end
@@ -0,0 +1,40 @@
1
+ # encoding: utf-8
2
+ # Copyright (c) Microsoft Corporation. All rights reserved.
3
+ # Licensed under the MIT License. See License.txt in the project root for license information.
4
+
5
+ require 'profiles/latest/support_module_definition'
6
+ require 'profiles/latest/modules/support_profile_module'
7
+
8
+ module Azure::Support::Profiles::Latest
9
+ module Mgmt
10
+ #
11
+ # Client class for the Latest profile SDK.
12
+ #
13
+ class Client < SupportManagementClass
14
+ include MsRestAzure::Common::Configurable
15
+
16
+ #
17
+ # Initializes a new instance of the Client class.
18
+ # @param options [Hash] hash of client options.
19
+ # options = {
20
+ # tenant_id: 'YOUR TENANT ID',
21
+ # client_id: 'YOUR CLIENT ID',
22
+ # client_secret: 'YOUR CLIENT SECRET',
23
+ # subscription_id: 'YOUR SUBSCRIPTION ID',
24
+ # credentials: credentials,
25
+ # active_directory_settings: active_directory_settings,
26
+ # base_url: 'YOUR BASE URL',
27
+ # options: options
28
+ # }
29
+ # 'credentials' are optional and if not passed in the hash, will be obtained
30
+ # from MsRest::TokenCredentials using MsRestAzure::ApplicationTokenProvider.
31
+ #
32
+ # Also, base_url, active_directory_settings & options are optional.
33
+ #
34
+ def initialize(options = {})
35
+ super(options)
36
+ end
37
+
38
+ end
39
+ end
40
+ end
@@ -0,0 +1,8 @@
1
+ # encoding: utf-8
2
+ # Copyright (c) Microsoft Corporation. All rights reserved.
3
+ # Licensed under the MIT License. See License.txt in the project root for license information.
4
+
5
+ module Azure end
6
+ module Azure::Support end
7
+ module Azure::Support::Profiles end
8
+ module Azure::Support::Profiles::Latest end
@@ -0,0 +1,7 @@
1
+ # encoding: utf-8
2
+ # Copyright (c) Microsoft Corporation. All rights reserved.
3
+ # Licensed under the MIT License. See License.txt in the project root for license information.
4
+
5
+ module Azure::Support::Mgmt
6
+ VERSION = '0.17.0'
7
+ end
metadata ADDED
@@ -0,0 +1,162 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: azure_mgmt_support
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.17.0
5
+ platform: ruby
6
+ authors:
7
+ - Microsoft Corporation
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2020-03-20 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bundler
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - "~>"
18
+ - !ruby/object:Gem::Version
19
+ version: '1.9'
20
+ type: :development
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - "~>"
25
+ - !ruby/object:Gem::Version
26
+ version: '1.9'
27
+ - !ruby/object:Gem::Dependency
28
+ name: rake
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '10'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '10'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rspec
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '3'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '3'
55
+ - !ruby/object:Gem::Dependency
56
+ name: dotenv
57
+ requirement: !ruby/object:Gem::Requirement
58
+ requirements:
59
+ - - "~>"
60
+ - !ruby/object:Gem::Version
61
+ version: '2'
62
+ type: :development
63
+ prerelease: false
64
+ version_requirements: !ruby/object:Gem::Requirement
65
+ requirements:
66
+ - - "~>"
67
+ - !ruby/object:Gem::Version
68
+ version: '2'
69
+ - !ruby/object:Gem::Dependency
70
+ name: ms_rest_azure
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - "~>"
74
+ - !ruby/object:Gem::Version
75
+ version: 0.11.1
76
+ type: :runtime
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - "~>"
81
+ - !ruby/object:Gem::Version
82
+ version: 0.11.1
83
+ description:
84
+ email: azrubyteam@microsoft.com
85
+ executables: []
86
+ extensions: []
87
+ extra_rdoc_files: []
88
+ files:
89
+ - LICENSE.txt
90
+ - lib/2020-04-01/generated/azure_mgmt_support.rb
91
+ - lib/2020-04-01/generated/azure_mgmt_support/communications.rb
92
+ - lib/2020-04-01/generated/azure_mgmt_support/microsoft_support.rb
93
+ - lib/2020-04-01/generated/azure_mgmt_support/models/check_name_availability_input.rb
94
+ - lib/2020-04-01/generated/azure_mgmt_support/models/check_name_availability_output.rb
95
+ - lib/2020-04-01/generated/azure_mgmt_support/models/communication_details.rb
96
+ - lib/2020-04-01/generated/azure_mgmt_support/models/communication_direction.rb
97
+ - lib/2020-04-01/generated/azure_mgmt_support/models/communication_type.rb
98
+ - lib/2020-04-01/generated/azure_mgmt_support/models/communications_list_result.rb
99
+ - lib/2020-04-01/generated/azure_mgmt_support/models/contact_profile.rb
100
+ - lib/2020-04-01/generated/azure_mgmt_support/models/exception_response.rb
101
+ - lib/2020-04-01/generated/azure_mgmt_support/models/operation.rb
102
+ - lib/2020-04-01/generated/azure_mgmt_support/models/operation_display.rb
103
+ - lib/2020-04-01/generated/azure_mgmt_support/models/operations_list_result.rb
104
+ - lib/2020-04-01/generated/azure_mgmt_support/models/preferred_contact_method.rb
105
+ - lib/2020-04-01/generated/azure_mgmt_support/models/problem_classification.rb
106
+ - lib/2020-04-01/generated/azure_mgmt_support/models/problem_classifications_list_result.rb
107
+ - lib/2020-04-01/generated/azure_mgmt_support/models/quota_change_request.rb
108
+ - lib/2020-04-01/generated/azure_mgmt_support/models/quota_ticket_details.rb
109
+ - lib/2020-04-01/generated/azure_mgmt_support/models/service.rb
110
+ - lib/2020-04-01/generated/azure_mgmt_support/models/service_error.rb
111
+ - lib/2020-04-01/generated/azure_mgmt_support/models/service_error_detail.rb
112
+ - lib/2020-04-01/generated/azure_mgmt_support/models/service_level_agreement.rb
113
+ - lib/2020-04-01/generated/azure_mgmt_support/models/services_list_result.rb
114
+ - lib/2020-04-01/generated/azure_mgmt_support/models/severity_level.rb
115
+ - lib/2020-04-01/generated/azure_mgmt_support/models/status.rb
116
+ - lib/2020-04-01/generated/azure_mgmt_support/models/support_engineer.rb
117
+ - lib/2020-04-01/generated/azure_mgmt_support/models/support_ticket_details.rb
118
+ - lib/2020-04-01/generated/azure_mgmt_support/models/support_tickets_list_result.rb
119
+ - lib/2020-04-01/generated/azure_mgmt_support/models/technical_ticket_details.rb
120
+ - lib/2020-04-01/generated/azure_mgmt_support/models/type.rb
121
+ - lib/2020-04-01/generated/azure_mgmt_support/models/update_contact_profile.rb
122
+ - lib/2020-04-01/generated/azure_mgmt_support/models/update_support_ticket.rb
123
+ - lib/2020-04-01/generated/azure_mgmt_support/module_definition.rb
124
+ - lib/2020-04-01/generated/azure_mgmt_support/operations.rb
125
+ - lib/2020-04-01/generated/azure_mgmt_support/problem_classifications.rb
126
+ - lib/2020-04-01/generated/azure_mgmt_support/services.rb
127
+ - lib/2020-04-01/generated/azure_mgmt_support/support_tickets.rb
128
+ - lib/azure_mgmt_support.rb
129
+ - lib/module_definition.rb
130
+ - lib/profiles/latest/modules/support_profile_module.rb
131
+ - lib/profiles/latest/support_latest_profile_client.rb
132
+ - lib/profiles/latest/support_module_definition.rb
133
+ - lib/version.rb
134
+ homepage: https://aka.ms/azure-sdk-for-ruby
135
+ licenses:
136
+ - MIT
137
+ metadata:
138
+ bug_tracker_uri: https://github.com/Azure/azure-sdk-for-ruby/issues
139
+ changelog_uri: https://github.com/Azure/azure-sdk-for-ruby/blob/master/ChangeLog.md
140
+ documentation_uri: https://azure.microsoft.com/en-us/develop/ruby/
141
+ homepage_uri: https://aka.ms/azure-sdk-for-ruby
142
+ post_install_message:
143
+ rdoc_options: []
144
+ require_paths:
145
+ - lib
146
+ required_ruby_version: !ruby/object:Gem::Requirement
147
+ requirements:
148
+ - - ">="
149
+ - !ruby/object:Gem::Version
150
+ version: 2.0.0
151
+ required_rubygems_version: !ruby/object:Gem::Requirement
152
+ requirements:
153
+ - - ">="
154
+ - !ruby/object:Gem::Version
155
+ version: '0'
156
+ requirements: []
157
+ rubyforge_project:
158
+ rubygems_version: 2.7.8
159
+ signing_key:
160
+ specification_version: 4
161
+ summary: Official Ruby client library to consume Support
162
+ test_files: []