Skip to content

Commit

Permalink
feat(workloadmanager): update the api
Browse files Browse the repository at this point in the history
#### workloadmanager:v1

The following keys were added:
- schemas.SapComponent.properties.haHosts (Total Keys: 2)
- schemas.SapComponent.properties.topologyType.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Mar 12, 2024
1 parent 8d1777b commit 6d3e821
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 1 deletion.
Expand Up @@ -150,22 +150,30 @@ <h3>Method Details</h3>
&quot;refreshedTime&quot;: &quot;A String&quot;, # Required. time when the workload data was refreshed
&quot;sapWorkload&quot;: { # The body of sap workload # The sap workload content
&quot;application&quot;: { # The component of sap workload # Output only. the acsc componment
&quot;haHosts&quot;: [ # A list of host URIs that are part of the HA configuration if present. An empty list indicates the component is not configured for HA.
&quot;A String&quot;,
],
&quot;resources&quot;: [ # Output only. resources in the component
{ # The resource on GCP
&quot;kind&quot;: &quot;A String&quot;, # Output only. ComputeInstance, ComputeDisk, VPC, Bare Metal server, etc.
&quot;name&quot;: &quot;A String&quot;, # Output only. resource name
},
],
&quot;sid&quot;: &quot;A String&quot;, # Output only. sid is the sap component identificator
&quot;topologyType&quot;: &quot;A String&quot;, # The detected topology of the component.
},
&quot;database&quot;: { # The component of sap workload # Output only. the database componment
&quot;haHosts&quot;: [ # A list of host URIs that are part of the HA configuration if present. An empty list indicates the component is not configured for HA.
&quot;A String&quot;,
],
&quot;resources&quot;: [ # Output only. resources in the component
{ # The resource on GCP
&quot;kind&quot;: &quot;A String&quot;, # Output only. ComputeInstance, ComputeDisk, VPC, Bare Metal server, etc.
&quot;name&quot;: &quot;A String&quot;, # Output only. resource name
},
],
&quot;sid&quot;: &quot;A String&quot;, # Output only. sid is the sap component identificator
&quot;topologyType&quot;: &quot;A String&quot;, # The detected topology of the component.
},
&quot;metadata&quot;: { # Output only. The metadata for SAP workload.
&quot;a_key&quot;: &quot;A String&quot;,
Expand Down
Expand Up @@ -838,7 +838,7 @@
}
}
},
"revision": "20240221",
"revision": "20240228",
"rootUrl": "https://workloadmanager.googleapis.com/",
"schemas": {
"APILayerServer": {
Expand Down Expand Up @@ -1826,6 +1826,13 @@
"description": "The component of sap workload",
"id": "SapComponent",
"properties": {
"haHosts": {
"description": "A list of host URIs that are part of the HA configuration if present. An empty list indicates the component is not configured for HA.",
"items": {
"type": "string"
},
"type": "array"
},
"resources": {
"description": "Output only. resources in the component",
"items": {
Expand All @@ -1838,6 +1845,20 @@
"description": "Output only. sid is the sap component identificator",
"readOnly": true,
"type": "string"
},
"topologyType": {
"description": "The detected topology of the component.",
"enum": [
"TOPOLOGY_TYPE_UNSPECIFIED",
"TOPOLOGY_SCALE_UP",
"TOPOLOGY_SCALE_OUT"
],
"enumDescriptions": [
"Unspecified topology.",
"A scale-up single node system.",
"A scale-out multi-node system."
],
"type": "string"
}
},
"type": "object"
Expand Down

0 comments on commit 6d3e821

Please sign in to comment.