google-apis-notebooks_v2 0.13.0 → 0.14.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 88c75e39eb3dca0423368ce05c3e5918bc6fd0bae4a239bc3bc71d4a9920c9d0
|
4
|
+
data.tar.gz: 28b9ad4361229bbe4c2d9d2452a48ad4372c60e8247b801e5e2ddd12e9f448b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7443101985f10aa6ae5fee2e1551e338cda5e24986e2f10ff5ee2b257e9ef790c9b2a83fc7db9575d03ffe658d4ce527afe2818133ebca4adc53ffac3b8e8f0e
|
7
|
+
data.tar.gz: 9e350693edfd335a1bf36fbb7008fa49c1126fb661db707ad35df6d8cb92af63d6118ca0f422540a6988f9028481cf35c9007feb4f602822abf116b296b2b711
|
data/CHANGELOG.md
CHANGED
@@ -50,6 +50,29 @@ module Google
|
|
50
50
|
end
|
51
51
|
end
|
52
52
|
|
53
|
+
# An access configuration attached to an instance's network interface.
|
54
|
+
class AccessConfig
|
55
|
+
include Google::Apis::Core::Hashable
|
56
|
+
|
57
|
+
# An external IP address associated with this instance. Specify an unused static
|
58
|
+
# external IP address available to the project or leave this field undefined to
|
59
|
+
# use an IP from a shared ephemeral IP address pool. If you specify a static
|
60
|
+
# external IP address, it must live in the same region as the zone of the
|
61
|
+
# instance.
|
62
|
+
# Corresponds to the JSON property `externalIp`
|
63
|
+
# @return [String]
|
64
|
+
attr_accessor :external_ip
|
65
|
+
|
66
|
+
def initialize(**args)
|
67
|
+
update!(**args)
|
68
|
+
end
|
69
|
+
|
70
|
+
# Update properties of this object
|
71
|
+
def update!(**args)
|
72
|
+
@external_ip = args[:external_ip] if args.key?(:external_ip)
|
73
|
+
end
|
74
|
+
end
|
75
|
+
|
53
76
|
# Associates `members`, or principals, with a `role`.
|
54
77
|
class Binding
|
55
78
|
include Google::Apis::Core::Hashable
|
@@ -786,6 +809,18 @@ module Google
|
|
786
809
|
# @return [String]
|
787
810
|
attr_accessor :proxy_uri
|
788
811
|
|
812
|
+
# Output only. Reserved for future use for Zone Isolation.
|
813
|
+
# Corresponds to the JSON property `satisfiesPzi`
|
814
|
+
# @return [Boolean]
|
815
|
+
attr_accessor :satisfies_pzi
|
816
|
+
alias_method :satisfies_pzi?, :satisfies_pzi
|
817
|
+
|
818
|
+
# Output only. Reserved for future use for Zone Separation.
|
819
|
+
# Corresponds to the JSON property `satisfiesPzs`
|
820
|
+
# @return [Boolean]
|
821
|
+
attr_accessor :satisfies_pzs
|
822
|
+
alias_method :satisfies_pzs?, :satisfies_pzs
|
823
|
+
|
789
824
|
# Output only. The state of this instance.
|
790
825
|
# Corresponds to the JSON property `state`
|
791
826
|
# @return [String]
|
@@ -824,6 +859,8 @@ module Google
|
|
824
859
|
@labels = args[:labels] if args.key?(:labels)
|
825
860
|
@name = args[:name] if args.key?(:name)
|
826
861
|
@proxy_uri = args[:proxy_uri] if args.key?(:proxy_uri)
|
862
|
+
@satisfies_pzi = args[:satisfies_pzi] if args.key?(:satisfies_pzi)
|
863
|
+
@satisfies_pzs = args[:satisfies_pzs] if args.key?(:satisfies_pzs)
|
827
864
|
@state = args[:state] if args.key?(:state)
|
828
865
|
@third_party_proxy_url = args[:third_party_proxy_url] if args.key?(:third_party_proxy_url)
|
829
866
|
@update_time = args[:update_time] if args.key?(:update_time)
|
@@ -966,6 +1003,14 @@ module Google
|
|
966
1003
|
class NetworkInterface
|
967
1004
|
include Google::Apis::Core::Hashable
|
968
1005
|
|
1006
|
+
# Optional. An array of configurations for this interface. Currently, only one
|
1007
|
+
# access config, ONE_TO_ONE_NAT, is supported. If no accessConfigs specified,
|
1008
|
+
# the instance will have an external internet access through an ephemeral
|
1009
|
+
# external IP address.
|
1010
|
+
# Corresponds to the JSON property `accessConfigs`
|
1011
|
+
# @return [Array<Google::Apis::NotebooksV2::AccessConfig>]
|
1012
|
+
attr_accessor :access_configs
|
1013
|
+
|
969
1014
|
# Optional. The name of the VPC that this VM instance is in. Format: `projects/`
|
970
1015
|
# project_id`/global/networks/`network_id``
|
971
1016
|
# Corresponds to the JSON property `network`
|
@@ -990,6 +1035,7 @@ module Google
|
|
990
1035
|
|
991
1036
|
# Update properties of this object
|
992
1037
|
def update!(**args)
|
1038
|
+
@access_configs = args[:access_configs] if args.key?(:access_configs)
|
993
1039
|
@network = args[:network] if args.key?(:network)
|
994
1040
|
@nic_type = args[:nic_type] if args.key?(:nic_type)
|
995
1041
|
@subnet = args[:subnet] if args.key?(:subnet)
|
@@ -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.14.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.15.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20240530"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -28,6 +28,12 @@ module Google
|
|
28
28
|
include Google::Apis::Core::JsonObjectSupport
|
29
29
|
end
|
30
30
|
|
31
|
+
class AccessConfig
|
32
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
|
+
|
34
|
+
include Google::Apis::Core::JsonObjectSupport
|
35
|
+
end
|
36
|
+
|
31
37
|
class Binding
|
32
38
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
33
39
|
|
@@ -288,6 +294,13 @@ module Google
|
|
288
294
|
end
|
289
295
|
end
|
290
296
|
|
297
|
+
class AccessConfig
|
298
|
+
# @private
|
299
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
300
|
+
property :external_ip, as: 'externalIp'
|
301
|
+
end
|
302
|
+
end
|
303
|
+
|
291
304
|
class Binding
|
292
305
|
# @private
|
293
306
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -466,6 +479,8 @@ module Google
|
|
466
479
|
hash :labels, as: 'labels'
|
467
480
|
property :name, as: 'name'
|
468
481
|
property :proxy_uri, as: 'proxyUri'
|
482
|
+
property :satisfies_pzi, as: 'satisfiesPzi'
|
483
|
+
property :satisfies_pzs, as: 'satisfiesPzs'
|
469
484
|
property :state, as: 'state'
|
470
485
|
property :third_party_proxy_url, as: 'thirdPartyProxyUrl'
|
471
486
|
property :update_time, as: 'updateTime'
|
@@ -516,6 +531,8 @@ module Google
|
|
516
531
|
class NetworkInterface
|
517
532
|
# @private
|
518
533
|
class Representation < Google::Apis::Core::JsonRepresentation
|
534
|
+
collection :access_configs, as: 'accessConfigs', class: Google::Apis::NotebooksV2::AccessConfig, decorator: Google::Apis::NotebooksV2::AccessConfig::Representation
|
535
|
+
|
519
536
|
property :network, as: 'network'
|
520
537
|
property :nic_type, as: 'nicType'
|
521
538
|
property :subnet, as: 'subnet'
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.14.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: 2024-
|
11
|
+
date: 2024-06-09 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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/main/generated/google-apis-notebooks_v2/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-notebooks_v2/v0.14.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-notebooks_v2
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|