google-apis-workstations_v1 0.15.0 → 0.16.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: d0a2f79db7d74e118184da9ec26b857b17c5f0e9409d595869869eabab654f08
|
|
4
|
+
data.tar.gz: 2908d763f9a147eafff4425fb4c504ffe32018cf2bcb1cc7015454340f556b49
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8ae3586e89a5712559b7be9cfda5f80dc7544d8f33cb83dca735e01ca9b773fb89ed166b4039dc8491be61ae979e94154b7bad3131499f80413c379f44d02ba2
|
|
7
|
+
data.tar.gz: 0cef74910be848aa82251a395c84a50ad5e97e657cbaaa769eaee3dda9b39bfad23a92a0051990f6f2b658d571d10ca07532c3e9fcb27f301d65dec99e9b0dea
|
data/CHANGELOG.md
CHANGED
|
@@ -1973,6 +1973,15 @@ module Google
|
|
|
1973
1973
|
# @return [String]
|
|
1974
1974
|
attr_accessor :etag
|
|
1975
1975
|
|
|
1976
|
+
# Optional. Grant creator of a workstation `roles/workstations.policyAdmin` role
|
|
1977
|
+
# along with `roles/workstations.user` role on the workstation created by them.
|
|
1978
|
+
# This allows workstation users to share access to either their entire
|
|
1979
|
+
# workstation, or individual ports. Defaults to false.
|
|
1980
|
+
# Corresponds to the JSON property `grantWorkstationAdminRoleOnCreate`
|
|
1981
|
+
# @return [Boolean]
|
|
1982
|
+
attr_accessor :grant_workstation_admin_role_on_create
|
|
1983
|
+
alias_method :grant_workstation_admin_role_on_create?, :grant_workstation_admin_role_on_create
|
|
1984
|
+
|
|
1976
1985
|
# Runtime host for a workstation.
|
|
1977
1986
|
# Corresponds to the JSON property `host`
|
|
1978
1987
|
# @return [Google::Apis::WorkstationsV1::Host]
|
|
@@ -1995,6 +2004,18 @@ module Google
|
|
|
1995
2004
|
# @return [Hash<String,String>]
|
|
1996
2005
|
attr_accessor :labels
|
|
1997
2006
|
|
|
2007
|
+
# Optional. Maximum number of workstations under this config a user can have `
|
|
2008
|
+
# workstations.workstation.use` permission on. Only enforced on
|
|
2009
|
+
# CreateWorkstation API calls on the user issuing the API request. Can be
|
|
2010
|
+
# overridden by: - granting a user workstations.workstationConfigs.
|
|
2011
|
+
# exemptMaxUsableWorkstationLimit permission, or - having a user with that
|
|
2012
|
+
# permission create a workstation and granting another user `workstations.
|
|
2013
|
+
# workstation.use` permission on that workstation. If not specified defaults to
|
|
2014
|
+
# 0 which indicates unlimited.
|
|
2015
|
+
# Corresponds to the JSON property `maxUsableWorkstations`
|
|
2016
|
+
# @return [Fixnum]
|
|
2017
|
+
attr_accessor :max_usable_workstations
|
|
2018
|
+
|
|
1998
2019
|
# Identifier. Full name of this workstation configuration.
|
|
1999
2020
|
# Corresponds to the JSON property `name`
|
|
2000
2021
|
# @return [String]
|
|
@@ -2076,9 +2097,11 @@ module Google
|
|
|
2076
2097
|
@encryption_key = args[:encryption_key] if args.key?(:encryption_key)
|
|
2077
2098
|
@ephemeral_directories = args[:ephemeral_directories] if args.key?(:ephemeral_directories)
|
|
2078
2099
|
@etag = args[:etag] if args.key?(:etag)
|
|
2100
|
+
@grant_workstation_admin_role_on_create = args[:grant_workstation_admin_role_on_create] if args.key?(:grant_workstation_admin_role_on_create)
|
|
2079
2101
|
@host = args[:host] if args.key?(:host)
|
|
2080
2102
|
@idle_timeout = args[:idle_timeout] if args.key?(:idle_timeout)
|
|
2081
2103
|
@labels = args[:labels] if args.key?(:labels)
|
|
2104
|
+
@max_usable_workstations = args[:max_usable_workstations] if args.key?(:max_usable_workstations)
|
|
2082
2105
|
@name = args[:name] if args.key?(:name)
|
|
2083
2106
|
@persistent_directories = args[:persistent_directories] if args.key?(:persistent_directories)
|
|
2084
2107
|
@readiness_checks = args[:readiness_checks] if args.key?(:readiness_checks)
|
|
@@ -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.16.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.15.1"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20240820"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -725,10 +725,12 @@ module Google
|
|
|
725
725
|
collection :ephemeral_directories, as: 'ephemeralDirectories', class: Google::Apis::WorkstationsV1::EphemeralDirectory, decorator: Google::Apis::WorkstationsV1::EphemeralDirectory::Representation
|
|
726
726
|
|
|
727
727
|
property :etag, as: 'etag'
|
|
728
|
+
property :grant_workstation_admin_role_on_create, as: 'grantWorkstationAdminRoleOnCreate'
|
|
728
729
|
property :host, as: 'host', class: Google::Apis::WorkstationsV1::Host, decorator: Google::Apis::WorkstationsV1::Host::Representation
|
|
729
730
|
|
|
730
731
|
property :idle_timeout, as: 'idleTimeout'
|
|
731
732
|
hash :labels, as: 'labels'
|
|
733
|
+
property :max_usable_workstations, as: 'maxUsableWorkstations'
|
|
732
734
|
property :name, as: 'name'
|
|
733
735
|
collection :persistent_directories, as: 'persistentDirectories', class: Google::Apis::WorkstationsV1::PersistentDirectory, decorator: Google::Apis::WorkstationsV1::PersistentDirectory::Representation
|
|
734
736
|
|
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.16.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-08-
|
|
11
|
+
date: 2024-08-25 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.16.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: []
|