google-apis-workstations_v1beta 0.17.0 → 0.18.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: 1c2d0f0810202ac65a70595dcc7caf29010711bf944762cb458e320e426b8ce7
|
|
4
|
+
data.tar.gz: 6d6e61874fc4bca10da6e4235afb17e385017640713f5d66888c66f5e1084498
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4c8be937e8d3ad9e3245ab278ae12114a560cfc3db859a5b14ab0b60bb0db91752046ceacd5057e28013491929908efda401ec7200be8a5fdeb2f60127c36630
|
|
7
|
+
data.tar.gz: eec444c17e088863cc6f54a7fcda0174e5f98e67c74f605a9c6b8ac9e29fe653df3c9604e82800289c4dc238ec2f4cb889e517ff83b3981ca77ed2543e455ab6
|
data/CHANGELOG.md
CHANGED
|
@@ -300,6 +300,25 @@ module Google
|
|
|
300
300
|
end
|
|
301
301
|
end
|
|
302
302
|
|
|
303
|
+
# Configuration options for a custom domain.
|
|
304
|
+
class DomainConfig
|
|
305
|
+
include Google::Apis::Core::Hashable
|
|
306
|
+
|
|
307
|
+
# Immutable. Domain used by Workstations for HTTP ingress.
|
|
308
|
+
# Corresponds to the JSON property `domain`
|
|
309
|
+
# @return [String]
|
|
310
|
+
attr_accessor :domain
|
|
311
|
+
|
|
312
|
+
def initialize(**args)
|
|
313
|
+
update!(**args)
|
|
314
|
+
end
|
|
315
|
+
|
|
316
|
+
# Update properties of this object
|
|
317
|
+
def update!(**args)
|
|
318
|
+
@domain = args[:domain] if args.key?(:domain)
|
|
319
|
+
end
|
|
320
|
+
end
|
|
321
|
+
|
|
303
322
|
# An ephemeral directory which won't persist across workstation sessions. It is
|
|
304
323
|
# freshly created on every workstation start operation.
|
|
305
324
|
class EphemeralDirectory
|
|
@@ -1612,6 +1631,11 @@ module Google
|
|
|
1612
1631
|
# @return [String]
|
|
1613
1632
|
attr_accessor :display_name
|
|
1614
1633
|
|
|
1634
|
+
# Configuration options for a custom domain.
|
|
1635
|
+
# Corresponds to the JSON property `domainConfig`
|
|
1636
|
+
# @return [Google::Apis::WorkstationsV1beta::DomainConfig]
|
|
1637
|
+
attr_accessor :domain_config
|
|
1638
|
+
|
|
1615
1639
|
# Optional. Checksum computed by the server. May be sent on update and delete
|
|
1616
1640
|
# requests to make sure that the client has an up-to-date value before
|
|
1617
1641
|
# proceeding.
|
|
@@ -1679,6 +1703,7 @@ module Google
|
|
|
1679
1703
|
@degraded = args[:degraded] if args.key?(:degraded)
|
|
1680
1704
|
@delete_time = args[:delete_time] if args.key?(:delete_time)
|
|
1681
1705
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
1706
|
+
@domain_config = args[:domain_config] if args.key?(:domain_config)
|
|
1682
1707
|
@etag = args[:etag] if args.key?(:etag)
|
|
1683
1708
|
@labels = args[:labels] if args.key?(:labels)
|
|
1684
1709
|
@name = args[:name] if args.key?(:name)
|
|
@@ -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.18.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 = "20231011"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -64,6 +64,12 @@ module Google
|
|
|
64
64
|
include Google::Apis::Core::JsonObjectSupport
|
|
65
65
|
end
|
|
66
66
|
|
|
67
|
+
class DomainConfig
|
|
68
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
|
+
|
|
70
|
+
include Google::Apis::Core::JsonObjectSupport
|
|
71
|
+
end
|
|
72
|
+
|
|
67
73
|
class EphemeralDirectory
|
|
68
74
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
|
69
75
|
|
|
@@ -317,6 +323,13 @@ module Google
|
|
|
317
323
|
end
|
|
318
324
|
end
|
|
319
325
|
|
|
326
|
+
class DomainConfig
|
|
327
|
+
# @private
|
|
328
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
|
329
|
+
property :domain, as: 'domain'
|
|
330
|
+
end
|
|
331
|
+
end
|
|
332
|
+
|
|
320
333
|
class EphemeralDirectory
|
|
321
334
|
# @private
|
|
322
335
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
@@ -626,6 +639,8 @@ module Google
|
|
|
626
639
|
property :degraded, as: 'degraded'
|
|
627
640
|
property :delete_time, as: 'deleteTime'
|
|
628
641
|
property :display_name, as: 'displayName'
|
|
642
|
+
property :domain_config, as: 'domainConfig', class: Google::Apis::WorkstationsV1beta::DomainConfig, decorator: Google::Apis::WorkstationsV1beta::DomainConfig::Representation
|
|
643
|
+
|
|
629
644
|
property :etag, as: 'etag'
|
|
630
645
|
hash :labels, as: 'labels'
|
|
631
646
|
property :name, as: 'name'
|
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.18.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-10-
|
|
11
|
+
date: 2023-10-22 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.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.18.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: []
|