azure_mgmt_storage 0.17.0 → 0.17.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: c7266d3dd9c321fefd2f2f168af46ca756c5ba37
4
- data.tar.gz: 2075744fdc78164a618c98d06d17b0f221784dca
2
+ SHA256:
3
+ metadata.gz: 949a93368ee52f9c504c6c6322923cfc0fd0eacb2d9a46a9382cffe5845f382f
4
+ data.tar.gz: b9737af6ff3bc8c182c2141edbee42c5c0df20f2f6f8e4f11b64730c035eb8cb
5
5
  SHA512:
6
- metadata.gz: d036564a0e1b3110c7f3438ad81335de2dfdefd6cf701a0b076ecc1884f7582bcd835bbddcfa152aa5709070682e45d9bc6d3b3574d717a9b210e79d812b84f1
7
- data.tar.gz: 4e77f3d5f0c34821d5093e9a3a5f6616df02aa4fdca6aa1201170aa5894db5e667ff7a526ba649a5f8cf7d080537b48b6b9d49809ef5c6fc014368db6858ce72
6
+ metadata.gz: 8c0670c1bccbbbe5c58a0c352d4f3e093916a6f7e37879778178fdecd5e6caba400130f8860f9fe656ca90d4a587bb3048451dab2df75ab32118fd41906c6acc
7
+ data.tar.gz: 2b73b353d11a83f6e1dcd73f6c54d8005a3f4a14f65c1aab06291ef3cd7e6e2edbb2e1f2e91ed46ae4cbea05b99bf7b358a1f704b57951ac66c2e21d54dedad3
@@ -29,6 +29,15 @@ module Azure::Storage::Mgmt::V2015_05_01_preview
29
29
  attr_accessor :tags
30
30
 
31
31
 
32
+ # @return [String] the name of the resource group of the resource.
33
+ def resource_group
34
+ unless self.id.nil?
35
+ groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/)
36
+ groups.captures[0].strip if groups
37
+ end
38
+ end
39
+
40
+
32
41
  #
33
42
  # Mapper for Resource class as Ruby Hash.
34
43
  # This will be used for serialization/deserialization.
@@ -130,7 +130,7 @@ module Azure::Storage::Mgmt::V2015_05_01_preview
130
130
  #
131
131
  def add_telemetry
132
132
  sdk_information = 'azure_mgmt_storage'
133
- sdk_information = "#{sdk_information}/0.17.0"
133
+ sdk_information = "#{sdk_information}/0.17.1"
134
134
  add_user_agent_information(sdk_information)
135
135
  end
136
136
  end
@@ -28,6 +28,15 @@ module Azure::Storage::Mgmt::V2015_06_15
28
28
  attr_accessor :tags
29
29
 
30
30
 
31
+ # @return [String] the name of the resource group of the resource.
32
+ def resource_group
33
+ unless self.id.nil?
34
+ groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/)
35
+ groups.captures[0].strip if groups
36
+ end
37
+ end
38
+
39
+
31
40
  #
32
41
  # Mapper for Resource class as Ruby Hash.
33
42
  # This will be used for serialization/deserialization.
@@ -130,7 +130,7 @@ module Azure::Storage::Mgmt::V2015_06_15
130
130
  #
131
131
  def add_telemetry
132
132
  sdk_information = 'azure_mgmt_storage'
133
- sdk_information = "#{sdk_information}/0.17.0"
133
+ sdk_information = "#{sdk_information}/0.17.1"
134
134
  add_user_agent_information(sdk_information)
135
135
  end
136
136
  end
@@ -30,6 +30,15 @@ module Azure::Storage::Mgmt::V2016_01_01
30
30
  attr_accessor :tags
31
31
 
32
32
 
33
+ # @return [String] the name of the resource group of the resource.
34
+ def resource_group
35
+ unless self.id.nil?
36
+ groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/)
37
+ groups.captures[0].strip if groups
38
+ end
39
+ end
40
+
41
+
33
42
  #
34
43
  # Mapper for Resource class as Ruby Hash.
35
44
  # This will be used for serialization/deserialization.
@@ -130,7 +130,7 @@ module Azure::Storage::Mgmt::V2016_01_01
130
130
  #
131
131
  def add_telemetry
132
132
  sdk_information = 'azure_mgmt_storage'
133
- sdk_information = "#{sdk_information}/0.17.0"
133
+ sdk_information = "#{sdk_information}/0.17.1"
134
134
  add_user_agent_information(sdk_information)
135
135
  end
136
136
  end
@@ -29,6 +29,15 @@ module Azure::Storage::Mgmt::V2016_12_01
29
29
  attr_accessor :tags
30
30
 
31
31
 
32
+ # @return [String] the name of the resource group of the resource.
33
+ def resource_group
34
+ unless self.id.nil?
35
+ groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/)
36
+ groups.captures[0].strip if groups
37
+ end
38
+ end
39
+
40
+
32
41
  #
33
42
  # Mapper for Resource class as Ruby Hash.
34
43
  # This will be used for serialization/deserialization.
@@ -130,7 +130,7 @@ module Azure::Storage::Mgmt::V2016_12_01
130
130
  #
131
131
  def add_telemetry
132
132
  sdk_information = 'azure_mgmt_storage'
133
- sdk_information = "#{sdk_information}/0.17.0"
133
+ sdk_information = "#{sdk_information}/0.17.1"
134
134
  add_user_agent_information(sdk_information)
135
135
  end
136
136
  end
@@ -29,6 +29,15 @@ module Azure::Storage::Mgmt::V2017_06_01
29
29
  attr_accessor :tags
30
30
 
31
31
 
32
+ # @return [String] the name of the resource group of the resource.
33
+ def resource_group
34
+ unless self.id.nil?
35
+ groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/)
36
+ groups.captures[0].strip if groups
37
+ end
38
+ end
39
+
40
+
32
41
  #
33
42
  # Mapper for Resource class as Ruby Hash.
34
43
  # This will be used for serialization/deserialization.
@@ -138,7 +138,7 @@ module Azure::Storage::Mgmt::V2017_06_01
138
138
  #
139
139
  def add_telemetry
140
140
  sdk_information = 'azure_mgmt_storage'
141
- sdk_information = "#{sdk_information}/0.17.0"
141
+ sdk_information = "#{sdk_information}/0.17.1"
142
142
  add_user_agent_information(sdk_information)
143
143
  end
144
144
  end
@@ -29,6 +29,15 @@ module Azure::Storage::Mgmt::V2017_10_01
29
29
  attr_accessor :tags
30
30
 
31
31
 
32
+ # @return [String] the name of the resource group of the resource.
33
+ def resource_group
34
+ unless self.id.nil?
35
+ groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/)
36
+ groups.captures[0].strip if groups
37
+ end
38
+ end
39
+
40
+
32
41
  #
33
42
  # Mapper for Resource class as Ruby Hash.
34
43
  # This will be used for serialization/deserialization.
@@ -138,7 +138,7 @@ module Azure::Storage::Mgmt::V2017_10_01
138
138
  #
139
139
  def add_telemetry
140
140
  sdk_information = 'azure_mgmt_storage'
141
- sdk_information = "#{sdk_information}/0.17.0"
141
+ sdk_information = "#{sdk_information}/0.17.1"
142
142
  add_user_agent_information(sdk_information)
143
143
  end
144
144
  end
@@ -25,6 +25,15 @@ module Azure::Storage::Mgmt::V2018_02_01
25
25
  attr_accessor :type
26
26
 
27
27
 
28
+ # @return [String] the name of the resource group of the resource.
29
+ def resource_group
30
+ unless self.id.nil?
31
+ groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/)
32
+ groups.captures[0].strip if groups
33
+ end
34
+ end
35
+
36
+
28
37
  #
29
38
  # Mapper for Resource class as Ruby Hash.
30
39
  # This will be used for serialization/deserialization.
@@ -140,7 +140,7 @@ module Azure::Storage::Mgmt::V2018_02_01
140
140
  #
141
141
  def add_telemetry
142
142
  sdk_information = 'azure_mgmt_storage'
143
- sdk_information = "#{sdk_information}/0.17.0"
143
+ sdk_information = "#{sdk_information}/0.17.1"
144
144
  add_user_agent_information(sdk_information)
145
145
  end
146
146
  end
@@ -25,6 +25,15 @@ module Azure::Storage::Mgmt::V2018_03_01_preview
25
25
  attr_accessor :type
26
26
 
27
27
 
28
+ # @return [String] the name of the resource group of the resource.
29
+ def resource_group
30
+ unless self.id.nil?
31
+ groups = self.id.match(/.+\/resourceGroups\/([^\/]+)\/.+/)
32
+ groups.captures[0].strip if groups
33
+ end
34
+ end
35
+
36
+
28
37
  #
29
38
  # Mapper for Resource class as Ruby Hash.
30
39
  # This will be used for serialization/deserialization.
@@ -140,7 +140,7 @@ module Azure::Storage::Mgmt::V2018_03_01_preview
140
140
  #
141
141
  def add_telemetry
142
142
  sdk_information = 'azure_mgmt_storage'
143
- sdk_information = "#{sdk_information}/0.17.0"
143
+ sdk_information = "#{sdk_information}/0.17.1"
144
144
  add_user_agent_information(sdk_information)
145
145
  end
146
146
  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::Storage::Mgmt
6
- VERSION = '0.17.0'
6
+ VERSION = '0.17.1'
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: azure_mgmt_storage
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.17.0
4
+ version: 0.17.1
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-07-31 00:00:00.000000000 Z
11
+ date: 2018-09-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -539,7 +539,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
539
539
  version: '0'
540
540
  requirements: []
541
541
  rubyforge_project:
542
- rubygems_version: 2.5.1
542
+ rubygems_version: 2.7.6
543
543
  signing_key:
544
544
  specification_version: 4
545
545
  summary: Official ruby client library to consume Microsoft Azure Storage Management