google-apis-notebooks_v2 0.26.0 → 0.27.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: fab9656607b127ca160eea5ddbceddd035eaea622f1d592b23f56ae2e16007b1
|
4
|
+
data.tar.gz: 961234458c1ee635c62ca3481a2f355c6aaaeedac39f994d98556aaff3240272
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 853a65d3b96d895dd95ed7923d805c1c340b3b1a29f0466834a353d7844bea4fd58a444d99117dea4908981d965d2684ac817fa2445040f814a100e841e4ccae
|
7
|
+
data.tar.gz: 0342ce55e04ca7662068aba6c396f4e772b7699e62a4319ad5a7147d9093c64fa1db5292e5d491a6b4a00f7fd2d12da39ed3870a8e7a2ef03b5db7cb5fc772a2
|
data/CHANGELOG.md
CHANGED
@@ -440,6 +440,11 @@ module Google
|
|
440
440
|
# @return [String]
|
441
441
|
attr_accessor :kms_key
|
442
442
|
|
443
|
+
# Optional. The resource policies to apply to the data disk.
|
444
|
+
# Corresponds to the JSON property `resourcePolicies`
|
445
|
+
# @return [Array<String>]
|
446
|
+
attr_accessor :resource_policies
|
447
|
+
|
443
448
|
def initialize(**args)
|
444
449
|
update!(**args)
|
445
450
|
end
|
@@ -450,6 +455,7 @@ module Google
|
|
450
455
|
@disk_size_gb = args[:disk_size_gb] if args.key?(:disk_size_gb)
|
451
456
|
@disk_type = args[:disk_type] if args.key?(:disk_type)
|
452
457
|
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
458
|
+
@resource_policies = args[:resource_policies] if args.key?(:resource_policies)
|
453
459
|
end
|
454
460
|
end
|
455
461
|
|
@@ -979,8 +985,8 @@ module Google
|
|
979
985
|
# @return [Hash<String,String>]
|
980
986
|
attr_accessor :labels
|
981
987
|
|
982
|
-
# Output only. The name of this notebook instance. Format: `projects
|
983
|
-
#
|
988
|
+
# Output only. Identifier. The name of this notebook instance. Format: `projects/
|
989
|
+
# `project_id`/locations/`location`/instances/`instance_id``
|
984
990
|
# Corresponds to the JSON property `name`
|
985
991
|
# @return [String]
|
986
992
|
attr_accessor :name
|
@@ -1125,6 +1131,13 @@ module Google
|
|
1125
1131
|
# @return [Array<Google::Apis::NotebooksV2::Operation>]
|
1126
1132
|
attr_accessor :operations
|
1127
1133
|
|
1134
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
1135
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
1136
|
+
# when attempting to list all resources across all supported locations.
|
1137
|
+
# Corresponds to the JSON property `unreachable`
|
1138
|
+
# @return [Array<String>]
|
1139
|
+
attr_accessor :unreachable
|
1140
|
+
|
1128
1141
|
def initialize(**args)
|
1129
1142
|
update!(**args)
|
1130
1143
|
end
|
@@ -1133,6 +1146,7 @@ module Google
|
|
1133
1146
|
def update!(**args)
|
1134
1147
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
1135
1148
|
@operations = args[:operations] if args.key?(:operations)
|
1149
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
1136
1150
|
end
|
1137
1151
|
end
|
1138
1152
|
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module NotebooksV2
|
18
18
|
# Version of the google-apis-notebooks_v2 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.27.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 = "20251008"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -436,6 +436,7 @@ module Google
|
|
436
436
|
property :disk_size_gb, :numeric_string => true, as: 'diskSizeGb'
|
437
437
|
property :disk_type, as: 'diskType'
|
438
438
|
property :kms_key, as: 'kmsKey'
|
439
|
+
collection :resource_policies, as: 'resourcePolicies'
|
439
440
|
end
|
440
441
|
end
|
441
442
|
|
@@ -611,6 +612,7 @@ module Google
|
|
611
612
|
property :next_page_token, as: 'nextPageToken'
|
612
613
|
collection :operations, as: 'operations', class: Google::Apis::NotebooksV2::Operation, decorator: Google::Apis::NotebooksV2::Operation::Representation
|
613
614
|
|
615
|
+
collection :unreachable, as: 'unreachable'
|
614
616
|
end
|
615
617
|
end
|
616
618
|
|
@@ -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. Unless explicitly documented otherwise, don't use this unsupported
|
89
|
+
# field which is primarily intended 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
|
@@ -488,8 +488,8 @@ module Google
|
|
488
488
|
|
489
489
|
# UpdateInstance updates an Instance.
|
490
490
|
# @param [String] name
|
491
|
-
# Output only. The name of this notebook instance. Format: `projects
|
492
|
-
#
|
491
|
+
# Output only. Identifier. The name of this notebook instance. Format: `projects/
|
492
|
+
# `project_id`/locations/`location`/instances/`instance_id``
|
493
493
|
# @param [Google::Apis::NotebooksV2::Instance] instance_object
|
494
494
|
# @param [String] request_id
|
495
495
|
# Optional. Idempotent request UUID.
|
@@ -1038,6 +1038,13 @@ module Google
|
|
1038
1038
|
# The standard list page size.
|
1039
1039
|
# @param [String] page_token
|
1040
1040
|
# The standard list page token.
|
1041
|
+
# @param [Boolean] return_partial_success
|
1042
|
+
# When set to `true`, operations that are reachable are returned as normal, and
|
1043
|
+
# those that are unreachable are returned in the [ListOperationsResponse.
|
1044
|
+
# unreachable] field. This can only be `true` when reading across collections e.
|
1045
|
+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
|
1046
|
+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
|
1047
|
+
# explicitly documented otherwise in service or product specific documentation.
|
1041
1048
|
# @param [String] fields
|
1042
1049
|
# Selector specifying which fields to include in a partial response.
|
1043
1050
|
# @param [String] quota_user
|
@@ -1055,7 +1062,7 @@ module Google
|
|
1055
1062
|
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
1056
1063
|
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
1057
1064
|
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
1058
|
-
def list_project_location_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
|
1065
|
+
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)
|
1059
1066
|
command = make_simple_command(:get, 'v2/{+name}/operations', options)
|
1060
1067
|
command.response_representation = Google::Apis::NotebooksV2::ListOperationsResponse::Representation
|
1061
1068
|
command.response_class = Google::Apis::NotebooksV2::ListOperationsResponse
|
@@ -1063,6 +1070,7 @@ module Google
|
|
1063
1070
|
command.query['filter'] = filter unless filter.nil?
|
1064
1071
|
command.query['pageSize'] = page_size unless page_size.nil?
|
1065
1072
|
command.query['pageToken'] = page_token unless page_token.nil?
|
1073
|
+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
|
1066
1074
|
command.query['fields'] = fields unless fields.nil?
|
1067
1075
|
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
1068
1076
|
execute_or_queue_command(command, &block)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-notebooks_v2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.27.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_v2/CHANGELOG.md
|
60
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.
|
60
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.27.0
|
61
61
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v2
|
62
62
|
rdoc_options: []
|
63
63
|
require_paths:
|