google-apis-file_v1 0.56.0 → 0.58.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: bc31c7b686248d8d0fde67149c5aabc5782dd58a80a1d1c5fdacfda6a00d0e24
|
4
|
+
data.tar.gz: 4d727478708ad6a92ae0d81578fd6903ad6ec99b6d595c29160ffb6f115374e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 266da7a36b7e84c5dd1727eae36faf926d53f5738552ecd0928c64fe2e8a16bf924303ddb92cccaa0672b42c0841bbda9798c69cd8c7ef66b1805d91dbf0978f
|
7
|
+
data.tar.gz: 4c97debe6b0383aa8d21b8e3ddabbdc86e401cdc3ad1cbff1738e0f9de71233202a01dbf1e4584c3ae77a7ceb41514066f96b652104aa055392dbdd7fd8b0f6f
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-file_v1
|
2
2
|
|
3
|
+
### v0.58.0 (2025-09-14)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20250825
|
6
|
+
|
7
|
+
### v0.57.0 (2025-08-31)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20250819
|
10
|
+
|
3
11
|
### v0.56.0 (2025-08-24)
|
4
12
|
|
5
13
|
* Regenerated from discovery document revision 20250810
|
@@ -1325,6 +1325,11 @@ module Google
|
|
1325
1325
|
# @return [String]
|
1326
1326
|
attr_accessor :network
|
1327
1327
|
|
1328
|
+
# Private Service Connect configuration.
|
1329
|
+
# Corresponds to the JSON property `pscConfig`
|
1330
|
+
# @return [Google::Apis::FileV1::PscConfig]
|
1331
|
+
attr_accessor :psc_config
|
1332
|
+
|
1328
1333
|
# Optional, reserved_ip_range can have one of the following two types of values.
|
1329
1334
|
# * CIDR range value when using DIRECT_PEERING connect mode. * [Allocated IP
|
1330
1335
|
# address range](https://cloud.google.com/compute/docs/ip-addresses/reserve-
|
@@ -1353,6 +1358,7 @@ module Google
|
|
1353
1358
|
@ip_addresses = args[:ip_addresses] if args.key?(:ip_addresses)
|
1354
1359
|
@modes = args[:modes] if args.key?(:modes)
|
1355
1360
|
@network = args[:network] if args.key?(:network)
|
1361
|
+
@psc_config = args[:psc_config] if args.key?(:psc_config)
|
1356
1362
|
@reserved_ip_range = args[:reserved_ip_range] if args.key?(:reserved_ip_range)
|
1357
1363
|
end
|
1358
1364
|
end
|
@@ -1392,6 +1398,13 @@ module Google
|
|
1392
1398
|
# @return [Array<String>]
|
1393
1399
|
attr_accessor :ip_ranges
|
1394
1400
|
|
1401
|
+
# Optional. The source VPC network for ip_ranges. Required for instances using
|
1402
|
+
# Private Service Connect, optional otherwise. If provided, must be the same
|
1403
|
+
# network specified in the `NetworkConfig.network` field.
|
1404
|
+
# Corresponds to the JSON property `network`
|
1405
|
+
# @return [String]
|
1406
|
+
attr_accessor :network
|
1407
|
+
|
1395
1408
|
# Either NO_ROOT_SQUASH, for allowing root access on the exported directory, or
|
1396
1409
|
# ROOT_SQUASH, for not allowing root access. The default is NO_ROOT_SQUASH.
|
1397
1410
|
# Corresponds to the JSON property `squashMode`
|
@@ -1408,6 +1421,7 @@ module Google
|
|
1408
1421
|
@anon_gid = args[:anon_gid] if args.key?(:anon_gid)
|
1409
1422
|
@anon_uid = args[:anon_uid] if args.key?(:anon_uid)
|
1410
1423
|
@ip_ranges = args[:ip_ranges] if args.key?(:ip_ranges)
|
1424
|
+
@network = args[:network] if args.key?(:network)
|
1411
1425
|
@squash_mode = args[:squash_mode] if args.key?(:squash_mode)
|
1412
1426
|
end
|
1413
1427
|
end
|
@@ -1628,6 +1642,28 @@ module Google
|
|
1628
1642
|
end
|
1629
1643
|
end
|
1630
1644
|
|
1645
|
+
# Private Service Connect configuration.
|
1646
|
+
class PscConfig
|
1647
|
+
include Google::Apis::Core::Hashable
|
1648
|
+
|
1649
|
+
# Optional. Consumer service project in which the Private Service Connect
|
1650
|
+
# endpoint would be set up. This is optional, and only relevant in case the
|
1651
|
+
# network is a shared VPC. If this is not specified, the endpoint would be setup
|
1652
|
+
# in the VPC host project.
|
1653
|
+
# Corresponds to the JSON property `endpointProject`
|
1654
|
+
# @return [String]
|
1655
|
+
attr_accessor :endpoint_project
|
1656
|
+
|
1657
|
+
def initialize(**args)
|
1658
|
+
update!(**args)
|
1659
|
+
end
|
1660
|
+
|
1661
|
+
# Update properties of this object
|
1662
|
+
def update!(**args)
|
1663
|
+
@endpoint_project = args[:endpoint_project] if args.key?(:endpoint_project)
|
1664
|
+
end
|
1665
|
+
end
|
1666
|
+
|
1631
1667
|
# Replica configuration for the instance.
|
1632
1668
|
class ReplicaConfig
|
1633
1669
|
include Google::Apis::Core::Hashable
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module FileV1
|
18
18
|
# Version of the google-apis-file_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.58.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 = "20250825"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -226,6 +226,12 @@ module Google
|
|
226
226
|
include Google::Apis::Core::JsonObjectSupport
|
227
227
|
end
|
228
228
|
|
229
|
+
class PscConfig
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
229
235
|
class ReplicaConfig
|
230
236
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
237
|
|
@@ -603,6 +609,8 @@ module Google
|
|
603
609
|
collection :ip_addresses, as: 'ipAddresses'
|
604
610
|
collection :modes, as: 'modes'
|
605
611
|
property :network, as: 'network'
|
612
|
+
property :psc_config, as: 'pscConfig', class: Google::Apis::FileV1::PscConfig, decorator: Google::Apis::FileV1::PscConfig::Representation
|
613
|
+
|
606
614
|
property :reserved_ip_range, as: 'reservedIpRange'
|
607
615
|
end
|
608
616
|
end
|
@@ -614,6 +622,7 @@ module Google
|
|
614
622
|
property :anon_gid, :numeric_string => true, as: 'anonGid'
|
615
623
|
property :anon_uid, :numeric_string => true, as: 'anonUid'
|
616
624
|
collection :ip_ranges, as: 'ipRanges'
|
625
|
+
property :network, as: 'network'
|
617
626
|
property :squash_mode, as: 'squashMode'
|
618
627
|
end
|
619
628
|
end
|
@@ -671,6 +680,13 @@ module Google
|
|
671
680
|
end
|
672
681
|
end
|
673
682
|
|
683
|
+
class PscConfig
|
684
|
+
# @private
|
685
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
686
|
+
property :endpoint_project, as: 'endpointProject'
|
687
|
+
end
|
688
|
+
end
|
689
|
+
|
674
690
|
class ReplicaConfig
|
675
691
|
# @private
|
676
692
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -85,8 +85,8 @@ module Google
|
|
85
85
|
# @param [String] name
|
86
86
|
# The resource that owns the locations collection, if applicable.
|
87
87
|
# @param [Array<String>, String] extra_location_types
|
88
|
-
# Optional.
|
89
|
-
#
|
88
|
+
# Optional. Do not use this field. It is unsupported and is ignored unless
|
89
|
+
# explicitly documented otherwise. This is primarily for internal usage.
|
90
90
|
# @param [String] filter
|
91
91
|
# A filter to narrow down results to a preferred subset. The filtering language
|
92
92
|
# 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-file_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.58.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-file_v1/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1/v0.58.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|