google-apis-netapp_v1 0.15.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: eff27a672c3115820605c55d8a14b677d40ac313e15d8b5a2da55566234e03ef
4
- data.tar.gz: 3968beedf71d0f7303a3c5bd2761213f6b52dc56ae527f91a547ea1eef36fd8f
3
+ metadata.gz: 65ad862c2395a5ccce8c624cc96134b907fefb4ba825c21ce52eacc322437473
4
+ data.tar.gz: 5c69a7e3b2c15af04d410ad3c87a0959afe2219f92c7f8e3641e5e7e5d6a8b69
5
5
  SHA512:
6
- metadata.gz: 4cef93f87456192747587e34dc7ee88cb9a4d9671a0a16b6d9f902b587f8f1e0a8a8471d84a7362d159c285d36dea89f38c7b189be3e33878d4bc94454c9ee9d
7
- data.tar.gz: 5541bc98b5076498eec668734a64b0b09af67c1afbcb1430b79ae3ebbb1256f23c2aa0c02b6f0792ff1996f9aeb8878ecdbd96d69a7ebd6e3a52e15f24dec872
6
+ metadata.gz: 951980371709d59fa5be909682e0e7caca67bcb2577b39cf282d70444798446899926944c21f2966106288d73147776e99fe31d6206bbc8876efa7dabcb58a6f
7
+ data.tar.gz: 915abbdbd6f9ad542063d9d1288f8c00aeac979fea29888cb0b5f6e8bcb9fac30d3c8421481f7bdedd3200cd8cd0bdc0b4bfb60c9b7eefdbbf8656ee89834a89
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
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
+
3
7
  ### v0.15.0 (2025-09-07)
4
8
 
5
9
  * Regenerated from discovery document revision 20250901
@@ -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
 
@@ -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.15.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 = "20250901"
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
 
@@ -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.15.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.15.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: