google-apis-workstations_v1beta 0.8.0 → 0.9.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: 9678559b59dec3a737de9ac01dbf4944c852bbe4a96d75bad4c0d4a24177fc52
4
- data.tar.gz: ded75b8aab5b1c9eed421683d655bc217aa446e7a34ed0552876b3a0a24dbf57
3
+ metadata.gz: f15ae3a9d45ec946fda986f7ae0bb997b5ac396fe0e1c2b4852de61dc9800bb4
4
+ data.tar.gz: 6c70ba597bd4cf451504fa59e9bdeff0dd89990a963f714ed336917e6381ef0b
5
5
  SHA512:
6
- metadata.gz: c1bba1bfb4b4ca283aef0b37d8a06ee73fe81113e7a5fafa86ba1dc77f182c3cec432d9f7b2e0199df83fa34cf08ac61d8915fdcca218eb444bd7a53d116b351
7
- data.tar.gz: 8a067534d0e6a1909a23a4af126d32b8c6b0134023a0b4802781fefa4e395147856d093e45d6004241128ed38a23537c42b68e2aa259d8a9406c6d013260d4fe
6
+ metadata.gz: 9d42b3442e903633af0a1c906d63d37d230e74b3d554b8e48577cfb254ab3f2cf481d2f3d0ea4ae37316cc1399d67c4cbb86de509b8bc18a86821168bd5c8ca0
7
+ data.tar.gz: b6fb0d872a5eefbce6da25a2c842c2389411696e6a6899183350b3ab521e6b3e4f256d5065a5e4ee96a607458cc6149f895d202a35b036a42c0f8b0792451d41
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.9.0 (2023-04-23)
4
+
5
+ * Regenerated from discovery document revision 20230412
6
+
3
7
  ### v0.8.0 (2023-04-02)
4
8
 
5
9
  * Regenerated from discovery document revision 20230327
@@ -202,7 +202,7 @@ module Google
202
202
  attr_accessor :env
203
203
 
204
204
  # Docker image defining the container. This image must be accessible by the
205
- # config's service account.
205
+ # service account specified in the workstation configuration.
206
206
  # Corresponds to the JSON property `image`
207
207
  # @return [String]
208
208
  attr_accessor :image
@@ -237,15 +237,15 @@ module Google
237
237
  class CustomerEncryptionKey
238
238
  include Google::Apis::Core::Hashable
239
239
 
240
- # The name of the Google Cloud KMS encryption key. For example, `projects/
241
- # PROJECT_ID/locations/REGION/keyRings/KEY_RING/cryptoKeys/KEY_NAME`.
240
+ # Immutable. The name of the Google Cloud KMS encryption key. For example, `
241
+ # projects/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 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/
246
+ # Immutable. The service account to use with the specified KMS key. We recommend
247
+ # that you use a separate service account and follow KMS best practices. For
248
+ # more information, see [Separation of duties](https://cloud.google.com/kms/docs/
249
249
  # separation-of-duties) and `gcloud kms keys add-iam-policy-binding` [`--member`]
250
250
  # (https://cloud.google.com/sdk/gcloud/reference/kms/keys/add-iam-policy-binding#
251
251
  # --member).
@@ -368,10 +368,10 @@ module Google
368
368
  # @return [Fixnum]
369
369
  attr_accessor :pool_size
370
370
 
371
- # Email address of the service account that will be used on VM instances used to
372
- # support this config. If not set, VMs will run with a Google-managed service
373
- # account. This service account must have permission to pull the specified
374
- # container image, otherwise the image must be publicly accessible.
371
+ # Email address of the service account used on VM instances used to support this
372
+ # configuration. If not set, VMs run with a Google-managed service account. This
373
+ # service account must have permission to pull the specified container image;
374
+ # otherwise, the image must be publicly accessible.
375
375
  # Corresponds to the JSON property `serviceAccount`
376
376
  # @return [String]
377
377
  attr_accessor :service_account
@@ -1259,8 +1259,13 @@ module Google
1259
1259
  # @return [String]
1260
1260
  attr_accessor :display_name
1261
1261
 
1262
+ # Environment variables passed to the workstation container.
1263
+ # Corresponds to the JSON property `env`
1264
+ # @return [Hash<String,String>]
1265
+ attr_accessor :env
1266
+
1262
1267
  # Checksum computed by the server. May be sent on update and delete requests to
1263
- # ensure that the client has an up-to-date value before proceeding.
1268
+ # make sure that the client has an up-to-date value before proceeding.
1264
1269
  # Corresponds to the JSON property `etag`
1265
1270
  # @return [String]
1266
1271
  attr_accessor :etag
@@ -1316,6 +1321,7 @@ module Google
1316
1321
  @create_time = args[:create_time] if args.key?(:create_time)
1317
1322
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1318
1323
  @display_name = args[:display_name] if args.key?(:display_name)
1324
+ @env = args[:env] if args.key?(:env)
1319
1325
  @etag = args[:etag] if args.key?(:etag)
1320
1326
  @host = args[:host] if args.key?(:host)
1321
1327
  @labels = args[:labels] if args.key?(:labels)
@@ -1342,6 +1348,14 @@ module Google
1342
1348
  # @return [Array<Google::Apis::WorkstationsV1beta::Status>]
1343
1349
  attr_accessor :conditions
1344
1350
 
1351
+ # Output only. The private IP address of the control plane for this cluster.
1352
+ # Workstation VMs need access to this IP address to work with the service, so
1353
+ # make sure that your firewall rules allow egress from the workstation VMs to
1354
+ # this address.
1355
+ # Corresponds to the JSON property `controlPlaneIp`
1356
+ # @return [String]
1357
+ attr_accessor :control_plane_ip
1358
+
1345
1359
  # Output only. Time when this resource was created.
1346
1360
  # Corresponds to the JSON property `createTime`
1347
1361
  # @return [String]
@@ -1366,7 +1380,7 @@ module Google
1366
1380
  attr_accessor :display_name
1367
1381
 
1368
1382
  # Checksum computed by the server. May be sent on update and delete requests to
1369
- # ensure that the client has an up-to-date value before proceeding.
1383
+ # make sure that the client has an up-to-date value before proceeding.
1370
1384
  # Corresponds to the JSON property `etag`
1371
1385
  # @return [String]
1372
1386
  attr_accessor :etag
@@ -1425,6 +1439,7 @@ module Google
1425
1439
  def update!(**args)
1426
1440
  @annotations = args[:annotations] if args.key?(:annotations)
1427
1441
  @conditions = args[:conditions] if args.key?(:conditions)
1442
+ @control_plane_ip = args[:control_plane_ip] if args.key?(:control_plane_ip)
1428
1443
  @create_time = args[:create_time] if args.key?(:create_time)
1429
1444
  @degraded = args[:degraded] if args.key?(:degraded)
1430
1445
  @delete_time = args[:delete_time] if args.key?(:delete_time)
@@ -1485,6 +1500,15 @@ module Google
1485
1500
  # @return [String]
1486
1501
  attr_accessor :display_name
1487
1502
 
1503
+ # Whether to enable linux auditd logging on the workstation. When enabled, a
1504
+ # service account must also be specified that has logging.buckets.write
1505
+ # permission on the project. Operating system audit logging is distinct from [
1506
+ # Cloud Audit Logs](https://cloud.google.com/workstations/docs/audit-logging).
1507
+ # Corresponds to the JSON property `enableAuditAgent`
1508
+ # @return [Boolean]
1509
+ attr_accessor :enable_audit_agent
1510
+ alias_method :enable_audit_agent?, :enable_audit_agent
1511
+
1488
1512
  # A customer-managed encryption key for the Compute Engine resources of this
1489
1513
  # workstation configuration.
1490
1514
  # Corresponds to the JSON property `encryptionKey`
@@ -1492,7 +1516,7 @@ module Google
1492
1516
  attr_accessor :encryption_key
1493
1517
 
1494
1518
  # Checksum computed by the server. May be sent on update and delete requests to
1495
- # ensure that the client has an up-to-date value before proceeding.
1519
+ # make sure that the client has an up-to-date value before proceeding.
1496
1520
  # Corresponds to the JSON property `etag`
1497
1521
  # @return [String]
1498
1522
  attr_accessor :etag
@@ -1563,6 +1587,7 @@ module Google
1563
1587
  @degraded = args[:degraded] if args.key?(:degraded)
1564
1588
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1565
1589
  @display_name = args[:display_name] if args.key?(:display_name)
1590
+ @enable_audit_agent = args[:enable_audit_agent] if args.key?(:enable_audit_agent)
1566
1591
  @encryption_key = args[:encryption_key] if args.key?(:encryption_key)
1567
1592
  @etag = args[:etag] if args.key?(:etag)
1568
1593
  @host = args[:host] if args.key?(:host)
@@ -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.8.0"
19
+ GEM_VERSION = "0.9.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.12.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20230327"
25
+ REVISION = "20230412"
26
26
  end
27
27
  end
28
28
  end
@@ -538,6 +538,7 @@ module Google
538
538
  property :create_time, as: 'createTime'
539
539
  property :delete_time, as: 'deleteTime'
540
540
  property :display_name, as: 'displayName'
541
+ hash :env, as: 'env'
541
542
  property :etag, as: 'etag'
542
543
  property :host, as: 'host'
543
544
  hash :labels, as: 'labels'
@@ -555,6 +556,7 @@ module Google
555
556
  hash :annotations, as: 'annotations'
556
557
  collection :conditions, as: 'conditions', class: Google::Apis::WorkstationsV1beta::Status, decorator: Google::Apis::WorkstationsV1beta::Status::Representation
557
558
 
559
+ property :control_plane_ip, as: 'controlPlaneIp'
558
560
  property :create_time, as: 'createTime'
559
561
  property :degraded, as: 'degraded'
560
562
  property :delete_time, as: 'deleteTime'
@@ -584,6 +586,7 @@ module Google
584
586
  property :degraded, as: 'degraded'
585
587
  property :delete_time, as: 'deleteTime'
586
588
  property :display_name, as: 'displayName'
589
+ property :enable_audit_agent, as: 'enableAuditAgent'
587
590
  property :encryption_key, as: 'encryptionKey', class: Google::Apis::WorkstationsV1beta::CustomerEncryptionKey, decorator: Google::Apis::WorkstationsV1beta::CustomerEncryptionKey::Representation
588
591
 
589
592
  property :etag, as: 'etag'
@@ -394,7 +394,7 @@ module Google
394
394
  # If set, validate the request and preview the review, but do not actually apply
395
395
  # it.
396
396
  # @param [String] workstation_config_id
397
- # Required. ID to use for the config.
397
+ # Required. ID to use for the workstation configuration.
398
398
  # @param [String] fields
399
399
  # Selector specifying which fields to include in a partial response.
400
400
  # @param [String] quota_user
@@ -428,13 +428,14 @@ module Google
428
428
 
429
429
  # Deletes the specified workstation configuration.
430
430
  # @param [String] name
431
- # Required. Name of the config to delete.
431
+ # Required. Name of the workstation configuration to delete.
432
432
  # @param [String] etag
433
- # If set, the request will be rejected if the latest version of the config on
434
- # the server does not have this etag.
433
+ # If set, the request is rejected if the latest version of the workstation
434
+ # configuration on the server does not have this etag.
435
435
  # @param [Boolean] force
436
- # If set, any Workstations in the config will also be deleted. Otherwise, the
437
- # request will work only if the config has no workstations.
436
+ # If set, any workstations in the workstation configuration are also deleted.
437
+ # Otherwise, the request works only if the workstation configuration has no
438
+ # workstations.
438
439
  # @param [Boolean] validate_only
439
440
  # If set, validate the request and preview the review, but do not actually apply
440
441
  # it.
@@ -621,10 +622,11 @@ module Google
621
622
  # Full name of this resource.
622
623
  # @param [Google::Apis::WorkstationsV1beta::WorkstationConfig] workstation_config_object
623
624
  # @param [Boolean] allow_missing
624
- # If set, and the config is not found, a new config will be created. In this
625
- # situation, update_mask is ignored.
625
+ # If set and the workstation configuration is not found, a new workstation
626
+ # configuration will be created. In this situation, update_mask is ignored.
626
627
  # @param [String] update_mask
627
- # Required. Mask specifying which fields in the config should be updated.
628
+ # Required. Mask specifying which fields in the workstation configuration should
629
+ # be updated.
628
630
  # @param [Boolean] validate_only
629
631
  # If set, validate the request and preview the review, but do not actually apply
630
632
  # it.
@@ -924,7 +926,7 @@ module Google
924
926
  execute_or_queue_command(command, &block)
925
927
  end
926
928
 
927
- # Returns all Workstations using the specified config.
929
+ # Returns all Workstations using the specified workstation configuration.
928
930
  # @param [String] parent
929
931
  # Required. Parent resource name.
930
932
  # @param [Fixnum] page_size
@@ -960,8 +962,8 @@ module Google
960
962
  execute_or_queue_command(command, &block)
961
963
  end
962
964
 
963
- # Returns all Workstations using the specified config on which the caller has
964
- # the "workstations.workstations.use" permission.
965
+ # Returns all workstations using the specified workstation configuration on
966
+ # which the caller has the "workstations.workstations.use" permission.
965
967
  # @param [String] parent
966
968
  # Required. Parent resource name.
967
969
  # @param [Fixnum] page_size
@@ -1002,10 +1004,11 @@ module Google
1002
1004
  # Full name of this resource.
1003
1005
  # @param [Google::Apis::WorkstationsV1beta::Workstation] workstation_object
1004
1006
  # @param [Boolean] allow_missing
1005
- # If set, and the config is not found, a new config will be created. In this
1006
- # situation, update_mask is ignored.
1007
+ # If set and the workstation configuration is not found, a new workstation
1008
+ # configuration is created. In this situation, update_mask is ignored.
1007
1009
  # @param [String] update_mask
1008
- # Required. Mask specifying which fields in the config should be updated.
1010
+ # Required. Mask specifying which fields in the workstation configuration should
1011
+ # be updated.
1009
1012
  # @param [Boolean] validate_only
1010
1013
  # If set, validate the request and preview the review, but do not actually apply
1011
1014
  # 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.8.0
4
+ version: 0.9.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-04-02 00:00:00.000000000 Z
11
+ date: 2023-04-23 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_v1beta/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.8.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.9.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: []