google-apis-workstations_v1 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: '08ae859a16e2af1f840ac1c4a0739a312eb80099a9be9495c3599c1c59bf140e'
|
4
|
+
data.tar.gz: 312bc414f47313d1f4f2ffed71d40d4da95d01baceadd535667592af4f20483c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 255566653bc7a31313076056bb589d1068e526077fa19cb043675633013885f3c040f5b0699582c2a71676d3ab4d19dbaac727472e55d45ea11cf75a13cf9ac6
|
7
|
+
data.tar.gz: 1715645c6d0f276a6d8fe5db13ed9ca99018f37c3c7c8c3f817e84eb748fe0b897f929354e244ad36e1558d98f471db032aecb6be617c230adf526af9e8268f4
|
data/CHANGELOG.md
CHANGED
@@ -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:
|
@@ -1474,6 +1493,13 @@ module Google
|
|
1474
1493
|
# @return [String]
|
1475
1494
|
attr_accessor :host
|
1476
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
|
+
|
1477
1503
|
# Optional. [Labels](https://cloud.google.com/workstations/docs/label-resources)
|
1478
1504
|
# that are applied to the workstation and that are also propagated to the
|
1479
1505
|
# underlying Compute Engine resources.
|
@@ -1527,6 +1553,7 @@ module Google
|
|
1527
1553
|
@env = args[:env] if args.key?(:env)
|
1528
1554
|
@etag = args[:etag] if args.key?(:etag)
|
1529
1555
|
@host = args[:host] if args.key?(:host)
|
1556
|
+
@kms_key = args[:kms_key] if args.key?(:kms_key)
|
1530
1557
|
@labels = args[:labels] if args.key?(:labels)
|
1531
1558
|
@name = args[:name] if args.key?(:name)
|
1532
1559
|
@reconciling = args[:reconciling] if args.key?(:reconciling)
|
@@ -1584,6 +1611,11 @@ module Google
|
|
1584
1611
|
# @return [String]
|
1585
1612
|
attr_accessor :display_name
|
1586
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
|
+
|
1587
1619
|
# Optional. Checksum computed by the server. May be sent on update and delete
|
1588
1620
|
# requests to make sure that the client has an up-to-date value before
|
1589
1621
|
# proceeding.
|
@@ -1651,6 +1683,7 @@ module Google
|
|
1651
1683
|
@degraded = args[:degraded] if args.key?(:degraded)
|
1652
1684
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
1653
1685
|
@display_name = args[:display_name] if args.key?(:display_name)
|
1686
|
+
@domain_config = args[:domain_config] if args.key?(:domain_config)
|
1654
1687
|
@etag = args[:etag] if args.key?(:etag)
|
1655
1688
|
@labels = args[:labels] if args.key?(:labels)
|
1656
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.
|
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 = "
|
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
|
@@ -590,6 +603,7 @@ module Google
|
|
590
603
|
hash :env, as: 'env'
|
591
604
|
property :etag, as: 'etag'
|
592
605
|
property :host, as: 'host'
|
606
|
+
property :kms_key, as: 'kmsKey'
|
593
607
|
hash :labels, as: 'labels'
|
594
608
|
property :name, as: 'name'
|
595
609
|
property :reconciling, as: 'reconciling'
|
@@ -611,6 +625,8 @@ module Google
|
|
611
625
|
property :degraded, as: 'degraded'
|
612
626
|
property :delete_time, as: 'deleteTime'
|
613
627
|
property :display_name, as: 'displayName'
|
628
|
+
property :domain_config, as: 'domainConfig', class: Google::Apis::WorkstationsV1::DomainConfig, decorator: Google::Apis::WorkstationsV1::DomainConfig::Representation
|
629
|
+
|
614
630
|
property :etag, as: 'etag'
|
615
631
|
hash :labels, as: 'labels'
|
616
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.
|
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
|
+
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.
|
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: []
|