google-apis-netapp_v1 0.3.0 → 0.4.0

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
2
  SHA256:
3
- metadata.gz: 91f4033e3504bd091ac425bf73dee32768f64c15d97bf4049a8604c57f20c71b
4
- data.tar.gz: 49051a9051cb604f5dba3bd7edeaf9c2dcc98849549acabbfa52dd60249a2445
3
+ metadata.gz: 0cac59b22c4fd5a3cc0efb9120e2bc12868fd966fefa243aba4f9cdfa3062d2a
4
+ data.tar.gz: abf869706be34ff0eebb2e3dde69b596ccad42fc64e0d3d87e8cfd4b063ec2dd
5
5
  SHA512:
6
- metadata.gz: c4d5f1027f1b6e3de7aa9e9413e07cd68f6ec7a14e12c38402e61df6a3abcc363d3ef2f6c5d44b63a3f38d5ebb551aed5559f5c4f71fccc798e6f29a8381f1e0
7
- data.tar.gz: 17a26ff58a5085a3fb4407b83094cad5b5db7c9a5446c3b69c715a9883e17076368ad189f906c130ba245d24b95148f7cbef91230758c50340c242d9677656c1
6
+ metadata.gz: 1266a90a93e124a6845877b8bd89689a12f17de8d9ffe03f01a9f5af40134ab89a86635a95ef6d40efa58bcce5eea1bd63d4e16a7e16e6c78e11a7af0a648a5d
7
+ data.tar.gz: 2e58e9e2a2076ec4d277e2847832574257793e50eeba586cbacfd05a8605b985a6ab9c6e2ff3db2a48d31cc722a9dbd343ff13547d8c9525855bfd039efd8e60
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-netapp_v1
2
2
 
3
+ ### v0.4.0 (2024-12-22)
4
+
5
+ * Regenerated from discovery document revision 20241209
6
+
3
7
  ### v0.3.0 (2024-12-15)
4
8
 
5
9
  * Regenerated from discovery document revision 20241203
@@ -217,6 +217,18 @@ module Google
217
217
  # @return [String]
218
218
  attr_accessor :name
219
219
 
220
+ # Output only. Reserved for future use
221
+ # Corresponds to the JSON property `satisfiesPzi`
222
+ # @return [Boolean]
223
+ attr_accessor :satisfies_pzi
224
+ alias_method :satisfies_pzi?, :satisfies_pzi
225
+
226
+ # Output only. Reserved for future use
227
+ # Corresponds to the JSON property `satisfiesPzs`
228
+ # @return [Boolean]
229
+ attr_accessor :satisfies_pzs
230
+ alias_method :satisfies_pzs?, :satisfies_pzs
231
+
220
232
  # If specified, backup will be created from the given snapshot. If not specified,
221
233
  # there will be a new snapshot taken to initiate the backup creation. Format: `
222
234
  # projects/`project_id`/locations/`location`/volumes/`volume_id`/snapshots/`
@@ -255,6 +267,8 @@ module Google
255
267
  @description = args[:description] if args.key?(:description)
256
268
  @labels = args[:labels] if args.key?(:labels)
257
269
  @name = args[:name] if args.key?(:name)
270
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
271
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
258
272
  @source_snapshot = args[:source_snapshot] if args.key?(:source_snapshot)
259
273
  @source_volume = args[:source_volume] if args.key?(:source_volume)
260
274
  @state = args[:state] if args.key?(:state)
@@ -1956,6 +1970,18 @@ module Google
1956
1970
  # @return [String]
1957
1971
  attr_accessor :replica_zone
1958
1972
 
1973
+ # Output only. Reserved for future use
1974
+ # Corresponds to the JSON property `satisfiesPzi`
1975
+ # @return [Boolean]
1976
+ attr_accessor :satisfies_pzi
1977
+ alias_method :satisfies_pzi?, :satisfies_pzi
1978
+
1979
+ # Output only. Reserved for future use
1980
+ # Corresponds to the JSON property `satisfiesPzs`
1981
+ # @return [Boolean]
1982
+ attr_accessor :satisfies_pzs
1983
+ alias_method :satisfies_pzs?, :satisfies_pzs
1984
+
1959
1985
  # Required. Service level of the storage pool
1960
1986
  # Corresponds to the JSON property `serviceLevel`
1961
1987
  # @return [String]
@@ -2006,6 +2032,8 @@ module Google
2006
2032
  @network = args[:network] if args.key?(:network)
2007
2033
  @psa_range = args[:psa_range] if args.key?(:psa_range)
2008
2034
  @replica_zone = args[:replica_zone] if args.key?(:replica_zone)
2035
+ @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
2036
+ @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
2009
2037
  @service_level = args[:service_level] if args.key?(:service_level)
2010
2038
  @state = args[:state] if args.key?(:state)
2011
2039
  @state_details = args[:state_details] if args.key?(:state_details)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NetappV1
18
18
  # Version of the google-apis-netapp_v1 gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.15.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241203"
25
+ REVISION = "20241209"
26
26
  end
27
27
  end
28
28
  end
@@ -377,6 +377,8 @@ module Google
377
377
  property :description, as: 'description'
378
378
  hash :labels, as: 'labels'
379
379
  property :name, as: 'name'
380
+ property :satisfies_pzi, as: 'satisfiesPzi'
381
+ property :satisfies_pzs, as: 'satisfiesPzs'
380
382
  property :source_snapshot, as: 'sourceSnapshot'
381
383
  property :source_volume, as: 'sourceVolume'
382
384
  property :state, as: 'state'
@@ -827,6 +829,8 @@ module Google
827
829
  property :network, as: 'network'
828
830
  property :psa_range, as: 'psaRange'
829
831
  property :replica_zone, as: 'replicaZone'
832
+ property :satisfies_pzi, as: 'satisfiesPzi'
833
+ property :satisfies_pzs, as: 'satisfiesPzs'
830
834
  property :service_level, as: 'serviceLevel'
831
835
  property :state, as: 'state'
832
836
  property :state_details, as: 'stateDetails'
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-netapp_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-12-15 00:00:00.000000000 Z
11
+ date: 2025-01-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-netapp_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.4.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-netapp_v1
63
63
  post_install_message:
64
64
  rdoc_options: []