File tree Expand file tree Collapse file tree 5 files changed +16
-2
lines changed
generated/google-apis-workstations_v1beta
lib/google/apis/workstations_v1beta Expand file tree Collapse file tree 5 files changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -377260,6 +377260,7 @@
377260
377260
"/workstations:v1beta/Workstation/updateTime": update_time
377261
377261
"/workstations:v1beta/WorkstationBoostConfig": workstation_boost_config
377262
377262
"/workstations:v1beta/WorkstationBoostConfig/id": id
377263
+ "/workstations:v1beta/WorkstationBoostConfig/running": running
377263
377264
"/workstations:v1beta/WorkstationCluster": workstation_cluster
377264
377265
"/workstations:v1beta/WorkstationCluster/annotations": annotations
377265
377266
"/workstations:v1beta/WorkstationCluster/annotations/annotation": annotation
Original file line number Diff line number Diff line change 1
1
# Release history for google-apis-workstations_v1beta
2
2
3
+ ### v0.42.0 (2025-07-27)
4
+
5
+ * Regenerated from discovery document revision 20250716
6
+
3
7
### v0.41.0 (2025-07-06)
4
8
5
9
* Regenerated from discovery document revision 20250625
Original file line number Diff line number Diff line change @@ -1988,13 +1988,21 @@ class WorkstationBoostConfig
1988
1988
# @return [String]
1989
1989
attr_accessor :id
1990
1990
1991
+ # Output only. Whether or not the current workstation is actively boosted with
1992
+ # this id.
1993
+ # Corresponds to the JSON property `running`
1994
+ # @return [Boolean]
1995
+ attr_accessor :running
1996
+ alias_method :running? , :running
1997
+
1991
1998
def initialize ( **args )
1992
1999
update! ( **args )
1993
2000
end
1994
2001
1995
2002
# Update properties of this object
1996
2003
def update! ( **args )
1997
2004
@id = args [ :id ] if args . key? ( :id )
2005
+ @running = args [ :running ] if args . key? ( :running )
1998
2006
end
1999
2007
end
2000
2008
Original file line number Diff line number Diff line change @@ -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.41 .0"
19
+ GEM_VERSION = "0.42 .0"
20
20
21
21
# Version of the code generator used to generate this client
22
22
GENERATOR_VERSION = "0.18.0"
23
23
24
24
# Revision of the discovery document this client was generated from
25
- REVISION = "20250625 "
25
+ REVISION = "20250716 "
26
26
end
27
27
end
28
28
end
Original file line number Diff line number Diff line change @@ -763,6 +763,7 @@ class WorkstationBoostConfig
763
763
# @private
764
764
class Representation < Google ::Apis ::Core ::JsonRepresentation
765
765
property :id , as : 'id'
766
+ property :running , as : 'running'
766
767
end
767
768
end
768
769
You can’t perform that action at this time.
0 commit comments