google-apis-workstations_v1beta 0.1.0 → 0.2.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: d4b6683f3b69d04f3af6feb8a1db5ec66aa782b00223ee9a7c312c19873e8c9c
4
- data.tar.gz: daed7f04679002db0973dabe1346d89c138fe49a4da0a969e3320c74fa44bbfe
3
+ metadata.gz: 5b07642391a4bf5efd8bfc8525c0d8d4fd0cb3b9b83f67c00177d7df097e07fc
4
+ data.tar.gz: c5744fbf065c87ae9671e15c3d5428aca82883532d6532d748815736d2c758c9
5
5
  SHA512:
6
- metadata.gz: 364d0b0168ab094566f74698b92a893c44dc8267fef0057097b0f859d7c32976f124bf0afb77141b8f25953472b4c995efdca2609e053482a405a402f028b9c9
7
- data.tar.gz: a30f22c80982e0bdde5429d96cc81e5d6a3c947a92e7fbcbaa14a08e85b2cf92f631fbcb92e498e537badd7e67d2168787f16c43eeed35ed290cfdb6a38a96f3
6
+ metadata.gz: a4270d18c0a135288559f59bec7e5f943ee134f040c5695c2476cd24d73ba04bc40e8f92fe605c7777f82b3113d3ff2973c26c54f69313d319c3b6ef7841b50d
7
+ data.tar.gz: c9314d23b95043057a0f838b1d13441be34618abf50a86eb7ab09283c83c23c86b101816fccf05405a8c88d4b66da553ee51f17379b2bbb73debdc66d3c855ae
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.2.0 (2023-01-15)
4
+
5
+ * Regenerated from discovery document revision 20230105
6
+ * Regenerated using generator version 0.11.1
7
+
3
8
  ### v0.1.0 (2022-12-22)
4
9
 
5
10
  * Regenerated from discovery document revision 20221214
@@ -974,7 +974,7 @@ module Google
974
974
  # @return [String]
975
975
  attr_accessor :cluster_hostname
976
976
 
977
- # Whether Workstations endpoint is private.
977
+ # Immutable. Whether Workstations endpoint is private.
978
978
  # Corresponds to the JSON property `enablePrivateEndpoint`
979
979
  # @return [Boolean]
980
980
  attr_accessor :enable_private_endpoint
@@ -1227,6 +1227,12 @@ module Google
1227
1227
  # @return [String]
1228
1228
  attr_accessor :host
1229
1229
 
1230
+ # Client-specified labels that are applied to the resource and that are also
1231
+ # propagated to the underlying Compute Engine resources.
1232
+ # Corresponds to the JSON property `labels`
1233
+ # @return [Hash<String,String>]
1234
+ attr_accessor :labels
1235
+
1230
1236
  # Full name of this resource.
1231
1237
  # Corresponds to the JSON property `name`
1232
1238
  # @return [String]
@@ -1266,6 +1272,7 @@ module Google
1266
1272
  @display_name = args[:display_name] if args.key?(:display_name)
1267
1273
  @etag = args[:etag] if args.key?(:etag)
1268
1274
  @host = args[:host] if args.key?(:host)
1275
+ @labels = args[:labels] if args.key?(:labels)
1269
1276
  @name = args[:name] if args.key?(:name)
1270
1277
  @reconciling = args[:reconciling] if args.key?(:reconciling)
1271
1278
  @state = args[:state] if args.key?(:state)
@@ -1318,13 +1325,19 @@ module Google
1318
1325
  # @return [String]
1319
1326
  attr_accessor :etag
1320
1327
 
1328
+ # Client-specified labels that are applied to the resource and that are also
1329
+ # propagated to the underlying Compute Engine resources.
1330
+ # Corresponds to the JSON property `labels`
1331
+ # @return [Hash<String,String>]
1332
+ attr_accessor :labels
1333
+
1321
1334
  # Full name of this resource.
1322
1335
  # Corresponds to the JSON property `name`
1323
1336
  # @return [String]
1324
1337
  attr_accessor :name
1325
1338
 
1326
- # Name of the Compute Engine network in which instances associated with this
1327
- # cluster will be created.
1339
+ # Immutable. Name of the Compute Engine network in which instances associated
1340
+ # with this cluster will be created.
1328
1341
  # Corresponds to the JSON property `network`
1329
1342
  # @return [String]
1330
1343
  attr_accessor :network
@@ -1341,9 +1354,9 @@ module Google
1341
1354
  attr_accessor :reconciling
1342
1355
  alias_method :reconciling?, :reconciling
1343
1356
 
1344
- # Name of the Compute Engine subnetwork in which instances associated with this
1345
- # cluster will be created. Must be part of the subnetwork specified for this
1346
- # cluster.
1357
+ # Immutable. Name of the Compute Engine subnetwork in which instances associated
1358
+ # with this cluster will be created. Must be part of the subnetwork specified
1359
+ # for this cluster.
1347
1360
  # Corresponds to the JSON property `subnetwork`
1348
1361
  # @return [String]
1349
1362
  attr_accessor :subnetwork
@@ -1371,6 +1384,7 @@ module Google
1371
1384
  @delete_time = args[:delete_time] if args.key?(:delete_time)
1372
1385
  @display_name = args[:display_name] if args.key?(:display_name)
1373
1386
  @etag = args[:etag] if args.key?(:etag)
1387
+ @labels = args[:labels] if args.key?(:labels)
1374
1388
  @name = args[:name] if args.key?(:name)
1375
1389
  @network = args[:network] if args.key?(:network)
1376
1390
  @private_cluster_config = args[:private_cluster_config] if args.key?(:private_cluster_config)
@@ -1443,6 +1457,12 @@ module Google
1443
1457
  # @return [String]
1444
1458
  attr_accessor :idle_timeout
1445
1459
 
1460
+ # Client-specified labels that are applied to the resource and that are also
1461
+ # propagated to the underlying Compute Engine resources.
1462
+ # Corresponds to the JSON property `labels`
1463
+ # @return [Hash<String,String>]
1464
+ attr_accessor :labels
1465
+
1446
1466
  # Full name of this resource.
1447
1467
  # Corresponds to the JSON property `name`
1448
1468
  # @return [String]
@@ -1494,6 +1514,7 @@ module Google
1494
1514
  @etag = args[:etag] if args.key?(:etag)
1495
1515
  @host = args[:host] if args.key?(:host)
1496
1516
  @idle_timeout = args[:idle_timeout] if args.key?(:idle_timeout)
1517
+ @labels = args[:labels] if args.key?(:labels)
1497
1518
  @name = args[:name] if args.key?(:name)
1498
1519
  @persistent_directories = args[:persistent_directories] if args.key?(:persistent_directories)
1499
1520
  @reconciling = args[:reconciling] if args.key?(:reconciling)
@@ -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.1.0"
19
+ GEM_VERSION = "0.2.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.11.0"
22
+ GENERATOR_VERSION = "0.11.1"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20221214"
25
+ REVISION = "20230105"
26
26
  end
27
27
  end
28
28
  end
@@ -524,6 +524,7 @@ module Google
524
524
  property :display_name, as: 'displayName'
525
525
  property :etag, as: 'etag'
526
526
  property :host, as: 'host'
527
+ hash :labels, as: 'labels'
527
528
  property :name, as: 'name'
528
529
  property :reconciling, as: 'reconciling'
529
530
  property :state, as: 'state'
@@ -543,6 +544,7 @@ module Google
543
544
  property :delete_time, as: 'deleteTime'
544
545
  property :display_name, as: 'displayName'
545
546
  property :etag, as: 'etag'
547
+ hash :labels, as: 'labels'
546
548
  property :name, as: 'name'
547
549
  property :network, as: 'network'
548
550
  property :private_cluster_config, as: 'privateClusterConfig', class: Google::Apis::WorkstationsV1beta::PrivateClusterConfig, decorator: Google::Apis::WorkstationsV1beta::PrivateClusterConfig::Representation
@@ -570,6 +572,7 @@ module Google
570
572
  property :host, as: 'host', class: Google::Apis::WorkstationsV1beta::Host, decorator: Google::Apis::WorkstationsV1beta::Host::Representation
571
573
 
572
574
  property :idle_timeout, as: 'idleTimeout'
575
+ hash :labels, as: 'labels'
573
576
  property :name, as: 'name'
574
577
  collection :persistent_directories, as: 'persistentDirectories', class: Google::Apis::WorkstationsV1beta::PersistentDirectory, decorator: Google::Apis::WorkstationsV1beta::PersistentDirectory::Representation
575
578
 
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.1.0
4
+ version: 0.2.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-01-04 00:00:00.000000000 Z
11
+ date: 2023-01-15 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.1.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.2.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: []
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
75
75
  - !ruby/object:Gem::Version
76
76
  version: '0'
77
77
  requirements: []
78
- rubygems_version: 3.3.14
78
+ rubygems_version: 3.4.2
79
79
  signing_key:
80
80
  specification_version: 4
81
81
  summary: Simple REST client for Cloud Workstations API V1beta