azure_mgmt_operational_insights 0.19.2 → 0.19.3

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
  SHA256:
3
- metadata.gz: 9499c4849c0f3ea6148a2547932f2d055cc9fbca12c0ef3681791edf803ce403
4
- data.tar.gz: a0d88bda97c122553aba6b1b09be50efcd2c0647e8c788c4d34f739c69ec5929
3
+ metadata.gz: 4bc74c882caf36507e4eeec871d76b492daa6dce778dcd3e12fca3be98358115
4
+ data.tar.gz: a57933badbc8820d7a04d9216f4054798458f8b745bfe741b10f35f2554d4f34
5
5
  SHA512:
6
- metadata.gz: acc4f15461d46d2cfa111d38b3612d8eda362ba13634699f8700c3ca7864e0b7000bea36eafafc623c00e24c872f9c97fa381e917120b857bb1703fd7aa8b870
7
- data.tar.gz: b89b5e485e8c1e810360a8e2cb06b5810fd69f81f1dc8ab4938b7679c2589785815865d230656f2fe82072af3bbfac27690609e401550587a50873f8a0a28040
6
+ metadata.gz: 1be6b2c086aeecad1463db217c0c90cb2908c4a8447787b8075600c8bf58816a0ae38729f26ba4d58678579cf66674ae0b92d913625cf4ebcca845e48fc5a66d
7
+ data.tar.gz: f738e394062fe000f1fa86c554ff2d339b0d9d84a8022a5ac16f3d7582c76ba599a9f7354bfe549e32d2a2e03b4e174d3fa87d77231546ca9be0b169a92bb785
@@ -144,7 +144,7 @@ module Azure::OperationalInsights::Mgmt::V2015_03_20
144
144
  #
145
145
  def add_telemetry
146
146
  sdk_information = 'azure_mgmt_operational_insights'
147
- sdk_information = "#{sdk_information}/0.19.2"
147
+ sdk_information = "#{sdk_information}/0.19.3"
148
148
  add_user_agent_information(sdk_information)
149
149
  end
150
150
  end
@@ -232,7 +232,7 @@ module Azure::OperationalInsights::Mgmt::V2015_11_01_preview
232
232
  #
233
233
  def add_telemetry
234
234
  sdk_information = 'azure_mgmt_operational_insights'
235
- sdk_information = "#{sdk_information}/0.19.2"
235
+ sdk_information = "#{sdk_information}/0.19.3"
236
236
  add_user_agent_information(sdk_information)
237
237
  end
238
238
  end
@@ -200,7 +200,7 @@ module Azure::OperationalInsights::Mgmt::V2020_03_01_preview
200
200
  #
201
201
  def add_telemetry
202
202
  sdk_information = 'azure_mgmt_operational_insights'
203
- sdk_information = "#{sdk_information}/0.19.2"
203
+ sdk_information = "#{sdk_information}/0.19.3"
204
204
  add_user_agent_information(sdk_information)
205
205
  end
206
206
  end
@@ -6,7 +6,9 @@
6
6
  module Azure::OperationalInsights::Mgmt::V2020_08_01
7
7
  module Models
8
8
  #
9
- # The resource model definition for a Azure Resource Manager resource with
9
+ # Entity Resource
10
+
11
+ # The resource model definition for an Azure Resource Manager resource with
10
12
  # an etag.
11
13
  #
12
14
  class AzureEntityResource < Resource
@@ -6,7 +6,11 @@
6
6
  module Azure::OperationalInsights::Mgmt::V2020_08_01
7
7
  module Models
8
8
  #
9
- # The resource management error response.
9
+ # Error Response
10
+
11
+ # Common error response for all Azure Resource Manager APIs to return error
12
+ # details for failed operations. (This also follows the OData error
13
+ # response format.)
10
14
  #
11
15
  class ErrorResponse
12
16
 
@@ -6,8 +6,10 @@
6
6
  module Azure::OperationalInsights::Mgmt::V2020_08_01
7
7
  module Models
8
8
  #
9
- # The resource model definition for a ARM proxy resource. It will have
10
- # everything other than required location and tags
9
+ # Proxy Resource
10
+
11
+ # The resource model definition for a Azure Resource Manager proxy
12
+ # resource. It will not have tags and a location
11
13
  #
12
14
  class ProxyResource < Resource
13
15
 
@@ -6,22 +6,25 @@
6
6
  module Azure::OperationalInsights::Mgmt::V2020_08_01
7
7
  module Models
8
8
  #
9
- # Model object.
10
- #
9
+ # Resource
10
+
11
+ # Common fields that are returned in the response for all Azure Resource
12
+ # Manager resources
11
13
  #
12
14
  class Resource
13
15
 
14
16
  include MsRestAzure
15
17
 
16
- # @return [String] Fully qualified resource Id for the resource. Ex -
18
+ # @return [String] Fully qualified resource ID for the resource. Ex -
17
19
  # /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
18
20
  attr_accessor :id
19
21
 
20
22
  # @return [String] The name of the resource
21
23
  attr_accessor :name
22
24
 
23
- # @return [String] The type of the resource. Ex-
24
- # Microsoft.Compute/virtualMachines or Microsoft.Storage/storageAccounts.
25
+ # @return [String] The type of the resource. E.g.
26
+ # "Microsoft.Compute/virtualMachines" or
27
+ # "Microsoft.Storage/storageAccounts"
25
28
  attr_accessor :type
26
29
 
27
30
 
@@ -6,7 +6,10 @@
6
6
  module Azure::OperationalInsights::Mgmt::V2020_08_01
7
7
  module Models
8
8
  #
9
- # The resource model definition for a ARM tracked top level resource
9
+ # Tracked Resource
10
+
11
+ # The resource model definition for an Azure Resource Manager tracked top
12
+ # level resource which has 'tags' and a 'location'
10
13
  #
11
14
  class TrackedResource < Resource
12
15
 
@@ -200,7 +200,7 @@ module Azure::OperationalInsights::Mgmt::V2020_08_01
200
200
  #
201
201
  def add_telemetry
202
202
  sdk_information = 'azure_mgmt_operational_insights'
203
- sdk_information = "#{sdk_information}/0.19.2"
203
+ sdk_information = "#{sdk_information}/0.19.3"
204
204
  add_user_agent_information(sdk_information)
205
205
  end
206
206
  end
@@ -4,6 +4,6 @@
4
4
 
5
5
  require '2020-08-01/generated/azure_mgmt_operational_insights'
6
6
  require '2015-03-20/generated/azure_mgmt_operational_insights'
7
- require '2020-03-01-preview/generated/azure_mgmt_operational_insights'
8
7
  require '2015-11-01-preview/generated/azure_mgmt_operational_insights'
8
+ require '2020-03-01-preview/generated/azure_mgmt_operational_insights'
9
9
  require 'profiles/latest/operationalinsights_latest_profile_client'
@@ -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::OperationalInsights::Mgmt
6
- VERSION = '0.19.2'
6
+ VERSION = '0.19.3'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_mgmt_operational_insights
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.19.2
4
+ version: 0.19.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Microsoft Corporation
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-09-08 00:00:00.000000000 Z
11
+ date: 2020-11-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -384,7 +384,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
384
384
  version: '0'
385
385
  requirements: []
386
386
  rubyforge_project:
387
- rubygems_version: 2.7.8
387
+ rubygems_version: 2.7.10
388
388
  signing_key:
389
389
  specification_version: 4
390
390
  summary: Official Ruby client library to consume Microsoft Azure Operational Insights.