google-apis-file_v1beta1 0.36.0 → 0.37.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: af8f0de94054c368eecfabb3468a07735b62ec7753d8052af9a5f95d433c22ff
|
4
|
+
data.tar.gz: e1f58f620e891fa1e67e7380b25de8da5e99195c605870cbc3ed4d9de6a70110
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3e8b98627dfac93c735560a754b44584539aa739881e88a05875b1e5c79d440a6425bf1077373bffe797df54280576b77e9ca2957e39c2050c8b5a469f3f2e13
|
7
|
+
data.tar.gz: d55d808cc0fedc25102554621d834bcbe4a7e7c3af3f9ea12ddbfa923646de562feb4efe0b63d7b24772f3778725113a3cbfcc3995e90caa1a685d382ac8c339
|
data/CHANGELOG.md
CHANGED
@@ -250,6 +250,26 @@ module Google
|
|
250
250
|
end
|
251
251
|
end
|
252
252
|
|
253
|
+
# Directory Services configuration for Kerberos-based authentication.
|
254
|
+
class DirectoryServicesConfig
|
255
|
+
include Google::Apis::Core::Hashable
|
256
|
+
|
257
|
+
# ManagedActiveDirectoryConfig contains all the parameters for connecting to
|
258
|
+
# Managed Active Directory.
|
259
|
+
# Corresponds to the JSON property `managedActiveDirectory`
|
260
|
+
# @return [Google::Apis::FileV1beta1::ManagedActiveDirectoryConfig]
|
261
|
+
attr_accessor :managed_active_directory
|
262
|
+
|
263
|
+
def initialize(**args)
|
264
|
+
update!(**args)
|
265
|
+
end
|
266
|
+
|
267
|
+
# Update properties of this object
|
268
|
+
def update!(**args)
|
269
|
+
@managed_active_directory = args[:managed_active_directory] if args.key?(:managed_active_directory)
|
270
|
+
end
|
271
|
+
end
|
272
|
+
|
253
273
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
254
274
|
# messages in your APIs. A typical example is to use it as the request or the
|
255
275
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
@@ -766,6 +786,11 @@ module Google
|
|
766
786
|
# @return [String]
|
767
787
|
attr_accessor :description
|
768
788
|
|
789
|
+
# Directory Services configuration for Kerberos-based authentication.
|
790
|
+
# Corresponds to the JSON property `directoryServices`
|
791
|
+
# @return [Google::Apis::FileV1beta1::DirectoryServicesConfig]
|
792
|
+
attr_accessor :directory_services
|
793
|
+
|
769
794
|
# Server-specified ETag for the instance resource to prevent simultaneous
|
770
795
|
# updates from overwriting each other.
|
771
796
|
# Corresponds to the JSON property `etag`
|
@@ -862,6 +887,7 @@ module Google
|
|
862
887
|
@capacity_step_size_gb = args[:capacity_step_size_gb] if args.key?(:capacity_step_size_gb)
|
863
888
|
@create_time = args[:create_time] if args.key?(:create_time)
|
864
889
|
@description = args[:description] if args.key?(:description)
|
890
|
+
@directory_services = args[:directory_services] if args.key?(:directory_services)
|
865
891
|
@etag = args[:etag] if args.key?(:etag)
|
866
892
|
@file_shares = args[:file_shares] if args.key?(:file_shares)
|
867
893
|
@kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name)
|
@@ -1194,6 +1220,34 @@ module Google
|
|
1194
1220
|
end
|
1195
1221
|
end
|
1196
1222
|
|
1223
|
+
# ManagedActiveDirectoryConfig contains all the parameters for connecting to
|
1224
|
+
# Managed Active Directory.
|
1225
|
+
class ManagedActiveDirectoryConfig
|
1226
|
+
include Google::Apis::Core::Hashable
|
1227
|
+
|
1228
|
+
# The computer name is used as a prefix to the mount remote target. Example: if
|
1229
|
+
# the computer_name is `my-computer`, the mount command will look like: `$mount -
|
1230
|
+
# o vers=4,sec=krb5 my-computer.filestore.:`.
|
1231
|
+
# Corresponds to the JSON property `computer`
|
1232
|
+
# @return [String]
|
1233
|
+
attr_accessor :computer
|
1234
|
+
|
1235
|
+
# Fully qualified domain name.
|
1236
|
+
# Corresponds to the JSON property `domain`
|
1237
|
+
# @return [String]
|
1238
|
+
attr_accessor :domain
|
1239
|
+
|
1240
|
+
def initialize(**args)
|
1241
|
+
update!(**args)
|
1242
|
+
end
|
1243
|
+
|
1244
|
+
# Update properties of this object
|
1245
|
+
def update!(**args)
|
1246
|
+
@computer = args[:computer] if args.key?(:computer)
|
1247
|
+
@domain = args[:domain] if args.key?(:domain)
|
1248
|
+
end
|
1249
|
+
end
|
1250
|
+
|
1197
1251
|
# Network configuration for the instance.
|
1198
1252
|
class NetworkConfig
|
1199
1253
|
include Google::Apis::Core::Hashable
|
@@ -1290,6 +1344,11 @@ module Google
|
|
1290
1344
|
# @return [Array<String>]
|
1291
1345
|
attr_accessor :ip_ranges
|
1292
1346
|
|
1347
|
+
# The security flavors allowed for mount operations. The default is AUTH_SYS.
|
1348
|
+
# Corresponds to the JSON property `securityFlavors`
|
1349
|
+
# @return [Array<String>]
|
1350
|
+
attr_accessor :security_flavors
|
1351
|
+
|
1293
1352
|
# Either NO_ROOT_SQUASH, for allowing root access on the exported directory, or
|
1294
1353
|
# ROOT_SQUASH, for not allowing root access. The default is NO_ROOT_SQUASH.
|
1295
1354
|
# Corresponds to the JSON property `squashMode`
|
@@ -1306,6 +1365,7 @@ module Google
|
|
1306
1365
|
@anon_gid = args[:anon_gid] if args.key?(:anon_gid)
|
1307
1366
|
@anon_uid = args[:anon_uid] if args.key?(:anon_uid)
|
1308
1367
|
@ip_ranges = args[:ip_ranges] if args.key?(:ip_ranges)
|
1368
|
+
@security_flavors = args[:security_flavors] if args.key?(:security_flavors)
|
1309
1369
|
@squash_mode = args[:squash_mode] if args.key?(:squash_mode)
|
1310
1370
|
end
|
1311
1371
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FileV1beta1
|
18
18
|
# Version of the google-apis-file_v1beta1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.37.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230429"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -52,6 +52,12 @@ module Google
|
|
52
52
|
include Google::Apis::Core::JsonObjectSupport
|
53
53
|
end
|
54
54
|
|
55
|
+
class DirectoryServicesConfig
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
55
61
|
class Empty
|
56
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
63
|
|
@@ -178,6 +184,12 @@ module Google
|
|
178
184
|
include Google::Apis::Core::JsonObjectSupport
|
179
185
|
end
|
180
186
|
|
187
|
+
class ManagedActiveDirectoryConfig
|
188
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
189
|
+
|
190
|
+
include Google::Apis::Core::JsonObjectSupport
|
191
|
+
end
|
192
|
+
|
181
193
|
class NetworkConfig
|
182
194
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
183
195
|
|
@@ -311,6 +323,14 @@ module Google
|
|
311
323
|
end
|
312
324
|
end
|
313
325
|
|
326
|
+
class DirectoryServicesConfig
|
327
|
+
# @private
|
328
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
329
|
+
property :managed_active_directory, as: 'managedActiveDirectory', class: Google::Apis::FileV1beta1::ManagedActiveDirectoryConfig, decorator: Google::Apis::FileV1beta1::ManagedActiveDirectoryConfig::Representation
|
330
|
+
|
331
|
+
end
|
332
|
+
end
|
333
|
+
|
314
334
|
class Empty
|
315
335
|
# @private
|
316
336
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -436,6 +456,8 @@ module Google
|
|
436
456
|
property :capacity_step_size_gb, :numeric_string => true, as: 'capacityStepSizeGb'
|
437
457
|
property :create_time, as: 'createTime'
|
438
458
|
property :description, as: 'description'
|
459
|
+
property :directory_services, as: 'directoryServices', class: Google::Apis::FileV1beta1::DirectoryServicesConfig, decorator: Google::Apis::FileV1beta1::DirectoryServicesConfig::Representation
|
460
|
+
|
439
461
|
property :etag, as: 'etag'
|
440
462
|
collection :file_shares, as: 'fileShares', class: Google::Apis::FileV1beta1::FileShareConfig, decorator: Google::Apis::FileV1beta1::FileShareConfig::Representation
|
441
463
|
|
@@ -548,6 +570,14 @@ module Google
|
|
548
570
|
end
|
549
571
|
end
|
550
572
|
|
573
|
+
class ManagedActiveDirectoryConfig
|
574
|
+
# @private
|
575
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
576
|
+
property :computer, as: 'computer'
|
577
|
+
property :domain, as: 'domain'
|
578
|
+
end
|
579
|
+
end
|
580
|
+
|
551
581
|
class NetworkConfig
|
552
582
|
# @private
|
553
583
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -566,6 +596,7 @@ module Google
|
|
566
596
|
property :anon_gid, :numeric_string => true, as: 'anonGid'
|
567
597
|
property :anon_uid, :numeric_string => true, as: 'anonUid'
|
568
598
|
collection :ip_ranges, as: 'ipRanges'
|
599
|
+
collection :security_flavors, as: 'securityFlavors'
|
569
600
|
property :squash_mode, as: 'squashMode'
|
570
601
|
end
|
571
602
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-file_v1beta1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.37.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: 2023-
|
11
|
+
date: 2023-05-14 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-file_v1beta1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.37.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1beta1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|