azure_mgmt_iot_central 0.17.1 → 0.17.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: fb3056287c716f2deb45bbada2e88f285365ad13
4
- data.tar.gz: 982157f3f54fcc0c60f69406d5346cc1bbe581e1
3
+ metadata.gz: edf736d302afc13942df959e39451b16c258e3b2
4
+ data.tar.gz: 82c9e7f433e3adc219a09b995705bebf076e9686
5
5
  SHA512:
6
- metadata.gz: 196a22a8f411b02cd030b4c8dfad03ca9f5d870a094011c7425967d5a08cdae9513064214394401b74f89375082a4811d1b3148adced6931d5446819676fa55e
7
- data.tar.gz: 0aca4f79abcdcd85dec314459230c6c952bcbfede23cd95fb3218f46874e32ebc90736be80663658cd9574a48f7fc7335b54329c64ce96390c3c6ae84a385df7
6
+ metadata.gz: 7660e42f49ab6a01265d714044584e242ec90ee2fc3e82c52a56112bcfb05dedcc78efb634ed1ef24eec44afea0d1797dcaf2fedc8df14421a953ace7bde9e9f
7
+ data.tar.gz: bd45efe05fcd2fb74cb58e8cf19f6f8af54edf106e0ac4d33e867a2d1380c838232102709366c69e1e7dd943582ebbc9f5415b886abd27bbc57eac9a849d6f0b
@@ -128,7 +128,7 @@ module Azure::IotCentral::Mgmt::V2017_07_01_privatepreview
128
128
  #
129
129
  def add_telemetry
130
130
  sdk_information = 'azure_mgmt_iot_central'
131
- sdk_information = "#{sdk_information}/0.17.1"
131
+ sdk_information = "#{sdk_information}/0.17.2"
132
132
  add_user_agent_information(sdk_information)
133
133
  end
134
134
  end
@@ -26,17 +26,17 @@ module Azure::IotCentral::Mgmt::V2018_09_01
26
26
 
27
27
  module Models
28
28
  autoload :AppListResult, '2018-09-01/generated/azure_mgmt_iot_central/models/app_list_result.rb'
29
+ autoload :AppSkuInfo, '2018-09-01/generated/azure_mgmt_iot_central/models/app_sku_info.rb'
29
30
  autoload :OperationDisplay, '2018-09-01/generated/azure_mgmt_iot_central/models/operation_display.rb'
30
31
  autoload :AppPatch, '2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb'
31
32
  autoload :Operation, '2018-09-01/generated/azure_mgmt_iot_central/models/operation.rb'
32
- autoload :ErrorDetails, '2018-09-01/generated/azure_mgmt_iot_central/models/error_details.rb'
33
+ autoload :ErrorResponseBody, '2018-09-01/generated/azure_mgmt_iot_central/models/error_response_body.rb'
33
34
  autoload :OperationListResult, '2018-09-01/generated/azure_mgmt_iot_central/models/operation_list_result.rb'
34
35
  autoload :Resource, '2018-09-01/generated/azure_mgmt_iot_central/models/resource.rb'
35
36
  autoload :OperationInputs, '2018-09-01/generated/azure_mgmt_iot_central/models/operation_inputs.rb'
36
- autoload :AppSkuInfo, '2018-09-01/generated/azure_mgmt_iot_central/models/app_sku_info.rb'
37
- autoload :AppNameAvailabilityInfo, '2018-09-01/generated/azure_mgmt_iot_central/models/app_name_availability_info.rb'
37
+ autoload :ErrorDetails, '2018-09-01/generated/azure_mgmt_iot_central/models/error_details.rb'
38
+ autoload :AppAvailabilityInfo, '2018-09-01/generated/azure_mgmt_iot_central/models/app_availability_info.rb'
38
39
  autoload :App, '2018-09-01/generated/azure_mgmt_iot_central/models/app.rb'
39
40
  autoload :AppSku, '2018-09-01/generated/azure_mgmt_iot_central/models/app_sku.rb'
40
- autoload :AppNameUnavailabilityReason, '2018-09-01/generated/azure_mgmt_iot_central/models/app_name_unavailability_reason.rb'
41
41
  end
42
42
  end
@@ -446,7 +446,7 @@ module Azure::IotCentral::Mgmt::V2018_09_01
446
446
  # @param custom_headers [Hash{String => String}] A hash of custom headers that
447
447
  # will be added to the HTTP request.
448
448
  #
449
- # @return [AppNameAvailabilityInfo] operation results.
449
+ # @return [AppAvailabilityInfo] operation results.
450
450
  #
451
451
  def check_name_availability(operation_inputs, custom_headers:nil)
452
452
  response = check_name_availability_async(operation_inputs, custom_headers:custom_headers).value!
@@ -525,7 +525,108 @@ module Azure::IotCentral::Mgmt::V2018_09_01
525
525
  if status_code == 200
526
526
  begin
527
527
  parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
528
- result_mapper = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppNameAvailabilityInfo.mapper()
528
+ result_mapper = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppAvailabilityInfo.mapper()
529
+ result.body = @client.deserialize(result_mapper, parsed_response)
530
+ rescue Exception => e
531
+ fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
532
+ end
533
+ end
534
+
535
+ result
536
+ end
537
+
538
+ promise.execute
539
+ end
540
+
541
+ #
542
+ # Check if an IoT Central application subdomain is available.
543
+ #
544
+ # @param operation_inputs [OperationInputs] Set the name parameter in the
545
+ # OperationInputs structure to the subdomain of the IoT Central application to
546
+ # check.
547
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
548
+ # will be added to the HTTP request.
549
+ #
550
+ # @return [AppAvailabilityInfo] operation results.
551
+ #
552
+ def check_subdomain_availability(operation_inputs, custom_headers:nil)
553
+ response = check_subdomain_availability_async(operation_inputs, custom_headers:custom_headers).value!
554
+ response.body unless response.nil?
555
+ end
556
+
557
+ #
558
+ # Check if an IoT Central application subdomain is available.
559
+ #
560
+ # @param operation_inputs [OperationInputs] Set the name parameter in the
561
+ # OperationInputs structure to the subdomain of the IoT Central application to
562
+ # check.
563
+ # @param custom_headers [Hash{String => String}] A hash of custom headers that
564
+ # will be added to the HTTP request.
565
+ #
566
+ # @return [MsRestAzure::AzureOperationResponse] HTTP response information.
567
+ #
568
+ def check_subdomain_availability_with_http_info(operation_inputs, custom_headers:nil)
569
+ check_subdomain_availability_async(operation_inputs, custom_headers:custom_headers).value!
570
+ end
571
+
572
+ #
573
+ # Check if an IoT Central application subdomain is available.
574
+ #
575
+ # @param operation_inputs [OperationInputs] Set the name parameter in the
576
+ # OperationInputs structure to the subdomain of the IoT Central application to
577
+ # check.
578
+ # @param [Hash{String => String}] A hash of custom headers that will be added
579
+ # to the HTTP request.
580
+ #
581
+ # @return [Concurrent::Promise] Promise object which holds the HTTP response.
582
+ #
583
+ def check_subdomain_availability_async(operation_inputs, custom_headers:nil)
584
+ fail ArgumentError, '@client.api_version is nil' if @client.api_version.nil?
585
+ fail ArgumentError, '@client.subscription_id is nil' if @client.subscription_id.nil?
586
+ fail ArgumentError, 'operation_inputs is nil' if operation_inputs.nil?
587
+
588
+
589
+ request_headers = {}
590
+ request_headers['Content-Type'] = 'application/json; charset=utf-8'
591
+
592
+ # Set Headers
593
+ request_headers['x-ms-client-request-id'] = SecureRandom.uuid
594
+ request_headers['accept-language'] = @client.accept_language unless @client.accept_language.nil?
595
+
596
+ # Serialize Request
597
+ request_mapper = Azure::IotCentral::Mgmt::V2018_09_01::Models::OperationInputs.mapper()
598
+ request_content = @client.serialize(request_mapper, operation_inputs)
599
+ request_content = request_content != nil ? JSON.generate(request_content, quirks_mode: true) : nil
600
+
601
+ path_template = 'subscriptions/{subscriptionId}/providers/Microsoft.IoTCentral/checkSubdomainAvailability'
602
+
603
+ request_url = @base_url || @client.base_url
604
+
605
+ options = {
606
+ middlewares: [[MsRest::RetryPolicyMiddleware, times: 3, retry: 0.02], [:cookie_jar]],
607
+ path_params: {'subscriptionId' => @client.subscription_id},
608
+ query_params: {'api-version' => @client.api_version},
609
+ body: request_content,
610
+ headers: request_headers.merge(custom_headers || {}),
611
+ base_url: request_url
612
+ }
613
+ promise = @client.make_request_async(:post, path_template, options)
614
+
615
+ promise = promise.then do |result|
616
+ http_response = result.response
617
+ status_code = http_response.status
618
+ response_content = http_response.body
619
+ unless status_code == 200
620
+ error_model = JSON.load(response_content)
621
+ fail MsRest::HttpOperationError.new(result.request, http_response, error_model)
622
+ end
623
+
624
+ result.request_id = http_response['x-ms-request-id'] unless http_response['x-ms-request-id'].nil?
625
+ # Deserialize Response
626
+ if status_code == 200
627
+ begin
628
+ parsed_response = response_content.to_s.empty? ? nil : JSON.load(response_content)
629
+ result_mapper = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppAvailabilityInfo.mapper()
529
630
  result.body = @client.deserialize(result_mapper, parsed_response)
530
631
  rescue Exception => e
531
632
  fail MsRest::DeserializationError.new('Error occurred in deserializing the response', e.message, e.backtrace, result)
@@ -128,7 +128,7 @@ module Azure::IotCentral::Mgmt::V2018_09_01
128
128
  #
129
129
  def add_telemetry
130
130
  sdk_information = 'azure_mgmt_iot_central'
131
- sdk_information = "#{sdk_information}/0.17.1"
131
+ sdk_information = "#{sdk_information}/0.17.2"
132
132
  add_user_agent_information(sdk_information)
133
133
  end
134
134
  end
@@ -6,10 +6,10 @@
6
6
  module Azure::IotCentral::Mgmt::V2018_09_01
7
7
  module Models
8
8
  #
9
- # The properties indicating whether a given IoT Central application name is
10
- # available.
9
+ # The properties indicating whether a given IoT Central application name or
10
+ # subdomain is available.
11
11
  #
12
- class AppNameAvailabilityInfo
12
+ class AppAvailabilityInfo
13
13
 
14
14
  include MsRestAzure
15
15
 
@@ -17,8 +17,7 @@ module Azure::IotCentral::Mgmt::V2018_09_01
17
17
  # is available.
18
18
  attr_accessor :name_available
19
19
 
20
- # @return [AppNameUnavailabilityReason] The reason for unavailability.
21
- # Possible values include: 'Invalid', 'AlreadyExists'
20
+ # @return [String] The reason for unavailability.
22
21
  attr_accessor :reason
23
22
 
24
23
  # @return [String] The detailed reason message.
@@ -26,17 +25,17 @@ module Azure::IotCentral::Mgmt::V2018_09_01
26
25
 
27
26
 
28
27
  #
29
- # Mapper for AppNameAvailabilityInfo class as Ruby Hash.
28
+ # Mapper for AppAvailabilityInfo class as Ruby Hash.
30
29
  # This will be used for serialization/deserialization.
31
30
  #
32
31
  def self.mapper()
33
32
  {
34
33
  client_side_validation: true,
35
34
  required: false,
36
- serialized_name: 'AppNameAvailabilityInfo',
35
+ serialized_name: 'AppAvailabilityInfo',
37
36
  type: {
38
37
  name: 'Composite',
39
- class_name: 'AppNameAvailabilityInfo',
38
+ class_name: 'AppAvailabilityInfo',
40
39
  model_properties: {
41
40
  name_available: {
42
41
  client_side_validation: true,
@@ -53,13 +52,13 @@ module Azure::IotCentral::Mgmt::V2018_09_01
53
52
  read_only: true,
54
53
  serialized_name: 'reason',
55
54
  type: {
56
- name: 'Enum',
57
- module: 'AppNameUnavailabilityReason'
55
+ name: 'String'
58
56
  }
59
57
  },
60
58
  message: {
61
59
  client_side_validation: true,
62
60
  required: false,
61
+ read_only: true,
63
62
  serialized_name: 'message',
64
63
  type: {
65
64
  name: 'String'
@@ -21,6 +21,10 @@ module Azure::IotCentral::Mgmt::V2018_09_01
21
21
  # @return [String] The target of the particular error.
22
22
  attr_accessor :target
23
23
 
24
+ # @return [Array<ErrorResponseBody>] A list of additional details about
25
+ # the error.
26
+ attr_accessor :details
27
+
24
28
 
25
29
  #
26
30
  # Mapper for ErrorDetails class as Ruby Hash.
@@ -39,7 +43,7 @@ module Azure::IotCentral::Mgmt::V2018_09_01
39
43
  client_side_validation: true,
40
44
  required: false,
41
45
  read_only: true,
42
- serialized_name: 'code',
46
+ serialized_name: 'error.code',
43
47
  type: {
44
48
  name: 'String'
45
49
  }
@@ -48,7 +52,7 @@ module Azure::IotCentral::Mgmt::V2018_09_01
48
52
  client_side_validation: true,
49
53
  required: false,
50
54
  read_only: true,
51
- serialized_name: 'message',
55
+ serialized_name: 'error.message',
52
56
  type: {
53
57
  name: 'String'
54
58
  }
@@ -57,10 +61,27 @@ module Azure::IotCentral::Mgmt::V2018_09_01
57
61
  client_side_validation: true,
58
62
  required: false,
59
63
  read_only: true,
60
- serialized_name: 'target',
64
+ serialized_name: 'error.target',
61
65
  type: {
62
66
  name: 'String'
63
67
  }
68
+ },
69
+ details: {
70
+ client_side_validation: true,
71
+ required: false,
72
+ serialized_name: 'error.details',
73
+ type: {
74
+ name: 'Sequence',
75
+ element: {
76
+ client_side_validation: true,
77
+ required: false,
78
+ serialized_name: 'ErrorResponseBodyElementType',
79
+ type: {
80
+ name: 'Composite',
81
+ class_name: 'ErrorResponseBody'
82
+ }
83
+ }
84
+ }
64
85
  }
65
86
  }
66
87
  }
@@ -0,0 +1,92 @@
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::IotCentral::Mgmt::V2018_09_01
7
+ module Models
8
+ #
9
+ # Details of error response.
10
+ #
11
+ class ErrorResponseBody
12
+
13
+ include MsRestAzure
14
+
15
+ # @return [String] The error code.
16
+ attr_accessor :code
17
+
18
+ # @return [String] The error message.
19
+ attr_accessor :message
20
+
21
+ # @return [String] The target of the particular error.
22
+ attr_accessor :target
23
+
24
+ # @return [Array<ErrorResponseBody>] A list of additional details about
25
+ # the error.
26
+ attr_accessor :details
27
+
28
+
29
+ #
30
+ # Mapper for ErrorResponseBody class as Ruby Hash.
31
+ # This will be used for serialization/deserialization.
32
+ #
33
+ def self.mapper()
34
+ {
35
+ client_side_validation: true,
36
+ required: false,
37
+ serialized_name: 'ErrorResponseBody',
38
+ type: {
39
+ name: 'Composite',
40
+ class_name: 'ErrorResponseBody',
41
+ model_properties: {
42
+ code: {
43
+ client_side_validation: true,
44
+ required: false,
45
+ read_only: true,
46
+ serialized_name: 'code',
47
+ type: {
48
+ name: 'String'
49
+ }
50
+ },
51
+ message: {
52
+ client_side_validation: true,
53
+ required: false,
54
+ read_only: true,
55
+ serialized_name: 'message',
56
+ type: {
57
+ name: 'String'
58
+ }
59
+ },
60
+ target: {
61
+ client_side_validation: true,
62
+ required: false,
63
+ read_only: true,
64
+ serialized_name: 'target',
65
+ type: {
66
+ name: 'String'
67
+ }
68
+ },
69
+ details: {
70
+ client_side_validation: true,
71
+ required: false,
72
+ serialized_name: 'details',
73
+ type: {
74
+ name: 'Sequence',
75
+ element: {
76
+ client_side_validation: true,
77
+ required: false,
78
+ serialized_name: 'ErrorResponseBodyElementType',
79
+ type: {
80
+ name: 'Composite',
81
+ class_name: 'ErrorResponseBody'
82
+ }
83
+ }
84
+ }
85
+ }
86
+ }
87
+ }
88
+ }
89
+ end
90
+ end
91
+ end
92
+ end
@@ -16,6 +16,10 @@ module Azure::IotCentral::Mgmt::V2018_09_01
16
16
  # check.
17
17
  attr_accessor :name
18
18
 
19
+ # @return [String] The type of the IoT Central resource to query. Default
20
+ # value: 'IoTApps' .
21
+ attr_accessor :type
22
+
19
23
 
20
24
  #
21
25
  # Mapper for OperationInputs class as Ruby Hash.
@@ -34,6 +38,18 @@ module Azure::IotCentral::Mgmt::V2018_09_01
34
38
  client_side_validation: true,
35
39
  required: true,
36
40
  serialized_name: 'name',
41
+ constraints: {
42
+ Pattern: '^[a-z0-9-]{1,63}$'
43
+ },
44
+ type: {
45
+ name: 'String'
46
+ }
47
+ },
48
+ type: {
49
+ client_side_validation: true,
50
+ required: false,
51
+ serialized_name: 'type',
52
+ default_value: 'IoTApps',
37
53
  type: {
38
54
  name: 'String'
39
55
  }
@@ -11,18 +11,18 @@ module Azure::IotCentral::Profiles::Latest
11
11
 
12
12
  module Models
13
13
  AppListResult = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppListResult
14
+ AppSkuInfo = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppSkuInfo
14
15
  OperationDisplay = Azure::IotCentral::Mgmt::V2018_09_01::Models::OperationDisplay
15
16
  AppPatch = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppPatch
16
17
  Operation = Azure::IotCentral::Mgmt::V2018_09_01::Models::Operation
17
- ErrorDetails = Azure::IotCentral::Mgmt::V2018_09_01::Models::ErrorDetails
18
+ ErrorResponseBody = Azure::IotCentral::Mgmt::V2018_09_01::Models::ErrorResponseBody
18
19
  OperationListResult = Azure::IotCentral::Mgmt::V2018_09_01::Models::OperationListResult
19
20
  Resource = Azure::IotCentral::Mgmt::V2018_09_01::Models::Resource
20
21
  OperationInputs = Azure::IotCentral::Mgmt::V2018_09_01::Models::OperationInputs
21
- AppSkuInfo = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppSkuInfo
22
- AppNameAvailabilityInfo = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppNameAvailabilityInfo
22
+ ErrorDetails = Azure::IotCentral::Mgmt::V2018_09_01::Models::ErrorDetails
23
+ AppAvailabilityInfo = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppAvailabilityInfo
23
24
  App = Azure::IotCentral::Mgmt::V2018_09_01::Models::App
24
25
  AppSku = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppSku
25
- AppNameUnavailabilityReason = Azure::IotCentral::Mgmt::V2018_09_01::Models::AppNameUnavailabilityReason
26
26
  end
27
27
 
28
28
  #
@@ -74,6 +74,9 @@ module Azure::IotCentral::Profiles::Latest
74
74
  def app_list_result
75
75
  Azure::IotCentral::Mgmt::V2018_09_01::Models::AppListResult
76
76
  end
77
+ def app_sku_info
78
+ Azure::IotCentral::Mgmt::V2018_09_01::Models::AppSkuInfo
79
+ end
77
80
  def operation_display
78
81
  Azure::IotCentral::Mgmt::V2018_09_01::Models::OperationDisplay
79
82
  end
@@ -83,8 +86,8 @@ module Azure::IotCentral::Profiles::Latest
83
86
  def operation
84
87
  Azure::IotCentral::Mgmt::V2018_09_01::Models::Operation
85
88
  end
86
- def error_details
87
- Azure::IotCentral::Mgmt::V2018_09_01::Models::ErrorDetails
89
+ def error_response_body
90
+ Azure::IotCentral::Mgmt::V2018_09_01::Models::ErrorResponseBody
88
91
  end
89
92
  def operation_list_result
90
93
  Azure::IotCentral::Mgmt::V2018_09_01::Models::OperationListResult
@@ -95,11 +98,11 @@ module Azure::IotCentral::Profiles::Latest
95
98
  def operation_inputs
96
99
  Azure::IotCentral::Mgmt::V2018_09_01::Models::OperationInputs
97
100
  end
98
- def app_sku_info
99
- Azure::IotCentral::Mgmt::V2018_09_01::Models::AppSkuInfo
101
+ def error_details
102
+ Azure::IotCentral::Mgmt::V2018_09_01::Models::ErrorDetails
100
103
  end
101
- def app_name_availability_info
102
- Azure::IotCentral::Mgmt::V2018_09_01::Models::AppNameAvailabilityInfo
104
+ def app_availability_info
105
+ Azure::IotCentral::Mgmt::V2018_09_01::Models::AppAvailabilityInfo
103
106
  end
104
107
  def app
105
108
  Azure::IotCentral::Mgmt::V2018_09_01::Models::App
@@ -107,9 +110,6 @@ module Azure::IotCentral::Profiles::Latest
107
110
  def app_sku
108
111
  Azure::IotCentral::Mgmt::V2018_09_01::Models::AppSku
109
112
  end
110
- def app_name_unavailability_reason
111
- Azure::IotCentral::Mgmt::V2018_09_01::Models::AppNameUnavailabilityReason
112
- end
113
113
  end
114
114
  end
115
115
  end
@@ -3,5 +3,5 @@
3
3
  # Licensed under the MIT License. See License.txt in the project root for license information.
4
4
 
5
5
  module Azure::IotCentral::Mgmt
6
- VERSION = '0.17.1'
6
+ VERSION = '0.17.2'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_mgmt_iot_central
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.1
4
+ version: 0.17.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2018-09-14 00:00:00.000000000 Z
11
+ date: 2018-10-30 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -109,13 +109,13 @@ files:
109
109
  - lib/2018-09-01/generated/azure_mgmt_iot_central/apps.rb
110
110
  - lib/2018-09-01/generated/azure_mgmt_iot_central/iot_central_client.rb
111
111
  - lib/2018-09-01/generated/azure_mgmt_iot_central/models/app.rb
112
+ - lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_availability_info.rb
112
113
  - lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_list_result.rb
113
- - lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_name_availability_info.rb
114
- - lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_name_unavailability_reason.rb
115
114
  - lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_patch.rb
116
115
  - lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_sku.rb
117
116
  - lib/2018-09-01/generated/azure_mgmt_iot_central/models/app_sku_info.rb
118
117
  - lib/2018-09-01/generated/azure_mgmt_iot_central/models/error_details.rb
118
+ - lib/2018-09-01/generated/azure_mgmt_iot_central/models/error_response_body.rb
119
119
  - lib/2018-09-01/generated/azure_mgmt_iot_central/models/operation.rb
120
120
  - lib/2018-09-01/generated/azure_mgmt_iot_central/models/operation_display.rb
121
121
  - lib/2018-09-01/generated/azure_mgmt_iot_central/models/operation_inputs.rb
@@ -1,16 +0,0 @@
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::IotCentral::Mgmt::V2018_09_01
7
- module Models
8
- #
9
- # Defines values for AppNameUnavailabilityReason
10
- #
11
- module AppNameUnavailabilityReason
12
- Invalid = "Invalid"
13
- AlreadyExists = "AlreadyExists"
14
- end
15
- end
16
- end