google-apis-netapp_v1 0.11.0 → 0.12.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fe35b12e40eb720dbe619949d87fa3a9f076ecf41a68b917fbaa2802de56a731
|
4
|
+
data.tar.gz: 4f9761c95cd3f27d8e595df142fd57984af22f318dc0a36e80d2b96f44cce23e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7f572be51d7c425d258dfd775eba408a18a6b5ad22d72d08cbaf0b013f02ecf728c4ae33383dbb6ba7af0be5d2c304c8a2c82d29d82d9c9c8ea2828c214ffb17
|
7
|
+
data.tar.gz: 63d75ba82c83587419ebda92bf0ec1110bc6bdfcda1c33791bbf3886b762f0f2ec6d312ff468a32ad4f49951769b0244fb974470085355d176541501cef0f609
|
data/CHANGELOG.md
CHANGED
@@ -2184,6 +2184,15 @@ module Google
|
|
2184
2184
|
# @return [String]
|
2185
2185
|
attr_accessor :description
|
2186
2186
|
|
2187
|
+
# Optional. Flag indicating that the hot-tier threshold will be auto-increased
|
2188
|
+
# by 10% of the hot-tier when it hits 100%. Default is true. The increment will
|
2189
|
+
# kick in only if the new size after increment is still less than or equal to
|
2190
|
+
# storage pool size.
|
2191
|
+
# Corresponds to the JSON property `enableHotTierAutoResize`
|
2192
|
+
# @return [Boolean]
|
2193
|
+
attr_accessor :enable_hot_tier_auto_resize
|
2194
|
+
alias_method :enable_hot_tier_auto_resize?, :enable_hot_tier_auto_resize
|
2195
|
+
|
2187
2196
|
# Output only. Specifies the current pool encryption key source.
|
2188
2197
|
# Corresponds to the JSON property `encryptionType`
|
2189
2198
|
# @return [String]
|
@@ -2196,6 +2205,14 @@ module Google
|
|
2196
2205
|
attr_accessor :global_access_allowed
|
2197
2206
|
alias_method :global_access_allowed?, :global_access_allowed
|
2198
2207
|
|
2208
|
+
# Optional. Total hot tier capacity for the Storage Pool. It is applicable only
|
2209
|
+
# to Flex service level. It should be less than the minimum storage pool size
|
2210
|
+
# and cannot be more than the current storage pool size. It cannot be decreased
|
2211
|
+
# once set.
|
2212
|
+
# Corresponds to the JSON property `hotTierSizeGib`
|
2213
|
+
# @return [Fixnum]
|
2214
|
+
attr_accessor :hot_tier_size_gib
|
2215
|
+
|
2199
2216
|
# Optional. Specifies the KMS config to be used for volume encryption.
|
2200
2217
|
# Corresponds to the JSON property `kmsConfig`
|
2201
2218
|
# @return [String]
|
@@ -2299,8 +2316,10 @@ module Google
|
|
2299
2316
|
@create_time = args[:create_time] if args.key?(:create_time)
|
2300
2317
|
@custom_performance_enabled = args[:custom_performance_enabled] if args.key?(:custom_performance_enabled)
|
2301
2318
|
@description = args[:description] if args.key?(:description)
|
2319
|
+
@enable_hot_tier_auto_resize = args[:enable_hot_tier_auto_resize] if args.key?(:enable_hot_tier_auto_resize)
|
2302
2320
|
@encryption_type = args[:encryption_type] if args.key?(:encryption_type)
|
2303
2321
|
@global_access_allowed = args[:global_access_allowed] if args.key?(:global_access_allowed)
|
2322
|
+
@hot_tier_size_gib = args[:hot_tier_size_gib] if args.key?(:hot_tier_size_gib)
|
2304
2323
|
@kms_config = args[:kms_config] if args.key?(:kms_config)
|
2305
2324
|
@labels = args[:labels] if args.key?(:labels)
|
2306
2325
|
@ldap_enabled = args[:ldap_enabled] if args.key?(:ldap_enabled)
|
@@ -2358,6 +2377,13 @@ module Google
|
|
2358
2377
|
# @return [Fixnum]
|
2359
2378
|
attr_accessor :cooling_threshold_days
|
2360
2379
|
|
2380
|
+
# Optional. Flag indicating that the hot tier bypass mode is enabled. Default is
|
2381
|
+
# false. This is only applicable to Flex service level.
|
2382
|
+
# Corresponds to the JSON property `hotTierBypassModeEnabled`
|
2383
|
+
# @return [Boolean]
|
2384
|
+
attr_accessor :hot_tier_bypass_mode_enabled
|
2385
|
+
alias_method :hot_tier_bypass_mode_enabled?, :hot_tier_bypass_mode_enabled
|
2386
|
+
|
2361
2387
|
# Optional. Flag indicating if the volume has tiering policy enable/pause.
|
2362
2388
|
# Default is PAUSED.
|
2363
2389
|
# Corresponds to the JSON property `tierAction`
|
@@ -2371,6 +2397,7 @@ module Google
|
|
2371
2397
|
# Update properties of this object
|
2372
2398
|
def update!(**args)
|
2373
2399
|
@cooling_threshold_days = args[:cooling_threshold_days] if args.key?(:cooling_threshold_days)
|
2400
|
+
@hot_tier_bypass_mode_enabled = args[:hot_tier_bypass_mode_enabled] if args.key?(:hot_tier_bypass_mode_enabled)
|
2374
2401
|
@tier_action = args[:tier_action] if args.key?(:tier_action)
|
2375
2402
|
end
|
2376
2403
|
end
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.12.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 = "
|
25
|
+
REVISION = "20250604"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -891,8 +891,10 @@ module Google
|
|
891
891
|
property :create_time, as: 'createTime'
|
892
892
|
property :custom_performance_enabled, as: 'customPerformanceEnabled'
|
893
893
|
property :description, as: 'description'
|
894
|
+
property :enable_hot_tier_auto_resize, as: 'enableHotTierAutoResize'
|
894
895
|
property :encryption_type, as: 'encryptionType'
|
895
896
|
property :global_access_allowed, as: 'globalAccessAllowed'
|
897
|
+
property :hot_tier_size_gib, :numeric_string => true, as: 'hotTierSizeGib'
|
896
898
|
property :kms_config, as: 'kmsConfig'
|
897
899
|
hash :labels, as: 'labels'
|
898
900
|
property :ldap_enabled, as: 'ldapEnabled'
|
@@ -929,6 +931,7 @@ module Google
|
|
929
931
|
# @private
|
930
932
|
class Representation < Google::Apis::Core::JsonRepresentation
|
931
933
|
property :cooling_threshold_days, as: 'coolingThresholdDays'
|
934
|
+
property :hot_tier_bypass_mode_enabled, as: 'hotTierBypassModeEnabled'
|
932
935
|
property :tier_action, as: 'tierAction'
|
933
936
|
end
|
934
937
|
end
|
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.
|
4
|
+
version: 0.12.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.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.12.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:
|