google-apis-workstations_v1beta 0.4.0 → 0.5.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: dcb8f037f1f580900bc6903853397e4d0e43a74813344eae87351e2c88f59d24
|
4
|
+
data.tar.gz: 3ef6eac0b4c6c0ef41a537e621af332777b99669c4085075b307105455b11b98
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e34c514b52c5b1d6418663345dd9c60ee77f48bbeb3ed92b9bc9883a2ad85002e4b752ca8ac12b1aea867a190ec198fa3a2183dffbeaf5e6e649361b21311450
|
7
|
+
data.tar.gz: d6ea5e1ccd7ada3153a53dd1167be19573e9ecaf1f62d9ff091968682689eb06319090184dc4ec864b2fa0817f53cb5e69271eb718c182bf81c872974100b3a1
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,10 @@
|
|
1
1
|
# Release history for google-apis-workstations_v1beta
|
2
2
|
|
3
|
+
### v0.5.0 (2023-02-15)
|
4
|
+
|
5
|
+
* Regenerated from discovery document revision 20230208
|
6
|
+
* Regenerated using generator version 0.12.0
|
7
|
+
|
3
8
|
### v0.4.0 (2023-02-05)
|
4
9
|
|
5
10
|
* Regenerated from discovery document revision 20230201
|
@@ -232,21 +232,23 @@ module Google
|
|
232
232
|
end
|
233
233
|
end
|
234
234
|
|
235
|
-
# A customer-
|
235
|
+
# A customer-managed encryption key for the Compute Engine resources of this
|
236
236
|
# workstation configuration.
|
237
237
|
class CustomerEncryptionKey
|
238
238
|
include Google::Apis::Core::Hashable
|
239
239
|
|
240
|
-
# The name of the
|
241
|
-
#
|
240
|
+
# The name of the Google Cloud KMS encryption key. For example, `projects/
|
241
|
+
# PROJECT_ID/locations/REGION/keyRings/KEY_RING/cryptoKeys/KEY_NAME`.
|
242
242
|
# Corresponds to the JSON property `kmsKey`
|
243
243
|
# @return [String]
|
244
244
|
attr_accessor :kms_key
|
245
245
|
|
246
|
-
# The service account
|
247
|
-
#
|
248
|
-
#
|
249
|
-
#
|
246
|
+
# The service account to use with the specified KMS key. We recommend that you
|
247
|
+
# use a separate service account and follow KMS best practices. For more
|
248
|
+
# information, see [Separation of duties](https://cloud.google.com/kms/docs/
|
249
|
+
# separation-of-duties) and `gcloud kms keys add-iam-policy-binding` [`--member`]
|
250
|
+
# (https://cloud.google.com/sdk/gcloud/reference/kms/keys/add-iam-policy-binding#
|
251
|
+
# --member).
|
250
252
|
# Corresponds to the JSON property `kmsKeyServiceAccount`
|
251
253
|
# @return [String]
|
252
254
|
attr_accessor :kms_key_service_account
|
@@ -670,7 +672,7 @@ module Google
|
|
670
672
|
# @return [Array<String>]
|
671
673
|
attr_accessor :unreachable
|
672
674
|
|
673
|
-
# The requested clusters.
|
675
|
+
# The requested workstation clusters.
|
674
676
|
# Corresponds to the JSON property `workstationClusters`
|
675
677
|
# @return [Array<Google::Apis::WorkstationsV1beta::WorkstationCluster>]
|
676
678
|
attr_accessor :workstation_clusters
|
@@ -1475,7 +1477,7 @@ module Google
|
|
1475
1477
|
# @return [String]
|
1476
1478
|
attr_accessor :display_name
|
1477
1479
|
|
1478
|
-
# A customer-
|
1480
|
+
# A customer-managed encryption key for the Compute Engine resources of this
|
1479
1481
|
# workstation configuration.
|
1480
1482
|
# Corresponds to the JSON property `encryptionKey`
|
1481
1483
|
# @return [Google::Apis::WorkstationsV1beta::CustomerEncryptionKey]
|
@@ -1523,9 +1525,9 @@ module Google
|
|
1523
1525
|
alias_method :reconciling?, :reconciling
|
1524
1526
|
|
1525
1527
|
# How long to wait before automatically stopping a workstation after it started.
|
1526
|
-
# A value of 0 indicates that workstations using this
|
1527
|
-
# out. Must be greater than 0 and less than 24 hours if encryption_key is
|
1528
|
-
# Defaults to 12 hours.
|
1528
|
+
# A value of 0 indicates that workstations using this configuration should never
|
1529
|
+
# time out. Must be greater than 0 and less than 24 hours if encryption_key is
|
1530
|
+
# set. Defaults to 12 hours.
|
1529
1531
|
# Corresponds to the JSON property `runningTimeout`
|
1530
1532
|
# @return [String]
|
1531
1533
|
attr_accessor :running_timeout
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module WorkstationsV1beta
|
18
18
|
# Version of the google-apis-workstations_v1beta gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.5.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230208"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -207,7 +207,7 @@ module Google
|
|
207
207
|
# If set, validate the request and preview the review, but do not actually apply
|
208
208
|
# it.
|
209
209
|
# @param [String] workstation_cluster_id
|
210
|
-
# Required. ID to use for the cluster.
|
210
|
+
# Required. ID to use for the workstation cluster.
|
211
211
|
# @param [String] fields
|
212
212
|
# Selector specifying which fields to include in a partial response.
|
213
213
|
# @param [String] quota_user
|
@@ -241,17 +241,16 @@ module Google
|
|
241
241
|
|
242
242
|
# Deletes the specified workstation cluster.
|
243
243
|
# @param [String] name
|
244
|
-
# Required. Name of the cluster to delete.
|
244
|
+
# Required. Name of the workstation cluster to delete.
|
245
245
|
# @param [String] etag
|
246
|
-
# If set, the request will be rejected if the latest version of the
|
247
|
-
# the server does not have this etag.
|
246
|
+
# If set, the request will be rejected if the latest version of the workstation
|
247
|
+
# cluster on the server does not have this etag.
|
248
248
|
# @param [Boolean] force
|
249
|
-
# If set, any workstation configurations and workstations in the
|
250
|
-
# also
|
251
|
-
# configurations or workstations.
|
249
|
+
# If set, any workstation configurations and workstations in the workstation
|
250
|
+
# cluster are also deleted. Otherwise, the request only works if the workstation
|
251
|
+
# cluster has no configurations or workstations.
|
252
252
|
# @param [Boolean] validate_only
|
253
|
-
# If set, validate the request and preview the review, but do not
|
254
|
-
# it.
|
253
|
+
# If set, validate the request and preview the review, but do not apply it.
|
255
254
|
# @param [String] fields
|
256
255
|
# Selector specifying which fields to include in a partial response.
|
257
256
|
# @param [String] quota_user
|
@@ -353,10 +352,11 @@ module Google
|
|
353
352
|
# Full name of this resource.
|
354
353
|
# @param [Google::Apis::WorkstationsV1beta::WorkstationCluster] workstation_cluster_object
|
355
354
|
# @param [Boolean] allow_missing
|
356
|
-
# If set, and the cluster is not found, a new cluster
|
357
|
-
# situation, update_mask is ignored.
|
355
|
+
# If set, and the workstation cluster is not found, a new workstation cluster
|
356
|
+
# will be created. In this situation, update_mask is ignored.
|
358
357
|
# @param [String] update_mask
|
359
|
-
# Required. Mask
|
358
|
+
# Required. Mask that specifies which fields in the workstation cluster should
|
359
|
+
# be updated.
|
360
360
|
# @param [Boolean] validate_only
|
361
361
|
# If set, validate the request and preview the review, but do not actually apply
|
362
362
|
# it.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-workstations_v1beta
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.5.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: 2023-02-
|
11
|
+
date: 2023-02-19 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.11.0
|
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.11.0
|
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/main/generated/google-apis-workstations_v1beta/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.5.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1beta
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|