google-apis-netapp_v1 0.11.0 → 0.13.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: 6032ea6c38ef89fc3081a3740733bc14cd22d74fed5876a8d5ce650f4b426c94
4
- data.tar.gz: 6577185e091c3f377d4415e5818f38412184688ac60d1a21dec54b4d9c7d7e69
3
+ metadata.gz: 5141851a5320ccc9c9cfe79833a21070f3f436dcc249e6bde7838ec87a22debb
4
+ data.tar.gz: a298c18e92185dfb80b36a291b43245015b4c431650034345e8cdcd5b81cfe2e
5
5
  SHA512:
6
- metadata.gz: fe92d4125bcc208a731b815d296273a52af09f65d30ab54accd6b6080c4f95c3c13a02e58a705fb65516ff15d765a8af24b3bf024d6455cdced19513cc475b90
7
- data.tar.gz: 489c4e8bbde04de18c2d2c9c3dacf7883d083612847dc7e3bf81d13a1b86640e07cb59c659466cc431fb4f115929a5b0d5995844fa629f9d0fd77d2eacb2f74a
6
+ metadata.gz: 861e9f7159ded818bd7d3d111bfa34c872cc689b3c7489b084b8e25c8bf988d64313b85b87300e5bcc41f7cfd43fd98b3126d0e190d81bc9ad7a2995f6b07f6b
7
+ data.tar.gz: c2be127c19ff570513bae08e2d16e9dbb909549123cfd1b57fc370d75eaf832dcd8459c9931ca79cdf3ed1df4e8351f6f5171d0060d9420a2a5a5fd86fc75189
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-netapp_v1
2
2
 
3
+ ### v0.13.0 (2025-08-17)
4
+
5
+ * Regenerated from discovery document revision 20250813
6
+
7
+ ### v0.12.0 (2025-06-15)
8
+
9
+ * Regenerated from discovery document revision 20250604
10
+
3
11
  ### v0.11.0 (2025-06-08)
4
12
 
5
13
  * Regenerated from discovery document revision 20250528
@@ -2162,6 +2162,11 @@ module Google
2162
2162
  attr_accessor :allow_auto_tiering
2163
2163
  alias_method :allow_auto_tiering?, :allow_auto_tiering
2164
2164
 
2165
+ # Output only. Available throughput of the storage pool (in MiB/s).
2166
+ # Corresponds to the JSON property `availableThroughputMibps`
2167
+ # @return [Float]
2168
+ attr_accessor :available_throughput_mibps
2169
+
2165
2170
  # Required. Capacity in GIB of the pool
2166
2171
  # Corresponds to the JSON property `capacityGib`
2167
2172
  # @return [Fixnum]
@@ -2184,6 +2189,15 @@ module Google
2184
2189
  # @return [String]
2185
2190
  attr_accessor :description
2186
2191
 
2192
+ # Optional. Flag indicating that the hot-tier threshold will be auto-increased
2193
+ # by 10% of the hot-tier when it hits 100%. Default is true. The increment will
2194
+ # kick in only if the new size after increment is still less than or equal to
2195
+ # storage pool size.
2196
+ # Corresponds to the JSON property `enableHotTierAutoResize`
2197
+ # @return [Boolean]
2198
+ attr_accessor :enable_hot_tier_auto_resize
2199
+ alias_method :enable_hot_tier_auto_resize?, :enable_hot_tier_auto_resize
2200
+
2187
2201
  # Output only. Specifies the current pool encryption key source.
2188
2202
  # Corresponds to the JSON property `encryptionType`
2189
2203
  # @return [String]
@@ -2196,6 +2210,14 @@ module Google
2196
2210
  attr_accessor :global_access_allowed
2197
2211
  alias_method :global_access_allowed?, :global_access_allowed
2198
2212
 
2213
+ # Optional. Total hot tier capacity for the Storage Pool. It is applicable only
2214
+ # to Flex service level. It should be less than the minimum storage pool size
2215
+ # and cannot be more than the current storage pool size. It cannot be decreased
2216
+ # once set.
2217
+ # Corresponds to the JSON property `hotTierSizeGib`
2218
+ # @return [Fixnum]
2219
+ attr_accessor :hot_tier_size_gib
2220
+
2199
2221
  # Optional. Specifies the KMS config to be used for volume encryption.
2200
2222
  # Corresponds to the JSON property `kmsConfig`
2201
2223
  # @return [String]
@@ -2229,6 +2251,11 @@ module Google
2229
2251
  # @return [String]
2230
2252
  attr_accessor :psa_range
2231
2253
 
2254
+ # Optional. QoS (Quality of Service) Type of the storage pool
2255
+ # Corresponds to the JSON property `qosType`
2256
+ # @return [String]
2257
+ attr_accessor :qos_type
2258
+
2232
2259
  # Optional. Specifies the replica zone for regional storagePool.
2233
2260
  # Corresponds to the JSON property `replicaZone`
2234
2261
  # @return [String]
@@ -2295,18 +2322,22 @@ module Google
2295
2322
  def update!(**args)
2296
2323
  @active_directory = args[:active_directory] if args.key?(:active_directory)
2297
2324
  @allow_auto_tiering = args[:allow_auto_tiering] if args.key?(:allow_auto_tiering)
2325
+ @available_throughput_mibps = args[:available_throughput_mibps] if args.key?(:available_throughput_mibps)
2298
2326
  @capacity_gib = args[:capacity_gib] if args.key?(:capacity_gib)
2299
2327
  @create_time = args[:create_time] if args.key?(:create_time)
2300
2328
  @custom_performance_enabled = args[:custom_performance_enabled] if args.key?(:custom_performance_enabled)
2301
2329
  @description = args[:description] if args.key?(:description)
2330
+ @enable_hot_tier_auto_resize = args[:enable_hot_tier_auto_resize] if args.key?(:enable_hot_tier_auto_resize)
2302
2331
  @encryption_type = args[:encryption_type] if args.key?(:encryption_type)
2303
2332
  @global_access_allowed = args[:global_access_allowed] if args.key?(:global_access_allowed)
2333
+ @hot_tier_size_gib = args[:hot_tier_size_gib] if args.key?(:hot_tier_size_gib)
2304
2334
  @kms_config = args[:kms_config] if args.key?(:kms_config)
2305
2335
  @labels = args[:labels] if args.key?(:labels)
2306
2336
  @ldap_enabled = args[:ldap_enabled] if args.key?(:ldap_enabled)
2307
2337
  @name = args[:name] if args.key?(:name)
2308
2338
  @network = args[:network] if args.key?(:network)
2309
2339
  @psa_range = args[:psa_range] if args.key?(:psa_range)
2340
+ @qos_type = args[:qos_type] if args.key?(:qos_type)
2310
2341
  @replica_zone = args[:replica_zone] if args.key?(:replica_zone)
2311
2342
  @satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
2312
2343
  @satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
@@ -2358,6 +2389,13 @@ module Google
2358
2389
  # @return [Fixnum]
2359
2390
  attr_accessor :cooling_threshold_days
2360
2391
 
2392
+ # Optional. Flag indicating that the hot tier bypass mode is enabled. Default is
2393
+ # false. This is only applicable to Flex service level.
2394
+ # Corresponds to the JSON property `hotTierBypassModeEnabled`
2395
+ # @return [Boolean]
2396
+ attr_accessor :hot_tier_bypass_mode_enabled
2397
+ alias_method :hot_tier_bypass_mode_enabled?, :hot_tier_bypass_mode_enabled
2398
+
2361
2399
  # Optional. Flag indicating if the volume has tiering policy enable/pause.
2362
2400
  # Default is PAUSED.
2363
2401
  # Corresponds to the JSON property `tierAction`
@@ -2371,6 +2409,7 @@ module Google
2371
2409
  # Update properties of this object
2372
2410
  def update!(**args)
2373
2411
  @cooling_threshold_days = args[:cooling_threshold_days] if args.key?(:cooling_threshold_days)
2412
+ @hot_tier_bypass_mode_enabled = args[:hot_tier_bypass_mode_enabled] if args.key?(:hot_tier_bypass_mode_enabled)
2374
2413
  @tier_action = args[:tier_action] if args.key?(:tier_action)
2375
2414
  end
2376
2415
  end
@@ -2523,7 +2562,7 @@ module Google
2523
2562
  # @return [Fixnum]
2524
2563
  attr_accessor :capacity_gib
2525
2564
 
2526
- # Output only. Size of the volume cold tier data in GiB.
2565
+ # Output only. Size of the volume cold tier data rounded down to the nearest GiB.
2527
2566
  # Corresponds to the JSON property `coldTierSizeGib`
2528
2567
  # @return [Fixnum]
2529
2568
  attr_accessor :cold_tier_size_gib
@@ -2694,6 +2733,11 @@ module Google
2694
2733
  # @return [String]
2695
2734
  attr_accessor :storage_pool
2696
2735
 
2736
+ # Optional. Throughput of the volume (in MiB/s)
2737
+ # Corresponds to the JSON property `throughputMibps`
2738
+ # @return [Float]
2739
+ attr_accessor :throughput_mibps
2740
+
2697
2741
  # Defines tiering policy for the volume.
2698
2742
  # Corresponds to the JSON property `tieringPolicy`
2699
2743
  # @return [Google::Apis::NetappV1::TieringPolicy]
@@ -2756,6 +2800,7 @@ module Google
2756
2800
  @state = args[:state] if args.key?(:state)
2757
2801
  @state_details = args[:state_details] if args.key?(:state_details)
2758
2802
  @storage_pool = args[:storage_pool] if args.key?(:storage_pool)
2803
+ @throughput_mibps = args[:throughput_mibps] if args.key?(:throughput_mibps)
2759
2804
  @tiering_policy = args[:tiering_policy] if args.key?(:tiering_policy)
2760
2805
  @unix_permissions = args[:unix_permissions] if args.key?(:unix_permissions)
2761
2806
  @used_gib = args[:used_gib] if args.key?(:used_gib)
@@ -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.11.0"
19
+ GEM_VERSION = "0.13.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250528"
25
+ REVISION = "20250813"
26
26
  end
27
27
  end
28
28
  end
@@ -887,18 +887,22 @@ module Google
887
887
  class Representation < Google::Apis::Core::JsonRepresentation
888
888
  property :active_directory, as: 'activeDirectory'
889
889
  property :allow_auto_tiering, as: 'allowAutoTiering'
890
+ property :available_throughput_mibps, as: 'availableThroughputMibps'
890
891
  property :capacity_gib, :numeric_string => true, as: 'capacityGib'
891
892
  property :create_time, as: 'createTime'
892
893
  property :custom_performance_enabled, as: 'customPerformanceEnabled'
893
894
  property :description, as: 'description'
895
+ property :enable_hot_tier_auto_resize, as: 'enableHotTierAutoResize'
894
896
  property :encryption_type, as: 'encryptionType'
895
897
  property :global_access_allowed, as: 'globalAccessAllowed'
898
+ property :hot_tier_size_gib, :numeric_string => true, as: 'hotTierSizeGib'
896
899
  property :kms_config, as: 'kmsConfig'
897
900
  hash :labels, as: 'labels'
898
901
  property :ldap_enabled, as: 'ldapEnabled'
899
902
  property :name, as: 'name'
900
903
  property :network, as: 'network'
901
904
  property :psa_range, as: 'psaRange'
905
+ property :qos_type, as: 'qosType'
902
906
  property :replica_zone, as: 'replicaZone'
903
907
  property :satisfies_pzi, as: 'satisfiesPzi'
904
908
  property :satisfies_pzs, as: 'satisfiesPzs'
@@ -929,6 +933,7 @@ module Google
929
933
  # @private
930
934
  class Representation < Google::Apis::Core::JsonRepresentation
931
935
  property :cooling_threshold_days, as: 'coolingThresholdDays'
936
+ property :hot_tier_bypass_mode_enabled, as: 'hotTierBypassModeEnabled'
932
937
  property :tier_action, as: 'tierAction'
933
938
  end
934
939
  end
@@ -1012,6 +1017,7 @@ module Google
1012
1017
  property :state, as: 'state'
1013
1018
  property :state_details, as: 'stateDetails'
1014
1019
  property :storage_pool, as: 'storagePool'
1020
+ property :throughput_mibps, as: 'throughputMibps'
1015
1021
  property :tiering_policy, as: 'tieringPolicy', class: Google::Apis::NetappV1::TieringPolicy, decorator: Google::Apis::NetappV1::TieringPolicy::Representation
1016
1022
 
1017
1023
  property :unix_permissions, as: 'unixPermissions'
@@ -87,8 +87,8 @@ module Google
87
87
  # @param [String] name
88
88
  # The resource that owns the locations collection, if applicable.
89
89
  # @param [Array<String>, String] extra_location_types
90
- # Optional. A list of extra location types that should be used as conditions for
91
- # controlling the visibility of the locations.
90
+ # Optional. Do not use this field. It is unsupported and is ignored unless
91
+ # explicitly documented otherwise. This is primarily for internal usage.
92
92
  # @param [String] filter
93
93
  # A filter to narrow down results to a preferred subset. The filtering language
94
94
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-netapp_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.11.0
4
+ version: 0.13.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-netapp_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.11.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.13.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-netapp_v1
62
62
  rdoc_options: []
63
63
  require_paths: