google-apis-netapp_v1 0.14.0 → 0.16.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: 5a0fd1d4262a920d84b21d6332d9e7de37e47e8923077c5d1d042838d8cfe2ec
4
- data.tar.gz: fe12b8d8f2fea657cfff031203cd9fa3aadd20d7584ff9a3c8653ccc2dc4f4be
3
+ metadata.gz: 65ad862c2395a5ccce8c624cc96134b907fefb4ba825c21ce52eacc322437473
4
+ data.tar.gz: 5c69a7e3b2c15af04d410ad3c87a0959afe2219f92c7f8e3641e5e7e5d6a8b69
5
5
  SHA512:
6
- metadata.gz: 057fbfe2eaaca25b2e5f83d3dde9ea963ae7b71a550c13ddc50d1ef13e49fd1bafbb5c97f8605df214f304a390a1b4b19075687f953dcab21e79a92affd1b63f
7
- data.tar.gz: 7ea54a8e48c13dbf32c09e5c03363a9aab67e9d0ba6c3d782a264185a513d823e80a4a2f78beec154283ffedb2ed6eb8b0ad8ccba6f4129aadf9a703744ec2f4
6
+ metadata.gz: 951980371709d59fa5be909682e0e7caca67bcb2577b39cf282d70444798446899926944c21f2966106288d73147776e99fe31d6206bbc8876efa7dabcb58a6f
7
+ data.tar.gz: 915abbdbd6f9ad542063d9d1288f8c00aeac979fea29888cb0b5f6e8bcb9fac30d3c8421481f7bdedd3200cd8cd0bdc0b4bfb60c9b7eefdbbf8656ee89834a89
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-netapp_v1
2
2
 
3
+ ### v0.16.0 (2025-09-14)
4
+
5
+ * Regenerated from discovery document revision 20250908
6
+
7
+ ### v0.15.0 (2025-09-07)
8
+
9
+ * Regenerated from discovery document revision 20250901
10
+
3
11
  ### v0.14.0 (2025-08-24)
4
12
 
5
13
  * Regenerated from discovery document revision 20250817
@@ -1914,6 +1914,12 @@ module Google
1914
1914
  # @return [String]
1915
1915
  attr_accessor :allowed_clients
1916
1916
 
1917
+ # Optional. An integer representing the anonymous user ID. Range is 0 to
1918
+ # 4294967295. Required when squash_mode is ROOT_SQUASH or ALL_SQUASH.
1919
+ # Corresponds to the JSON property `anonUid`
1920
+ # @return [Fixnum]
1921
+ attr_accessor :anon_uid
1922
+
1917
1923
  # Whether Unix root access will be granted.
1918
1924
  # Corresponds to the JSON property `hasRootAccess`
1919
1925
  # @return [String]
@@ -1982,6 +1988,13 @@ module Google
1982
1988
  attr_accessor :nfsv4
1983
1989
  alias_method :nfsv4?, :nfsv4
1984
1990
 
1991
+ # Optional. Defines how user identity squashing is applied for this export rule.
1992
+ # This field is the preferred way to configure squashing behavior and takes
1993
+ # precedence over `has_root_access` if both are provided.
1994
+ # Corresponds to the JSON property `squashMode`
1995
+ # @return [String]
1996
+ attr_accessor :squash_mode
1997
+
1985
1998
  def initialize(**args)
1986
1999
  update!(**args)
1987
2000
  end
@@ -1990,6 +2003,7 @@ module Google
1990
2003
  def update!(**args)
1991
2004
  @access_type = args[:access_type] if args.key?(:access_type)
1992
2005
  @allowed_clients = args[:allowed_clients] if args.key?(:allowed_clients)
2006
+ @anon_uid = args[:anon_uid] if args.key?(:anon_uid)
1993
2007
  @has_root_access = args[:has_root_access] if args.key?(:has_root_access)
1994
2008
  @kerberos5_read_only = args[:kerberos5_read_only] if args.key?(:kerberos5_read_only)
1995
2009
  @kerberos5_read_write = args[:kerberos5_read_write] if args.key?(:kerberos5_read_write)
@@ -1999,6 +2013,7 @@ module Google
1999
2013
  @kerberos5p_read_write = args[:kerberos5p_read_write] if args.key?(:kerberos5p_read_write)
2000
2014
  @nfsv3 = args[:nfsv3] if args.key?(:nfsv3)
2001
2015
  @nfsv4 = args[:nfsv4] if args.key?(:nfsv4)
2016
+ @squash_mode = args[:squash_mode] if args.key?(:squash_mode)
2002
2017
  end
2003
2018
  end
2004
2019
 
@@ -2196,6 +2211,12 @@ module Google
2196
2211
  # @return [Fixnum]
2197
2212
  attr_accessor :capacity_gib
2198
2213
 
2214
+ # Output only. Total cold tier data rounded down to the nearest GiB used by the
2215
+ # storage pool.
2216
+ # Corresponds to the JSON property `coldTierSizeUsedGib`
2217
+ # @return [Fixnum]
2218
+ attr_accessor :cold_tier_size_used_gib
2219
+
2199
2220
  # Output only. Create time of the storage pool
2200
2221
  # Corresponds to the JSON property `createTime`
2201
2222
  # @return [String]
@@ -2242,6 +2263,12 @@ module Google
2242
2263
  # @return [Fixnum]
2243
2264
  attr_accessor :hot_tier_size_gib
2244
2265
 
2266
+ # Output only. Total hot tier data rounded down to the nearest GiB used by the
2267
+ # storage pool.
2268
+ # Corresponds to the JSON property `hotTierSizeUsedGib`
2269
+ # @return [Fixnum]
2270
+ attr_accessor :hot_tier_size_used_gib
2271
+
2245
2272
  # Optional. Specifies the KMS config to be used for volume encryption.
2246
2273
  # Corresponds to the JSON property `kmsConfig`
2247
2274
  # @return [String]
@@ -2348,6 +2375,7 @@ module Google
2348
2375
  @allow_auto_tiering = args[:allow_auto_tiering] if args.key?(:allow_auto_tiering)
2349
2376
  @available_throughput_mibps = args[:available_throughput_mibps] if args.key?(:available_throughput_mibps)
2350
2377
  @capacity_gib = args[:capacity_gib] if args.key?(:capacity_gib)
2378
+ @cold_tier_size_used_gib = args[:cold_tier_size_used_gib] if args.key?(:cold_tier_size_used_gib)
2351
2379
  @create_time = args[:create_time] if args.key?(:create_time)
2352
2380
  @custom_performance_enabled = args[:custom_performance_enabled] if args.key?(:custom_performance_enabled)
2353
2381
  @description = args[:description] if args.key?(:description)
@@ -2355,6 +2383,7 @@ module Google
2355
2383
  @encryption_type = args[:encryption_type] if args.key?(:encryption_type)
2356
2384
  @global_access_allowed = args[:global_access_allowed] if args.key?(:global_access_allowed)
2357
2385
  @hot_tier_size_gib = args[:hot_tier_size_gib] if args.key?(:hot_tier_size_gib)
2386
+ @hot_tier_size_used_gib = args[:hot_tier_size_used_gib] if args.key?(:hot_tier_size_used_gib)
2358
2387
  @kms_config = args[:kms_config] if args.key?(:kms_config)
2359
2388
  @labels = args[:labels] if args.key?(:labels)
2360
2389
  @ldap_enabled = args[:ldap_enabled] if args.key?(:ldap_enabled)
@@ -2637,6 +2666,12 @@ module Google
2637
2666
  attr_accessor :has_replication
2638
2667
  alias_method :has_replication?, :has_replication
2639
2668
 
2669
+ # Output only. Total hot tier data rounded down to the nearest GiB used by the
2670
+ # Volume. This field is only used for flex Service Level
2671
+ # Corresponds to the JSON property `hotTierSizeUsedGib`
2672
+ # @return [Fixnum]
2673
+ attr_accessor :hot_tier_size_used_gib
2674
+
2640
2675
  # The Hybrid Replication parameters for the volume.
2641
2676
  # Corresponds to the JSON property `hybridReplicationParameters`
2642
2677
  # @return [Google::Apis::NetappV1::HybridReplicationParameters]
@@ -2818,6 +2853,7 @@ module Google
2818
2853
  @encryption_type = args[:encryption_type] if args.key?(:encryption_type)
2819
2854
  @export_policy = args[:export_policy] if args.key?(:export_policy)
2820
2855
  @has_replication = args[:has_replication] if args.key?(:has_replication)
2856
+ @hot_tier_size_used_gib = args[:hot_tier_size_used_gib] if args.key?(:hot_tier_size_used_gib)
2821
2857
  @hybrid_replication_parameters = args[:hybrid_replication_parameters] if args.key?(:hybrid_replication_parameters)
2822
2858
  @kerberos_enabled = args[:kerberos_enabled] if args.key?(:kerberos_enabled)
2823
2859
  @kms_config = args[:kms_config] if args.key?(:kms_config)
@@ -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.14.0"
19
+ GEM_VERSION = "0.16.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 = "20250817"
25
+ REVISION = "20250908"
26
26
  end
27
27
  end
28
28
  end
@@ -837,6 +837,7 @@ module Google
837
837
  class Representation < Google::Apis::Core::JsonRepresentation
838
838
  property :access_type, as: 'accessType'
839
839
  property :allowed_clients, as: 'allowedClients'
840
+ property :anon_uid, :numeric_string => true, as: 'anonUid'
840
841
  property :has_root_access, as: 'hasRootAccess'
841
842
  property :kerberos5_read_only, as: 'kerberos5ReadOnly'
842
843
  property :kerberos5_read_write, as: 'kerberos5ReadWrite'
@@ -846,6 +847,7 @@ module Google
846
847
  property :kerberos5p_read_write, as: 'kerberos5pReadWrite'
847
848
  property :nfsv3, as: 'nfsv3'
848
849
  property :nfsv4, as: 'nfsv4'
850
+ property :squash_mode, as: 'squashMode'
849
851
  end
850
852
  end
851
853
 
@@ -900,6 +902,7 @@ module Google
900
902
  property :allow_auto_tiering, as: 'allowAutoTiering'
901
903
  property :available_throughput_mibps, as: 'availableThroughputMibps'
902
904
  property :capacity_gib, :numeric_string => true, as: 'capacityGib'
905
+ property :cold_tier_size_used_gib, :numeric_string => true, as: 'coldTierSizeUsedGib'
903
906
  property :create_time, as: 'createTime'
904
907
  property :custom_performance_enabled, as: 'customPerformanceEnabled'
905
908
  property :description, as: 'description'
@@ -907,6 +910,7 @@ module Google
907
910
  property :encryption_type, as: 'encryptionType'
908
911
  property :global_access_allowed, as: 'globalAccessAllowed'
909
912
  property :hot_tier_size_gib, :numeric_string => true, as: 'hotTierSizeGib'
913
+ property :hot_tier_size_used_gib, :numeric_string => true, as: 'hotTierSizeUsedGib'
910
914
  property :kms_config, as: 'kmsConfig'
911
915
  hash :labels, as: 'labels'
912
916
  property :ldap_enabled, as: 'ldapEnabled'
@@ -1006,6 +1010,7 @@ module Google
1006
1010
  property :export_policy, as: 'exportPolicy', class: Google::Apis::NetappV1::ExportPolicy, decorator: Google::Apis::NetappV1::ExportPolicy::Representation
1007
1011
 
1008
1012
  property :has_replication, as: 'hasReplication'
1013
+ property :hot_tier_size_used_gib, :numeric_string => true, as: 'hotTierSizeUsedGib'
1009
1014
  property :hybrid_replication_parameters, as: 'hybridReplicationParameters', class: Google::Apis::NetappV1::HybridReplicationParameters, decorator: Google::Apis::NetappV1::HybridReplicationParameters::Representation
1010
1015
 
1011
1016
  property :kerberos_enabled, as: 'kerberosEnabled'
@@ -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. Do not use this field. It is unsupported and is ignored unless
91
- # explicitly documented otherwise. This is primarily for internal usage.
90
+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
91
+ # field which is primarily intended 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.14.0
4
+ version: 0.16.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.14.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-netapp_v1/v0.16.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: