google-apis-workstations_v1 0.11.0 → 0.13.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: bb283c60d5ce5b8304e895b95811546716fc0fc36b256ecea712fcaeb795036f
|
4
|
+
data.tar.gz: 2e5e520ff3de28525c714f9e61308fac87d49bba1bd3079d122c6f8e9d52bad7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e7ce083da9026c86b5b41cb49add699c51bddc24360817bd252120224b998c831f337b131e0ba3e1b93c73f94708065a3914fce83bdf4f3691b5581121dec87
|
7
|
+
data.tar.gz: a9f45c6c55af5ab5d74473bba83eb7b4b31e35a99d5fd57a2022bc63517a2bdc2942ec2b17f817d431875dd21f2277c3c85c6b3fbd5eebdf7717a7e0157c905c
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Release history for google-apis-workstations_v1
|
2
2
|
|
3
|
+
### v0.13.0 (2024-06-26)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20240619
|
6
|
+
|
7
|
+
### v0.12.0 (2024-06-02)
|
8
|
+
|
9
|
+
* Regenerated from discovery document revision 20240528
|
10
|
+
|
3
11
|
### v0.11.0 (2024-05-19)
|
4
12
|
|
5
13
|
* Regenerated using generator version 0.15.0
|
@@ -327,11 +327,11 @@ module Google
|
|
327
327
|
end
|
328
328
|
end
|
329
329
|
|
330
|
-
# Configuration options for
|
330
|
+
# Configuration options for private workstation clusters.
|
331
331
|
class DomainConfig
|
332
332
|
include Google::Apis::Core::Hashable
|
333
333
|
|
334
|
-
# Immutable.
|
334
|
+
# Immutable. Whether Workstations endpoint is private.
|
335
335
|
# Corresponds to the JSON property `domain`
|
336
336
|
# @return [String]
|
337
337
|
attr_accessor :domain
|
@@ -502,7 +502,7 @@ module Google
|
|
502
502
|
# are input/output bound. * **Machine Type**: nested virtualization can only be
|
503
503
|
# enabled on workstation configurations that specify a machine_type in the N1 or
|
504
504
|
# N2 machine series. * **GPUs**: nested virtualization may not be enabled on
|
505
|
-
# workstation configurations with accelerators. * **Operating System**:
|
505
|
+
# workstation configurations with accelerators. * **Operating System**: because [
|
506
506
|
# Container-Optimized OS](https://cloud.google.com/compute/docs/images/os-
|
507
507
|
# details#container-optimized_os_cos) does not support nested virtualization,
|
508
508
|
# when nested virtualization is enabled, the underlying Compute Engine VM
|
@@ -571,6 +571,14 @@ module Google
|
|
571
571
|
# @return [Array<String>]
|
572
572
|
attr_accessor :tags
|
573
573
|
|
574
|
+
# Optional. Resource manager tags to be bound to this instance. Tag keys and
|
575
|
+
# values have the same definition as https://cloud.google.com/resource-manager/
|
576
|
+
# docs/tags/tags-overview Keys must be in the format `tagKeys/`tag_key_id``, and
|
577
|
+
# values are in the format `tagValues/456`.
|
578
|
+
# Corresponds to the JSON property `vmTags`
|
579
|
+
# @return [Hash<String,String>]
|
580
|
+
attr_accessor :vm_tags
|
581
|
+
|
574
582
|
def initialize(**args)
|
575
583
|
update!(**args)
|
576
584
|
end
|
@@ -590,6 +598,7 @@ module Google
|
|
590
598
|
@service_account_scopes = args[:service_account_scopes] if args.key?(:service_account_scopes)
|
591
599
|
@shielded_instance_config = args[:shielded_instance_config] if args.key?(:shielded_instance_config)
|
592
600
|
@tags = args[:tags] if args.key?(:tags)
|
601
|
+
@vm_tags = args[:vm_tags] if args.key?(:vm_tags)
|
593
602
|
end
|
594
603
|
end
|
595
604
|
|
@@ -740,6 +749,15 @@ module Google
|
|
740
749
|
# @return [String]
|
741
750
|
attr_accessor :expire_time
|
742
751
|
|
752
|
+
# Optional. Port for which the access token should be generated. If specified,
|
753
|
+
# the generated access token grants access only to the specified port of the
|
754
|
+
# workstation. If specified, values must be within the range [1 - 65535]. If not
|
755
|
+
# specified, the generated access token grants access to all ports of the
|
756
|
+
# workstation.
|
757
|
+
# Corresponds to the JSON property `port`
|
758
|
+
# @return [Fixnum]
|
759
|
+
attr_accessor :port
|
760
|
+
|
743
761
|
# Desired lifetime duration of the access token. This value must be at most 24
|
744
762
|
# hours. If a value is not specified, the token's lifetime will be set to a
|
745
763
|
# default value of 1 hour.
|
@@ -754,6 +772,7 @@ module Google
|
|
754
772
|
# Update properties of this object
|
755
773
|
def update!(**args)
|
756
774
|
@expire_time = args[:expire_time] if args.key?(:expire_time)
|
775
|
+
@port = args[:port] if args.key?(:port)
|
757
776
|
@ttl = args[:ttl] if args.key?(:ttl)
|
758
777
|
end
|
759
778
|
end
|
@@ -1322,37 +1341,27 @@ module Google
|
|
1322
1341
|
end
|
1323
1342
|
end
|
1324
1343
|
|
1325
|
-
#
|
1344
|
+
#
|
1326
1345
|
class PrivateClusterConfig
|
1327
1346
|
include Google::Apis::Core::Hashable
|
1328
1347
|
|
1329
|
-
#
|
1330
|
-
# cluster's service attachment. By default, the workstation cluster's project
|
1331
|
-
# and the VPC host project (if different) are allowed.
|
1348
|
+
#
|
1332
1349
|
# Corresponds to the JSON property `allowedProjects`
|
1333
1350
|
# @return [Array<String>]
|
1334
1351
|
attr_accessor :allowed_projects
|
1335
1352
|
|
1336
|
-
#
|
1337
|
-
# populated only when private endpoint is enabled. To access workstations in the
|
1338
|
-
# workstation cluster, create a new DNS zone mapping this domain name to an
|
1339
|
-
# internal IP address and a forwarding rule mapping that address to the service
|
1340
|
-
# attachment.
|
1353
|
+
#
|
1341
1354
|
# Corresponds to the JSON property `clusterHostname`
|
1342
1355
|
# @return [String]
|
1343
1356
|
attr_accessor :cluster_hostname
|
1344
1357
|
|
1345
|
-
#
|
1358
|
+
#
|
1346
1359
|
# Corresponds to the JSON property `enablePrivateEndpoint`
|
1347
1360
|
# @return [Boolean]
|
1348
1361
|
attr_accessor :enable_private_endpoint
|
1349
1362
|
alias_method :enable_private_endpoint?, :enable_private_endpoint
|
1350
1363
|
|
1351
|
-
#
|
1352
|
-
# attachemnt is created when private endpoint is enabled. To access workstations
|
1353
|
-
# in the workstation cluster, configure access to the managed service using [
|
1354
|
-
# Private Service Connect](https://cloud.google.com/vpc/docs/configure-private-
|
1355
|
-
# service-connect-services).
|
1364
|
+
#
|
1356
1365
|
# Corresponds to the JSON property `serviceAttachmentUri`
|
1357
1366
|
# @return [String]
|
1358
1367
|
attr_accessor :service_attachment_uri
|
@@ -1746,7 +1755,7 @@ module Google
|
|
1746
1755
|
# @return [String]
|
1747
1756
|
attr_accessor :display_name
|
1748
1757
|
|
1749
|
-
# Configuration options for
|
1758
|
+
# Configuration options for private workstation clusters.
|
1750
1759
|
# Corresponds to the JSON property `domainConfig`
|
1751
1760
|
# @return [Google::Apis::WorkstationsV1::DomainConfig]
|
1752
1761
|
attr_accessor :domain_config
|
@@ -1776,7 +1785,7 @@ module Google
|
|
1776
1785
|
# @return [String]
|
1777
1786
|
attr_accessor :network
|
1778
1787
|
|
1779
|
-
# Configuration
|
1788
|
+
# Optional. Configuration for private workstation cluster.
|
1780
1789
|
# Corresponds to the JSON property `privateClusterConfig`
|
1781
1790
|
# @return [Google::Apis::WorkstationsV1::PrivateClusterConfig]
|
1782
1791
|
attr_accessor :private_cluster_config
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WorkstationsV1
|
18
18
|
# Version of the google-apis-workstations_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.13.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 = "20240619"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -387,6 +387,7 @@ module Google
|
|
387
387
|
property :shielded_instance_config, as: 'shieldedInstanceConfig', class: Google::Apis::WorkstationsV1::GceShieldedInstanceConfig, decorator: Google::Apis::WorkstationsV1::GceShieldedInstanceConfig::Representation
|
388
388
|
|
389
389
|
collection :tags, as: 'tags'
|
390
|
+
hash :vm_tags, as: 'vmTags'
|
390
391
|
end
|
391
392
|
end
|
392
393
|
|
@@ -424,6 +425,7 @@ module Google
|
|
424
425
|
# @private
|
425
426
|
class Representation < Google::Apis::Core::JsonRepresentation
|
426
427
|
property :expire_time, as: 'expireTime'
|
428
|
+
property :port, as: 'port'
|
427
429
|
property :ttl, as: 'ttl'
|
428
430
|
end
|
429
431
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-workstations_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.13.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-27 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-workstations_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.13.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|