google-apis-workstations_v1 0.12.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
@@ -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
|
@@ -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-06-
|
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: []
|