google-apis-workstations_v1 0.3.0 → 0.5.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: 20ecf09dccb5f5dda7cc16beba032d0ed304c9eb09a47093df944ff6a23680ea
4
- data.tar.gz: '089af153e82e9f87922c987287fa4ddcc0dc35feba320cb02499e3757c1f4729'
3
+ metadata.gz: '08ae859a16e2af1f840ac1c4a0739a312eb80099a9be9495c3599c1c59bf140e'
4
+ data.tar.gz: 312bc414f47313d1f4f2ffed71d40d4da95d01baceadd535667592af4f20483c
5
5
  SHA512:
6
- metadata.gz: 9e754729839a75eca97868fe102a9c2dc23bfdbd89ae3f54e5fdad790f4607f78c28025951574425ed875df21314d79855c4899033da52efc579da3cf686807f
7
- data.tar.gz: 73271eda0b647635a80657b5eb2fc284029fc96f0b140a6791ffc7f8353f818704307a691b37783744cd495bae6d8c1e2671e044ae513afe6d00e2fdbdb6002e
6
+ metadata.gz: 255566653bc7a31313076056bb589d1068e526077fa19cb043675633013885f3c040f5b0699582c2a71676d3ab4d19dbaac727472e55d45ea11cf75a13cf9ac6
7
+ data.tar.gz: 1715645c6d0f276a6d8fe5db13ed9ca99018f37c3c7c8c3f817e84eb748fe0b897f929354e244ad36e1558d98f471db032aecb6be617c230adf526af9e8268f4
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-workstations_v1
2
2
 
3
+ ### v0.5.0 (2023-12-17)
4
+
5
+ * Regenerated from discovery document revision 20231129
6
+
7
+ ### v0.4.0 (2023-11-12)
8
+
9
+ * Regenerated from discovery document revision 20231101
10
+
3
11
  ### v0.3.0 (2023-10-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20231018
@@ -276,6 +276,25 @@ module Google
276
276
  end
277
277
  end
278
278
 
279
+ # Configuration options for a custom domain.
280
+ class DomainConfig
281
+ include Google::Apis::Core::Hashable
282
+
283
+ # Immutable. Domain used by Workstations for HTTP ingress.
284
+ # Corresponds to the JSON property `domain`
285
+ # @return [String]
286
+ attr_accessor :domain
287
+
288
+ def initialize(**args)
289
+ update!(**args)
290
+ end
291
+
292
+ # Update properties of this object
293
+ def update!(**args)
294
+ @domain = args[:domain] if args.key?(:domain)
295
+ end
296
+ end
297
+
279
298
  # Represents a textual expression in the Common Expression Language (CEL) syntax.
280
299
  # CEL is a C-like expression language. The syntax and semantics of CEL are
281
300
  # documented at https://github.com/google/cel-spec. Example (Comparison): title:
@@ -1453,6 +1472,12 @@ module Google
1453
1472
  # @return [String]
1454
1473
  attr_accessor :display_name
1455
1474
 
1475
+ # Optional. Environment variables passed to the workstation container's
1476
+ # entrypoint.
1477
+ # Corresponds to the JSON property `env`
1478
+ # @return [Hash<String,String>]
1479
+ attr_accessor :env
1480
+
1456
1481
  # Optional. Checksum computed by the server. May be sent on update and delete
1457
1482
  # requests to make sure that the client has an up-to-date value before
1458
1483
  # proceeding.
@@ -1468,6 +1493,13 @@ module Google
1468
1493
  # @return [String]
1469
1494
  attr_accessor :host
1470
1495
 
1496
+ # Output only. The name of the Google Cloud KMS encryption key used to encrypt
1497
+ # this workstation. The KMS key can only be configured in the WorkstationConfig.
1498
+ # The expected format is `projects/*/locations/*/keyRings/*/cryptoKeys/*`.
1499
+ # Corresponds to the JSON property `kmsKey`
1500
+ # @return [String]
1501
+ attr_accessor :kms_key
1502
+
1471
1503
  # Optional. [Labels](https://cloud.google.com/workstations/docs/label-resources)
1472
1504
  # that are applied to the workstation and that are also propagated to the
1473
1505
  # underlying Compute Engine resources.
@@ -1518,8 +1550,10 @@ module Google
1518
1550
  @create_time = args[:create_time] if args.key?(:create_time)
1519
1551
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1520
1552
  @display_name = args[:display_name] if args.key?(:display_name)
1553
+ @env = args[:env] if args.key?(:env)
1521
1554
  @etag = args[:etag] if args.key?(:etag)
1522
1555
  @host = args[:host] if args.key?(:host)
1556
+ @kms_key = args[:kms_key] if args.key?(:kms_key)
1523
1557
  @labels = args[:labels] if args.key?(:labels)
1524
1558
  @name = args[:name] if args.key?(:name)
1525
1559
  @reconciling = args[:reconciling] if args.key?(:reconciling)
@@ -1577,6 +1611,11 @@ module Google
1577
1611
  # @return [String]
1578
1612
  attr_accessor :display_name
1579
1613
 
1614
+ # Configuration options for a custom domain.
1615
+ # Corresponds to the JSON property `domainConfig`
1616
+ # @return [Google::Apis::WorkstationsV1::DomainConfig]
1617
+ attr_accessor :domain_config
1618
+
1580
1619
  # Optional. Checksum computed by the server. May be sent on update and delete
1581
1620
  # requests to make sure that the client has an up-to-date value before
1582
1621
  # proceeding.
@@ -1644,6 +1683,7 @@ module Google
1644
1683
  @degraded = args[:degraded] if args.key?(:degraded)
1645
1684
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1646
1685
  @display_name = args[:display_name] if args.key?(:display_name)
1686
+ @domain_config = args[:domain_config] if args.key?(:domain_config)
1647
1687
  @etag = args[:etag] if args.key?(:etag)
1648
1688
  @labels = args[:labels] if args.key?(:labels)
1649
1689
  @name = args[:name] if args.key?(:name)
@@ -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.3.0"
19
+ GEM_VERSION = "0.5.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 = "20231018"
25
+ REVISION = "20231129"
26
26
  end
27
27
  end
28
28
  end
@@ -58,6 +58,12 @@ module Google
58
58
  include Google::Apis::Core::JsonObjectSupport
59
59
  end
60
60
 
61
+ class DomainConfig
62
+ class Representation < Google::Apis::Core::JsonRepresentation; end
63
+
64
+ include Google::Apis::Core::JsonObjectSupport
65
+ end
66
+
61
67
  class Expr
62
68
  class Representation < Google::Apis::Core::JsonRepresentation; end
63
69
 
@@ -303,6 +309,13 @@ module Google
303
309
  end
304
310
  end
305
311
 
312
+ class DomainConfig
313
+ # @private
314
+ class Representation < Google::Apis::Core::JsonRepresentation
315
+ property :domain, as: 'domain'
316
+ end
317
+ end
318
+
306
319
  class Expr
307
320
  # @private
308
321
  class Representation < Google::Apis::Core::JsonRepresentation
@@ -587,8 +600,10 @@ module Google
587
600
  property :create_time, as: 'createTime'
588
601
  property :delete_time, as: 'deleteTime'
589
602
  property :display_name, as: 'displayName'
603
+ hash :env, as: 'env'
590
604
  property :etag, as: 'etag'
591
605
  property :host, as: 'host'
606
+ property :kms_key, as: 'kmsKey'
592
607
  hash :labels, as: 'labels'
593
608
  property :name, as: 'name'
594
609
  property :reconciling, as: 'reconciling'
@@ -610,6 +625,8 @@ module Google
610
625
  property :degraded, as: 'degraded'
611
626
  property :delete_time, as: 'deleteTime'
612
627
  property :display_name, as: 'displayName'
628
+ property :domain_config, as: 'domainConfig', class: Google::Apis::WorkstationsV1::DomainConfig, decorator: Google::Apis::WorkstationsV1::DomainConfig::Representation
629
+
613
630
  property :etag, as: 'etag'
614
631
  hash :labels, as: 'labels'
615
632
  property :name, as: 'name'
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.3.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-11-05 00:00:00.000000000 Z
11
+ date: 2023-12-17 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.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1/v0.5.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: []