google-apis-workstations_v1beta 0.37.0 → 0.38.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: 9f13f44d4255c8106312517c05abf164109112408d30921239f9e117c2bab94a
4
- data.tar.gz: 04cc14f2dc18a6b216d4433f8ae570c62a9c3f7c6a860d7d1a8634a661f29fe3
3
+ metadata.gz: 2aae63a2eba0bbdc958e0aff82b0cf9623177d1cc347d9357f4c81e2bf183f19
4
+ data.tar.gz: 01b991ccb11e3a068235eec3346be97034f827950112379055fafcdbbe3925ba
5
5
  SHA512:
6
- metadata.gz: 7bb158854e01f44a62d11484baa6ca22ffbb148bf43d8e8e9ae498f9f0deab7b6d1b3dfaa8768ff0ea852a54a110fc549437b1c82734e1272b8348df748fa45c
7
- data.tar.gz: 4744dc087d5400367f67edb84f722a3aa2bec809b900fc7e18f6a158c63e2a028304ad0f4e0b8c6bc6b4a5af22270bf5a4a55b3cac70362ce8d54ad2c1d8a64f
6
+ metadata.gz: 7992b2d476a59ffa7e555f20ce885df00ac984faccb3ca253443b2e2b2e8e7e7d8d03c6ceddfff96f1c9ec40778c8fad9cebd108ca359c760d2b58bdf5967cb3
7
+ data.tar.gz: 5ec2089e40fb5cf953a28d8b17b5ce2b9625820ed55a3beaba468365516a8645d31ba08fe7de8d742673aa92442c8cfefddd7f7b584643b17a7b93e989acaec1
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-workstations_v1beta
2
2
 
3
+ ### v0.38.0 (2025-04-06)
4
+
5
+ * Regenerated from discovery document revision 20250326
6
+
3
7
  ### v0.37.0 (2025-03-23)
4
8
 
5
9
  * Regenerated from discovery document revision 20250311
@@ -746,9 +746,10 @@ module Google
746
746
  # empty if source_image is set. Must be empty if read_only is false. Updating
747
747
  # source_snapshot will update content in the ephemeral directory after the
748
748
  # workstation is restarted. Only file systems supported by Container-Optimized
749
- # OS (COS) are explicitly supported. For a list of supported file systems,
750
- # please refer to the [COS documentation](https://cloud.google.com/container-
751
- # optimized-os/docs/concepts/supported-filesystems). This field is mutable.
749
+ # OS (COS) are explicitly supported. For a list of supported file systems, see [
750
+ # the filesystems available in Container-Optimized OS](https://cloud.google.com/
751
+ # container-optimized-os/docs/concepts/supported-filesystems). This field is
752
+ # mutable.
752
753
  # Corresponds to the JSON property `sourceSnapshot`
753
754
  # @return [String]
754
755
  attr_accessor :source_snapshot
@@ -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.37.0"
19
+ GEM_VERSION = "0.38.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.16.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250311"
25
+ REVISION = "20250326"
26
26
  end
27
27
  end
28
28
  end
@@ -311,6 +311,9 @@ module Google
311
311
  # Returns all workstation clusters in the specified location.
312
312
  # @param [String] parent
313
313
  # Required. Parent resource name.
314
+ # @param [String] filter
315
+ # Optional. Filter the WorkstationClusters to be listed. Possible filters are
316
+ # described in https://google.aip.dev/160.
314
317
  # @param [Fixnum] page_size
315
318
  # Optional. Maximum number of items to return.
316
319
  # @param [String] page_token
@@ -332,11 +335,12 @@ module Google
332
335
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
333
336
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
334
337
  # @raise [Google::Apis::AuthorizationError] Authorization is required
335
- def list_project_location_workstation_clusters(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
338
+ def list_project_location_workstation_clusters(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
336
339
  command = make_simple_command(:get, 'v1beta/{+parent}/workstationClusters', options)
337
340
  command.response_representation = Google::Apis::WorkstationsV1beta::ListWorkstationClustersResponse::Representation
338
341
  command.response_class = Google::Apis::WorkstationsV1beta::ListWorkstationClustersResponse
339
342
  command.params['parent'] = parent unless parent.nil?
343
+ command.query['filter'] = filter unless filter.nil?
340
344
  command.query['pageSize'] = page_size unless page_size.nil?
341
345
  command.query['pageToken'] = page_token unless page_token.nil?
342
346
  command.query['fields'] = fields unless fields.nil?
@@ -550,6 +554,9 @@ module Google
550
554
  # Returns all workstation configurations in the specified cluster.
551
555
  # @param [String] parent
552
556
  # Required. Parent resource name.
557
+ # @param [String] filter
558
+ # Optional. Filter the WorkstationConfigs to be listed. Possible filters are
559
+ # described in https://google.aip.dev/160.
553
560
  # @param [Fixnum] page_size
554
561
  # Optional. Maximum number of items to return.
555
562
  # @param [String] page_token
@@ -571,11 +578,12 @@ module Google
571
578
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
572
579
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
573
580
  # @raise [Google::Apis::AuthorizationError] Authorization is required
574
- def list_project_location_workstation_cluster_workstation_configs(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
581
+ def list_project_location_workstation_cluster_workstation_configs(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
575
582
  command = make_simple_command(:get, 'v1beta/{+parent}/workstationConfigs', options)
576
583
  command.response_representation = Google::Apis::WorkstationsV1beta::ListWorkstationConfigsResponse::Representation
577
584
  command.response_class = Google::Apis::WorkstationsV1beta::ListWorkstationConfigsResponse
578
585
  command.params['parent'] = parent unless parent.nil?
586
+ command.query['filter'] = filter unless filter.nil?
579
587
  command.query['pageSize'] = page_size unless page_size.nil?
580
588
  command.query['pageToken'] = page_token unless page_token.nil?
581
589
  command.query['fields'] = fields unless fields.nil?
@@ -934,6 +942,9 @@ module Google
934
942
  # Returns all Workstations using the specified workstation configuration.
935
943
  # @param [String] parent
936
944
  # Required. Parent resource name.
945
+ # @param [String] filter
946
+ # Optional. Filter the Workstations to be listed. Possible filters are described
947
+ # in https://google.aip.dev/160.
937
948
  # @param [Fixnum] page_size
938
949
  # Optional. Maximum number of items to return.
939
950
  # @param [String] page_token
@@ -955,11 +966,12 @@ module Google
955
966
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
956
967
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
957
968
  # @raise [Google::Apis::AuthorizationError] Authorization is required
958
- def list_project_location_workstation_cluster_workstation_config_workstations(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
969
+ def list_project_location_workstation_cluster_workstation_config_workstations(parent, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
959
970
  command = make_simple_command(:get, 'v1beta/{+parent}/workstations', options)
960
971
  command.response_representation = Google::Apis::WorkstationsV1beta::ListWorkstationsResponse::Representation
961
972
  command.response_class = Google::Apis::WorkstationsV1beta::ListWorkstationsResponse
962
973
  command.params['parent'] = parent unless parent.nil?
974
+ command.query['filter'] = filter unless filter.nil?
963
975
  command.query['pageSize'] = page_size unless page_size.nil?
964
976
  command.query['pageToken'] = page_token unless page_token.nil?
965
977
  command.query['fields'] = fields unless fields.nil?
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-workstations_v1beta
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.37.0
4
+ version: 0.38.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-23 00:00:00.000000000 Z
10
+ date: 2025-04-16 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1beta/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.37.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-workstations_v1beta/v0.38.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-workstations_v1beta
62
62
  rdoc_options: []
63
63
  require_paths: