Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions api_names_out.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -384660,6 +384660,7 @@
"/workloadmanager:v1/Insight": insight
"/workloadmanager:v1/Insight/agentStatus": agent_status
"/workloadmanager:v1/Insight/instanceId": instance_id
"/workloadmanager:v1/Insight/openShiftValidation": open_shift_validation
"/workloadmanager:v1/Insight/sapDiscovery": sap_discovery
"/workloadmanager:v1/Insight/sapValidation": sap_validation
"/workloadmanager:v1/Insight/sentTime": sent_time
Expand Down Expand Up @@ -384760,6 +384761,7 @@
"/workloadmanager:v1/LocationData/spannerLocation": spanner_location
"/workloadmanager:v1/Notice": notice
"/workloadmanager:v1/Notice/message": message
"/workloadmanager:v1/OpenShiftValidation": open_shift_validation
"/workloadmanager:v1/Operation": operation
"/workloadmanager:v1/Operation/done": done
"/workloadmanager:v1/Operation/error": error
Expand Down
4 changes: 4 additions & 0 deletions generated/google-apis-workloadmanager_v1/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-workloadmanager_v1

### v0.43.0 (2025-09-21)

* Regenerated from discovery document revision 20250910

### v0.42.0 (2025-09-14)

* Regenerated from discovery document revision 20250903
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -846,6 +846,12 @@ class Insight
# @return [String]
attr_accessor :instance_id

# A presentation of OpenShift workload insight. The schema of OpenShift
# workloads validation related data.
# Corresponds to the JSON property `openShiftValidation`
# @return [Google::Apis::WorkloadmanagerV1::OpenShiftValidation]
attr_accessor :open_shift_validation

# The schema of SAP system discovery data.
# Corresponds to the JSON property `sapDiscovery`
# @return [Google::Apis::WorkloadmanagerV1::SapDiscovery]
Expand Down Expand Up @@ -881,6 +887,7 @@ def initialize(**args)
def update!(**args)
@agent_status = args[:agent_status] if args.key?(:agent_status)
@instance_id = args[:instance_id] if args.key?(:instance_id)
@open_shift_validation = args[:open_shift_validation] if args.key?(:open_shift_validation)
@sap_discovery = args[:sap_discovery] if args.key?(:sap_discovery)
@sap_validation = args[:sap_validation] if args.key?(:sap_validation)
@sent_time = args[:sent_time] if args.key?(:sent_time)
Expand Down Expand Up @@ -1224,6 +1231,20 @@ def update!(**args)
end
end

# A presentation of OpenShift workload insight. The schema of OpenShift
# workloads validation related data.
class OpenShiftValidation
include Google::Apis::Core::Hashable

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
end
end

# This resource represents a long-running operation that is the result of a
# network API call.
class Operation
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module WorkloadmanagerV1
# Version of the google-apis-workloadmanager_v1 gem
GEM_VERSION = "0.42.0"
GEM_VERSION = "0.43.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.18.0"

# Revision of the discovery document this client was generated from
REVISION = "20250903"
REVISION = "20250910"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end

class OpenShiftValidation
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class Operation
class Representation < Google::Apis::Core::JsonRepresentation; end

Expand Down Expand Up @@ -708,6 +714,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
property :agent_status, as: 'agentStatus', class: Google::Apis::WorkloadmanagerV1::AgentStatus, decorator: Google::Apis::WorkloadmanagerV1::AgentStatus::Representation

property :instance_id, as: 'instanceId'
property :open_shift_validation, as: 'openShiftValidation', class: Google::Apis::WorkloadmanagerV1::OpenShiftValidation, decorator: Google::Apis::WorkloadmanagerV1::OpenShiftValidation::Representation

property :sap_discovery, as: 'sapDiscovery', class: Google::Apis::WorkloadmanagerV1::SapDiscovery, decorator: Google::Apis::WorkloadmanagerV1::SapDiscovery::Representation

property :sap_validation, as: 'sapValidation', class: Google::Apis::WorkloadmanagerV1::SapValidation, decorator: Google::Apis::WorkloadmanagerV1::SapValidation::Representation
Expand Down Expand Up @@ -827,6 +835,12 @@ class Representation < Google::Apis::Core::JsonRepresentation
end
end

class OpenShiftValidation
# @private
class Representation < Google::Apis::Core::JsonRepresentation
end
end

class Operation
# @private
class Representation < Google::Apis::Core::JsonRepresentation
Expand Down
Loading