google-apis-notebooks_v1 0.11.0 → 0.12.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/OVERVIEW.md +1 -1
- data/lib/google/apis/notebooks_v1.rb +2 -2
- data/lib/google/apis/notebooks_v1/classes.rb +6 -0
- data/lib/google/apis/notebooks_v1/gem_version.rb +3 -3
- data/lib/google/apis/notebooks_v1/representations.rb +1 -0
- data/lib/google/apis/notebooks_v1/service.rb +2 -2
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 10452921032e5ce604c6b86e4902fd224f9bbf74e9bb57125ad8a370e2734002
|
4
|
+
data.tar.gz: f4dc00c434435b7d66f36feaa2ce5cba9bdcc54c9a2905c5e329045ceff89a53
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80dbbdf7e381c4e0e45fd958e0ec42b2f3013371a24f7841a6244bc9526c42e6acfa1fd526050de9792165a4c6dfb78a3101cc8b7b2f0187284196718a1a4467
|
7
|
+
data.tar.gz: ba48dd90a206275301bccdaa6ab00e454badec7d006404c2e82c9b057093e988170097471212ca7fd6595c82faa595c60aaaa6459f3217fdd58859761765d2cb
|
data/CHANGELOG.md
CHANGED
data/OVERVIEW.md
CHANGED
@@ -79,7 +79,7 @@ Gem names for modern clients are often of the form `google-cloud-<service_name>`
|
|
79
79
|
|
80
80
|
**For most users, we recommend the modern client, if one is available.** Compared with simple clients, modern clients are generally much easier to use and more Ruby-like, support more advanced features such as streaming and long-running operations, and often provide much better performance. You may consider using a simple client instead, if a modern client is not yet available for the service you want to use, or if you are not able to use gRPC on your infrastructure.
|
81
81
|
|
82
|
-
The [product documentation](https://cloud.google.com/
|
82
|
+
The [product documentation](https://cloud.google.com/notebooks/docs/) may provide guidance regarding the preferred client library to use.
|
83
83
|
|
84
84
|
## Supported Ruby versions
|
85
85
|
|
@@ -21,9 +21,9 @@ module Google
|
|
21
21
|
module Apis
|
22
22
|
# Notebooks API
|
23
23
|
#
|
24
|
-
#
|
24
|
+
# Notebooks API is used to manage notebook resources in Google Cloud.
|
25
25
|
#
|
26
|
-
# @see https://cloud.google.com/
|
26
|
+
# @see https://cloud.google.com/notebooks/docs/
|
27
27
|
module NotebooksV1
|
28
28
|
# Version of the Notebooks API this client connects to.
|
29
29
|
# This is NOT the gem version.
|
@@ -393,6 +393,11 @@ module Google
|
|
393
393
|
# @return [Google::Apis::NotebooksV1::ExecutionTemplate]
|
394
394
|
attr_accessor :execution_template
|
395
395
|
|
396
|
+
# Output only. The URI of the external job used to execute the notebook.
|
397
|
+
# Corresponds to the JSON property `jobUri`
|
398
|
+
# @return [String]
|
399
|
+
attr_accessor :job_uri
|
400
|
+
|
396
401
|
# Output only. The resource name of the execute. Format: `projects/`project_id`/
|
397
402
|
# locations/`location`/execution/`execution_id`
|
398
403
|
# Corresponds to the JSON property `name`
|
@@ -424,6 +429,7 @@ module Google
|
|
424
429
|
@description = args[:description] if args.key?(:description)
|
425
430
|
@display_name = args[:display_name] if args.key?(:display_name)
|
426
431
|
@execution_template = args[:execution_template] if args.key?(:execution_template)
|
432
|
+
@job_uri = args[:job_uri] if args.key?(:job_uri)
|
427
433
|
@name = args[:name] if args.key?(:name)
|
428
434
|
@output_notebook_file = args[:output_notebook_file] if args.key?(:output_notebook_file)
|
429
435
|
@state = args[:state] if args.key?(:state)
|
@@ -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.
|
19
|
+
GEM_VERSION = "0.12.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210626"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -499,6 +499,7 @@ module Google
|
|
499
499
|
property :display_name, as: 'displayName'
|
500
500
|
property :execution_template, as: 'executionTemplate', class: Google::Apis::NotebooksV1::ExecutionTemplate, decorator: Google::Apis::NotebooksV1::ExecutionTemplate::Representation
|
501
501
|
|
502
|
+
property :job_uri, as: 'jobUri'
|
502
503
|
property :name, as: 'name'
|
503
504
|
property :output_notebook_file, as: 'outputNotebookFile'
|
504
505
|
property :state, as: 'state'
|
@@ -22,7 +22,7 @@ module Google
|
|
22
22
|
module NotebooksV1
|
23
23
|
# Notebooks API
|
24
24
|
#
|
25
|
-
#
|
25
|
+
# Notebooks API is used to manage notebook resources in Google Cloud.
|
26
26
|
#
|
27
27
|
# @example
|
28
28
|
# require 'google/apis/notebooks_v1'
|
@@ -30,7 +30,7 @@ module Google
|
|
30
30
|
# Notebooks = Google::Apis::NotebooksV1 # Alias the module
|
31
31
|
# service = Notebooks::AIPlatformNotebooksService.new
|
32
32
|
#
|
33
|
-
# @see https://cloud.google.com/
|
33
|
+
# @see https://cloud.google.com/notebooks/docs/
|
34
34
|
class AIPlatformNotebooksService < Google::Apis::Core::BaseService
|
35
35
|
# @return [String]
|
36
36
|
# API key. Your API key identifies your project and provides you with API access,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-notebooks_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.4'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -58,7 +58,7 @@ licenses:
|
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
60
|
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-notebooks_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v1/v0.12.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-notebooks_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|