google-apis-notebooks_v1 0.58.0 → 0.60.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: 1831c47167395539352b13191b4f16982dae357a9612bcb4cce2a4a3e3dfae98
4
- data.tar.gz: 9da8d4fcac1084f609d9346d2ccf4953c2254648d6eb764322c925ca1f1bf3bc
3
+ metadata.gz: 916404cad5a8d7b0b09c751c74dae5bf17b511b42a9bc1fa79f4e36e4a358cb9
4
+ data.tar.gz: 6f054e3bcaccaad6c649f16c1c9b1118a964da2b371a91b0eca0765c8122e007
5
5
  SHA512:
6
- metadata.gz: 7bf32e5f69834afe20820d8fd6c0a3aa493cfe805252f82b66c9a818240d22e84dc7df34dfd144efbadfd7165e03b09e3198a6c660f40d28900c1f1723744fb9
7
- data.tar.gz: bf6e064d138e652447777ef4fdc71a59e14bfa28a982e763da0f66cb0a66c4990a4b36267a93d8e4f81726ecb89571656f682b898e2f938cd03ecd1bd075ba93
6
+ metadata.gz: 192fd5a49401c9b570c15044f4cbb68c49b9f276b31828a9425529324d666f7258a1dcca36ba5eb233aceea8dd288be4dcb772804fce1f09d848506022b9249f
7
+ data.tar.gz: 3985eaadf243af085f0c4ac33c203d2b2824279a6de90533a0af343f83f6e974544ea2272067b3076c6e99228351234540859485fed4bf68c896bac180da3daa
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-notebooks_v1
2
2
 
3
+ ### v0.60.0 (2025-10-19)
4
+
5
+ * Regenerated from discovery document revision 20251008
6
+ * Regenerated using generator version 0.18.0
7
+
8
+ ### v0.59.0 (2025-05-11)
9
+
10
+ * Regenerated from discovery document revision 20250430
11
+
3
12
  ### v0.58.0 (2025-05-04)
4
13
 
5
14
  * Regenerated using generator version 0.17.0
@@ -1406,6 +1406,13 @@ module Google
1406
1406
  # @return [Array<Google::Apis::NotebooksV1::Operation>]
1407
1407
  attr_accessor :operations
1408
1408
 
1409
+ # Unordered list. Unreachable resources. Populated when the request sets `
1410
+ # ListOperationsRequest.return_partial_success` and reads across collections e.g.
1411
+ # when attempting to list all resources across all supported locations.
1412
+ # Corresponds to the JSON property `unreachable`
1413
+ # @return [Array<String>]
1414
+ attr_accessor :unreachable
1415
+
1409
1416
  def initialize(**args)
1410
1417
  update!(**args)
1411
1418
  end
@@ -1414,6 +1421,7 @@ module Google
1414
1421
  def update!(**args)
1415
1422
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1416
1423
  @operations = args[:operations] if args.key?(:operations)
1424
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1417
1425
  end
1418
1426
  end
1419
1427
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module NotebooksV1
18
18
  # Version of the google-apis-notebooks_v1 gem
19
- GEM_VERSION = "0.58.0"
19
+ GEM_VERSION = "0.60.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20241204"
25
+ REVISION = "20251008"
26
26
  end
27
27
  end
28
28
  end
@@ -844,6 +844,7 @@ module Google
844
844
  property :next_page_token, as: 'nextPageToken'
845
845
  collection :operations, as: 'operations', class: Google::Apis::NotebooksV1::Operation, decorator: Google::Apis::NotebooksV1::Operation::Representation
846
846
 
847
+ collection :unreachable, as: 'unreachable'
847
848
  end
848
849
  end
849
850
 
@@ -84,6 +84,9 @@ module Google
84
84
  # Lists information about the supported locations for this service.
85
85
  # @param [String] name
86
86
  # The resource that owns the locations collection, if applicable.
87
+ # @param [Array<String>, String] extra_location_types
88
+ # Optional. Unless explicitly documented otherwise, don't use this unsupported
89
+ # field which is primarily intended for internal usage.
87
90
  # @param [String] filter
88
91
  # A filter to narrow down results to a preferred subset. The filtering language
89
92
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -111,11 +114,12 @@ module Google
111
114
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
112
115
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
113
116
  # @raise [Google::Apis::AuthorizationError] Authorization is required
114
- def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
117
+ def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
115
118
  command = make_simple_command(:get, 'v1/{+name}/locations', options)
116
119
  command.response_representation = Google::Apis::NotebooksV1::ListLocationsResponse::Representation
117
120
  command.response_class = Google::Apis::NotebooksV1::ListLocationsResponse
118
121
  command.params['name'] = name unless name.nil?
122
+ command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
119
123
  command.query['filter'] = filter unless filter.nil?
120
124
  command.query['pageSize'] = page_size unless page_size.nil?
121
125
  command.query['pageToken'] = page_token unless page_token.nil?
@@ -1430,6 +1434,13 @@ module Google
1430
1434
  # The standard list page size.
1431
1435
  # @param [String] page_token
1432
1436
  # The standard list page token.
1437
+ # @param [Boolean] return_partial_success
1438
+ # When set to `true`, operations that are reachable are returned as normal, and
1439
+ # those that are unreachable are returned in the [ListOperationsResponse.
1440
+ # unreachable] field. This can only be `true` when reading across collections e.
1441
+ # g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1442
+ # by default supported and will result in an `UNIMPLEMENTED` error if set unless
1443
+ # explicitly documented otherwise in service or product specific documentation.
1433
1444
  # @param [String] fields
1434
1445
  # Selector specifying which fields to include in a partial response.
1435
1446
  # @param [String] quota_user
@@ -1447,7 +1458,7 @@ module Google
1447
1458
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1448
1459
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1449
1460
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1450
- def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1461
+ 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)
1451
1462
  command = make_simple_command(:get, 'v1/{+name}/operations', options)
1452
1463
  command.response_representation = Google::Apis::NotebooksV1::ListOperationsResponse::Representation
1453
1464
  command.response_class = Google::Apis::NotebooksV1::ListOperationsResponse
@@ -1455,6 +1466,7 @@ module Google
1455
1466
  command.query['filter'] = filter unless filter.nil?
1456
1467
  command.query['pageSize'] = page_size unless page_size.nil?
1457
1468
  command.query['pageToken'] = page_token unless page_token.nil?
1469
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1458
1470
  command.query['fields'] = fields unless fields.nil?
1459
1471
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1460
1472
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-notebooks_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.58.0
4
+ version: 0.60.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-notebooks_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.58.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.60.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v1
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.8
76
+ rubygems_version: 3.6.9
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Notebooks API V1
79
79
  test_files: []