File tree Expand file tree Collapse file tree 5 files changed +15
-2
lines changed
generated/google-apis-workloadmanager_v1
lib/google/apis/workloadmanager_v1 Expand file tree Collapse file tree 5 files changed +15
-2
lines changed Original file line number Diff line number Diff line change @@ -363865,6 +363865,8 @@
363865363865"/workloadmanager:v1/SapDiscoveryResourceInstancePropertiesAppInstance/name": name
363866363866"/workloadmanager:v1/SapDiscoveryResourceInstancePropertiesAppInstance/number": number
363867363867"/workloadmanager:v1/SapDiscoveryResourceInstancePropertiesDiskMount": sap_discovery_resource_instance_properties_disk_mount
363868+ "/workloadmanager:v1/SapDiscoveryResourceInstancePropertiesDiskMount/diskNames": disk_names
363869+ "/workloadmanager:v1/SapDiscoveryResourceInstancePropertiesDiskMount/diskNames/disk_name": disk_name
363868363870"/workloadmanager:v1/SapDiscoveryResourceInstancePropertiesDiskMount/mountPoint": mount_point
363869363871"/workloadmanager:v1/SapDiscoveryResourceInstancePropertiesDiskMount/name": name
363870363872"/workloadmanager:v1/SapDiscoveryWorkloadProperties": sap_discovery_workload_properties
Original file line number Diff line number Diff line change 11# Release history for google-apis-workloadmanager_v1
22
3+ ### v0.33.0 (2025-03-30)
4+
5+ * Regenerated from discovery document revision 20250319
6+
37### v0.32.0 (2025-03-23)
48
59* Regenerated from discovery document revision 20250310
Original file line number Diff line number Diff line change @@ -2190,6 +2190,11 @@ def update!(**args)
21902190 class SapDiscoveryResourceInstancePropertiesDiskMount
21912191 include Google ::Apis ::Core ::Hashable
21922192
2193+ # Optional. Names of the disks providing this mount point.
2194+ # Corresponds to the JSON property `diskNames`
2195+ # @return [Array<String>]
2196+ attr_accessor :disk_names
2197+
21932198 # Optional. Filesystem mount point.
21942199 # Corresponds to the JSON property `mountPoint`
21952200 # @return [String]
@@ -2206,6 +2211,7 @@ def initialize(**args)
22062211
22072212 # Update properties of this object
22082213 def update! ( **args )
2214+ @disk_names = args [ :disk_names ] if args . key? ( :disk_names )
22092215 @mount_point = args [ :mount_point ] if args . key? ( :mount_point )
22102216 @name = args [ :name ] if args . key? ( :name )
22112217 end
Original file line number Diff line number Diff line change @@ -16,13 +16,13 @@ module Google
1616 module Apis
1717 module WorkloadmanagerV1
1818 # Version of the google-apis-workloadmanager_v1 gem
19- GEM_VERSION = "0.32 .0"
19+ GEM_VERSION = "0.33 .0"
2020
2121 # Version of the code generator used to generate this client
2222 GENERATOR_VERSION = "0.16.0"
2323
2424 # Revision of the discovery document this client was generated from
25- REVISION = "20250310 "
25+ REVISION = "20250319 "
2626 end
2727 end
2828end
Original file line number Diff line number Diff line change @@ -1111,6 +1111,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
11111111 class SapDiscoveryResourceInstancePropertiesDiskMount
11121112 # @private
11131113 class Representation < Google ::Apis ::Core ::JsonRepresentation
1114+ collection :disk_names , as : 'diskNames'
11141115 property :mount_point , as : 'mountPoint'
11151116 property :name , as : 'name'
11161117 end
You can’t perform that action at this time.
0 commit comments