google-apis-file_v1beta1 0.61.0 → 0.63.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: 92fe91777a05a3a0dde5bed0917df46e65616eb8732e8dd0c1f5189d9507697b
|
|
4
|
+
data.tar.gz: 8b3420ab2e1016518dc922788e9c3f00ba538ca3aed4b05d3fd672f1ee053151
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0f2ce17f8dad9efaef7b7a98b33db9805647f61a8269c6a4c3d15d4d650babc223437ae453c99b189063f876e11692f77f011318016611f91d59ccb65c456c27
|
|
7
|
+
data.tar.gz: '08e334de81bdedfa6dc583a6699f036f8b12683546dccb5fd4cc8b2e4f597e98a8215d25032e7d309f26fc770f34321d68ad7730aea126da2ac71c44ac4703d5'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-file_v1beta1
|
|
2
2
|
|
|
3
|
+
### v0.63.0 (2025-10-26)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251015
|
|
6
|
+
|
|
7
|
+
### v0.62.0 (2025-10-12)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20250929
|
|
10
|
+
|
|
3
11
|
### v0.61.0 (2025-09-21)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250910
|
|
@@ -347,6 +347,14 @@ module Google
|
|
|
347
347
|
# @return [String]
|
|
348
348
|
attr_accessor :source_backup
|
|
349
349
|
|
|
350
|
+
# The resource name of the BackupDR backup, in the format `projects/`project_id`/
|
|
351
|
+
# locations/`location_id`/backupVaults/`backupvault_id`/dataSources/`
|
|
352
|
+
# datasource_id`/backups/`backup_id``, TODO (b/443690479) - Remove visibility
|
|
353
|
+
# restrictions once the feature is ready
|
|
354
|
+
# Corresponds to the JSON property `sourceBackupdrBackup`
|
|
355
|
+
# @return [String]
|
|
356
|
+
attr_accessor :source_backupdr_backup
|
|
357
|
+
|
|
350
358
|
def initialize(**args)
|
|
351
359
|
update!(**args)
|
|
352
360
|
end
|
|
@@ -357,6 +365,7 @@ module Google
|
|
|
357
365
|
@name = args[:name] if args.key?(:name)
|
|
358
366
|
@nfs_export_options = args[:nfs_export_options] if args.key?(:nfs_export_options)
|
|
359
367
|
@source_backup = args[:source_backup] if args.key?(:source_backup)
|
|
368
|
+
@source_backupdr_backup = args[:source_backupdr_backup] if args.key?(:source_backupdr_backup)
|
|
360
369
|
end
|
|
361
370
|
end
|
|
362
371
|
|
|
@@ -1224,6 +1233,13 @@ module Google
|
|
|
1224
1233
|
# @return [Array<Google::Apis::FileV1beta1::Operation>]
|
|
1225
1234
|
attr_accessor :operations
|
|
1226
1235
|
|
|
1236
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1237
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
1238
|
+
# when attempting to list all resources across all supported locations.
|
|
1239
|
+
# Corresponds to the JSON property `unreachable`
|
|
1240
|
+
# @return [Array<String>]
|
|
1241
|
+
attr_accessor :unreachable
|
|
1242
|
+
|
|
1227
1243
|
def initialize(**args)
|
|
1228
1244
|
update!(**args)
|
|
1229
1245
|
end
|
|
@@ -1232,6 +1248,7 @@ module Google
|
|
|
1232
1248
|
def update!(**args)
|
|
1233
1249
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1234
1250
|
@operations = args[:operations] if args.key?(:operations)
|
|
1251
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
1235
1252
|
end
|
|
1236
1253
|
end
|
|
1237
1254
|
|
|
@@ -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.63.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 = "20251015"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -416,6 +416,7 @@ module Google
|
|
|
416
416
|
collection :nfs_export_options, as: 'nfsExportOptions', class: Google::Apis::FileV1beta1::NfsExportOptions, decorator: Google::Apis::FileV1beta1::NfsExportOptions::Representation
|
|
417
417
|
|
|
418
418
|
property :source_backup, as: 'sourceBackup'
|
|
419
|
+
property :source_backupdr_backup, as: 'sourceBackupdrBackup'
|
|
419
420
|
end
|
|
420
421
|
end
|
|
421
422
|
|
|
@@ -622,6 +623,7 @@ module Google
|
|
|
622
623
|
property :next_page_token, as: 'nextPageToken'
|
|
623
624
|
collection :operations, as: 'operations', class: Google::Apis::FileV1beta1::Operation, decorator: Google::Apis::FileV1beta1::Operation::Representation
|
|
624
625
|
|
|
626
|
+
collection :unreachable, as: 'unreachable'
|
|
625
627
|
end
|
|
626
628
|
end
|
|
627
629
|
|
|
@@ -1176,6 +1176,13 @@ 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 e.
|
|
1183
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
|
1184
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
|
1185
|
+
# explicitly documented otherwise in service or product specific documentation.
|
|
1179
1186
|
# @param [String] fields
|
|
1180
1187
|
# Selector specifying which fields to include in a partial response.
|
|
1181
1188
|
# @param [String] quota_user
|
|
@@ -1193,7 +1200,7 @@ module Google
|
|
|
1193
1200
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
|
1194
1201
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
|
1195
1202
|
# @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)
|
|
1203
|
+
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
1204
|
command = make_simple_command(:get, 'v1beta1/{+name}/operations', options)
|
|
1198
1205
|
command.response_representation = Google::Apis::FileV1beta1::ListOperationsResponse::Representation
|
|
1199
1206
|
command.response_class = Google::Apis::FileV1beta1::ListOperationsResponse
|
|
@@ -1201,6 +1208,7 @@ module Google
|
|
|
1201
1208
|
command.query['filter'] = filter unless filter.nil?
|
|
1202
1209
|
command.query['pageSize'] = page_size unless page_size.nil?
|
|
1203
1210
|
command.query['pageToken'] = page_token unless page_token.nil?
|
|
1211
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
|
1204
1212
|
command.query['fields'] = fields unless fields.nil?
|
|
1205
1213
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
|
1206
1214
|
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.63.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.63.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:
|