google-apis-file_v1beta1 0.62.0 → 0.64.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: 8c25059f35cfb994fd1a3e77153a54b60eb58c212774a3e482f0203e7487b1ed
|
|
4
|
+
data.tar.gz: 43aae579f804fea8c59b85c9213991ea41f9d11fad72646c0f926d0d8cc4afeb
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c999dff13cf4bcb3cb4870d0735adfc8d26d1b76b66f8a3553e7d8716dd244b74fb2d421c0487e6bcd1cd535105924e1fc735950501a7e5bb69bf3696fff555
|
|
7
|
+
data.tar.gz: 43261ee02c2e9bfa8b9637c57d25934dee0ff0064036da44c108636a07624bbcb9b5eedc3c0dc0de75fb9e0ba318a4477c9567c37c77ac35e91a6856b5a21cd0
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-file_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.64.0 (2025-12-14)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251204
|
|
6
|
+
|
|
7
|
+
### v0.63.0 (2025-10-26)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251015
|
|
10
|
+
|
|
3
11
|
### v0.62.0 (2025-10-12)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250929
|
|
@@ -870,7 +870,8 @@ module Google
|
|
|
870
870
|
# @return [Fixnum]
|
|
871
871
|
attr_accessor :capacity_gb
|
|
872
872
|
|
|
873
|
-
# Output only. The increase
|
|
873
|
+
# Output only. The incremental increase or decrease in capacity, designated in
|
|
874
|
+
# some number of GB.
|
|
874
875
|
# Corresponds to the JSON property `capacityStepSizeGb`
|
|
875
876
|
# @return [Fixnum]
|
|
876
877
|
attr_accessor :capacity_step_size_gb
|
|
@@ -931,17 +932,17 @@ module Google
|
|
|
931
932
|
# @return [Hash<String,String>]
|
|
932
933
|
attr_accessor :labels
|
|
933
934
|
|
|
934
|
-
# Output only. The
|
|
935
|
+
# Output only. The maximum capacity of the instance.
|
|
935
936
|
# Corresponds to the JSON property `maxCapacityGb`
|
|
936
937
|
# @return [Fixnum]
|
|
937
938
|
attr_accessor :max_capacity_gb
|
|
938
939
|
|
|
939
|
-
# The
|
|
940
|
+
# The maximum number of shares allowed.
|
|
940
941
|
# Corresponds to the JSON property `maxShareCount`
|
|
941
942
|
# @return [Fixnum]
|
|
942
943
|
attr_accessor :max_share_count
|
|
943
944
|
|
|
944
|
-
# Output only. The
|
|
945
|
+
# Output only. The minimum capacity of the instance.
|
|
945
946
|
# Corresponds to the JSON property `minCapacityGb`
|
|
946
947
|
# @return [Fixnum]
|
|
947
948
|
attr_accessor :min_capacity_gb
|
|
@@ -989,7 +990,7 @@ module Google
|
|
|
989
990
|
# @return [String]
|
|
990
991
|
attr_accessor :protocol
|
|
991
992
|
|
|
992
|
-
#
|
|
993
|
+
# Optional. The configuration used to replicate an instance.
|
|
993
994
|
# Corresponds to the JSON property `replication`
|
|
994
995
|
# @return [Google::Apis::FileV1beta1::Replication]
|
|
995
996
|
attr_accessor :replication
|
|
@@ -1233,6 +1234,14 @@ module Google
|
|
|
1233
1234
|
# @return [Array<Google::Apis::FileV1beta1::Operation>]
|
|
1234
1235
|
attr_accessor :operations
|
|
1235
1236
|
|
|
1237
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1238
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1239
|
+
# For example, when attempting to list all resources across all supported
|
|
1240
|
+
# locations.
|
|
1241
|
+
# Corresponds to the JSON property `unreachable`
|
|
1242
|
+
# @return [Array<String>]
|
|
1243
|
+
attr_accessor :unreachable
|
|
1244
|
+
|
|
1236
1245
|
def initialize(**args)
|
|
1237
1246
|
update!(**args)
|
|
1238
1247
|
end
|
|
@@ -1241,6 +1250,7 @@ module Google
|
|
|
1241
1250
|
def update!(**args)
|
|
1242
1251
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1243
1252
|
@operations = args[:operations] if args.key?(:operations)
|
|
1253
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
1244
1254
|
end
|
|
1245
1255
|
end
|
|
1246
1256
|
|
|
@@ -1776,27 +1786,27 @@ module Google
|
|
|
1776
1786
|
class PerformanceLimits
|
|
1777
1787
|
include Google::Apis::Core::Hashable
|
|
1778
1788
|
|
|
1779
|
-
# Output only. The
|
|
1789
|
+
# Output only. The maximum IOPS.
|
|
1780
1790
|
# Corresponds to the JSON property `maxIops`
|
|
1781
1791
|
# @return [Fixnum]
|
|
1782
1792
|
attr_accessor :max_iops
|
|
1783
1793
|
|
|
1784
|
-
# Output only. The
|
|
1794
|
+
# Output only. The maximum read IOPS.
|
|
1785
1795
|
# Corresponds to the JSON property `maxReadIops`
|
|
1786
1796
|
# @return [Fixnum]
|
|
1787
1797
|
attr_accessor :max_read_iops
|
|
1788
1798
|
|
|
1789
|
-
# Output only. The
|
|
1799
|
+
# Output only. The maximum read throughput in bytes per second.
|
|
1790
1800
|
# Corresponds to the JSON property `maxReadThroughputBps`
|
|
1791
1801
|
# @return [Fixnum]
|
|
1792
1802
|
attr_accessor :max_read_throughput_bps
|
|
1793
1803
|
|
|
1794
|
-
# Output only. The
|
|
1804
|
+
# Output only. The maximum write IOPS.
|
|
1795
1805
|
# Corresponds to the JSON property `maxWriteIops`
|
|
1796
1806
|
# @return [Fixnum]
|
|
1797
1807
|
attr_accessor :max_write_iops
|
|
1798
1808
|
|
|
1799
|
-
# Output only. The
|
|
1809
|
+
# Output only. The maximumwrite throughput in bytes per second.
|
|
1800
1810
|
# Corresponds to the JSON property `maxWriteThroughputBps`
|
|
1801
1811
|
# @return [Fixnum]
|
|
1802
1812
|
attr_accessor :max_write_throughput_bps
|
|
@@ -1868,7 +1878,9 @@ module Google
|
|
|
1868
1878
|
# @return [String]
|
|
1869
1879
|
attr_accessor :last_active_sync_time
|
|
1870
1880
|
|
|
1871
|
-
# The
|
|
1881
|
+
# The name of the source instance for the replica, in the format `projects/`
|
|
1882
|
+
# project`/locations/`location`/instances/`instance``. This field is required
|
|
1883
|
+
# when creating a replica.
|
|
1872
1884
|
# Corresponds to the JSON property `peerInstance`
|
|
1873
1885
|
# @return [String]
|
|
1874
1886
|
attr_accessor :peer_instance
|
|
@@ -1902,7 +1914,7 @@ module Google
|
|
|
1902
1914
|
end
|
|
1903
1915
|
end
|
|
1904
1916
|
|
|
1905
|
-
#
|
|
1917
|
+
# Optional. The configuration used to replicate an instance.
|
|
1906
1918
|
class Replication
|
|
1907
1919
|
include Google::Apis::Core::Hashable
|
|
1908
1920
|
|
|
@@ -1912,7 +1924,8 @@ module Google
|
|
|
1912
1924
|
# @return [Array<Google::Apis::FileV1beta1::ReplicaConfig>]
|
|
1913
1925
|
attr_accessor :replicas
|
|
1914
1926
|
|
|
1915
|
-
# Output only. The replication role.
|
|
1927
|
+
# Output only. The replication role. When creating a new replica, this field
|
|
1928
|
+
# must be set to `STANDBY`.
|
|
1916
1929
|
# Corresponds to the JSON property `role`
|
|
1917
1930
|
# @return [String]
|
|
1918
1931
|
attr_accessor :role
|
|
@@ -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.64.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 = "20251204"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -623,6 +623,7 @@ module Google
|
|
|
623
623
|
property :next_page_token, as: 'nextPageToken'
|
|
624
624
|
collection :operations, as: 'operations', class: Google::Apis::FileV1beta1::Operation, decorator: Google::Apis::FileV1beta1::Operation::Representation
|
|
625
625
|
|
|
626
|
+
collection :unreachable, as: 'unreachable'
|
|
626
627
|
end
|
|
627
628
|
end
|
|
628
629
|
|
|
@@ -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
|
|
@@ -1176,6 +1176,14 @@ module Google
|
|
|
1176
1176
|
# The standard list page size.
|
|
1177
1177
|
# @param [String] page_token
|
|
1178
1178
|
# The standard list page token.
|
|
1179
|
+
# @param [Boolean] return_partial_success
|
|
1180
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
|
1181
|
+
# those that are unreachable are returned in the ListOperationsResponse.
|
|
1182
|
+
# unreachable field. This can only be `true` when reading across collections.
|
|
1183
|
+
# For example, when `parent` is set to `"projects/example/locations/-"`. This
|
|
1184
|
+
# field is not supported by default and will result in an `UNIMPLEMENTED` error
|
|
1185
|
+
# if set unless explicitly documented otherwise in service or product specific
|
|
1186
|
+
# documentation.
|
|
1179
1187
|
# @param [String] fields
|
|
1180
1188
|
# Selector specifying which fields to include in a partial response.
|
|
1181
1189
|
# @param [String] quota_user
|
|
@@ -1193,7 +1201,7 @@ module Google
|
|
|
1193
1201
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1194
1202
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1195
1203
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
|
1196
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1204
|
+
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
|
|
1197
1205
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
|
1198
1206
|
command.response_representation = Google::Apis::FileV1beta1::ListOperationsResponse::Representation
|
|
1199
1207
|
command.response_class = Google::Apis::FileV1beta1::ListOperationsResponse
|
|
@@ -1201,6 +1209,7 @@ module Google
|
|
|
1201
1209
|
command.query['filter'] = filter unless filter.nil?
|
|
1202
1210
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1203
1211
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1212
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1204
1213
|
command.query['fields'] = fields unless fields.nil?
|
|
1205
1214
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1206
1215
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.64.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_v1beta1/CHANGELOG.md
|
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.
|
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-file_v1beta1/v0.64.0
|
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-file_v1beta1
|
|
62
62
|
rdoc_options: []
|
|
63
63
|
require_paths:
|