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 deleted:
- schemas.SapDiscoveryComponent.properties.applicationType.type (Total Keys: 1)
- schemas.SapDiscoveryComponent.properties.databaseType.type (Total Keys: 1)

The following keys were added:
- schemas.SapDiscoveryComponent.properties.applicationProperties.$ref (Total Keys: 1)
- schemas.SapDiscoveryComponent.properties.databaseProperties.$ref (Total Keys: 1)
- schemas.SapDiscoveryComponentApplicationProperties (Total Keys: 5)
- schemas.SapDiscoveryComponentDatabaseProperties (Total Keys: 5)
  • Loading branch information
yoshi-automation committed Jul 25, 2023
1 parent 668c2fe commit a43df17
Show file tree
Hide file tree
Showing 2 changed files with 88 additions and 14 deletions.
24 changes: 20 additions & 4 deletions docs/dyn/workloadmanager_v1.projects.locations.insights.html
Expand Up @@ -100,8 +100,16 @@ <h3>Method Details</h3>
&quot;instanceId&quot;: &quot;A String&quot;, # Required. The instance id where the insight is generated from
&quot;sapDiscovery&quot;: { # LINT.IfChange The schema of SAP system discovery data. # The insights data for sap system discovery. This is a copy of SAP System proto and should get updated whenever that one changes.
&quot;applicationLayer&quot;: { # Message describing the system component. # An SAP system may run without an application layer.
&quot;applicationType&quot;: &quot;A String&quot;, # The component is a SAP application.
&quot;databaseType&quot;: &quot;A String&quot;, # The component is a SAP database.
&quot;applicationProperties&quot;: { # A set of properties describing an SAP Application layer. # Optional. The component is a SAP application.
&quot;applicationType&quot;: &quot;A String&quot;, # Required. Type of the application. Netweaver, etc.
&quot;ascsUri&quot;: &quot;A String&quot;, # Required. Resource URI of the recognized ASCS host of the application.
&quot;nfsUri&quot;: &quot;A String&quot;, # Optional. Resource URI of the recognized shared NFS of the application. May be empty if the application server has only a single node.
},
&quot;databaseProperties&quot;: { # A set of properties describing an SAP Database layer. # Optional. The component is a SAP database.
&quot;databaseType&quot;: &quot;A String&quot;, # Required. Type of the database. HANA, DB2, etc.
&quot;primaryInstanceUri&quot;: &quot;A String&quot;, # Required. URI of the recognized primary instance of the database.
&quot;sharedNfsUri&quot;: &quot;A String&quot;, # Optional. URI of the recognized shared NFS of the database. May be empty if the database has only a single node.
},
&quot;hostProject&quot;: &quot;A String&quot;, # Pantheon Project in which the resources reside.
&quot;resources&quot;: [ # The resources in a component.
{ # Message describing a resource.
Expand All @@ -117,8 +125,16 @@ <h3>Method Details</h3>
&quot;sid&quot;: &quot;A String&quot;, # The sap identifier, used by the SAP software and helps differentiate systems for customers.
},
&quot;databaseLayer&quot;: { # Message describing the system component. # An SAP System must have a database.
&quot;applicationType&quot;: &quot;A String&quot;, # The component is a SAP application.
&quot;databaseType&quot;: &quot;A String&quot;, # The component is a SAP database.
&quot;applicationProperties&quot;: { # A set of properties describing an SAP Application layer. # Optional. The component is a SAP application.
&quot;applicationType&quot;: &quot;A String&quot;, # Required. Type of the application. Netweaver, etc.
&quot;ascsUri&quot;: &quot;A String&quot;, # Required. Resource URI of the recognized ASCS host of the application.
&quot;nfsUri&quot;: &quot;A String&quot;, # Optional. Resource URI of the recognized shared NFS of the application. May be empty if the application server has only a single node.
},
&quot;databaseProperties&quot;: { # A set of properties describing an SAP Database layer. # Optional. The component is a SAP database.
&quot;databaseType&quot;: &quot;A String&quot;, # Required. Type of the database. HANA, DB2, etc.
&quot;primaryInstanceUri&quot;: &quot;A String&quot;, # Required. URI of the recognized primary instance of the database.
&quot;sharedNfsUri&quot;: &quot;A String&quot;, # Optional. URI of the recognized shared NFS of the database. May be empty if the database has only a single node.
},
&quot;hostProject&quot;: &quot;A String&quot;, # Pantheon Project in which the resources reside.
&quot;resources&quot;: [ # The resources in a component.
{ # Message describing a resource.
Expand Down
78 changes: 68 additions & 10 deletions googleapiclient/discovery_cache/documents/workloadmanager.v1.json
Expand Up @@ -707,7 +707,7 @@
}
}
},
"revision": "20230705",
"revision": "20230710",
"rootUrl": "https://workloadmanager.googleapis.com/",
"schemas": {
"CancelOperationRequest": {
Expand Down Expand Up @@ -1368,13 +1368,13 @@
"description": "Message describing the system component.",
"id": "SapDiscoveryComponent",
"properties": {
"applicationType": {
"description": "The component is a SAP application.",
"type": "string"
"applicationProperties": {
"$ref": "SapDiscoveryComponentApplicationProperties",
"description": "Optional. The component is a SAP application."
},
"databaseType": {
"description": "The component is a SAP database.",
"type": "string"
"databaseProperties": {
"$ref": "SapDiscoveryComponentDatabaseProperties",
"description": "Optional. The component is a SAP database."
},
"hostProject": {
"description": "Pantheon Project in which the resources reside.",
Expand All @@ -1394,6 +1394,64 @@
},
"type": "object"
},
"SapDiscoveryComponentApplicationProperties": {
"description": "A set of properties describing an SAP Application layer.",
"id": "SapDiscoveryComponentApplicationProperties",
"properties": {
"applicationType": {
"description": "Required. Type of the application. Netweaver, etc.",
"enum": [
"APPLICATION_TYPE_UNSPECIFIED",
"NETWEAVER"
],
"enumDescriptions": [
"Unspecified application type",
"SAP Netweaver"
],
"type": "string"
},
"ascsUri": {
"description": "Required. Resource URI of the recognized ASCS host of the application.",
"type": "string"
},
"nfsUri": {
"description": "Optional. Resource URI of the recognized shared NFS of the application. May be empty if the application server has only a single node.",
"type": "string"
}
},
"type": "object"
},
"SapDiscoveryComponentDatabaseProperties": {
"description": "A set of properties describing an SAP Database layer.",
"id": "SapDiscoveryComponentDatabaseProperties",
"properties": {
"databaseType": {
"description": "Required. Type of the database. HANA, DB2, etc.",
"enum": [
"DATABASE_TYPE_UNSPECIFIED",
"HANA",
"MAX_DB",
"DB2"
],
"enumDescriptions": [
"Unspecified database type.",
"SAP HANA",
"SAP MAX_DB",
"IBM DB2"
],
"type": "string"
},
"primaryInstanceUri": {
"description": "Required. URI of the recognized primary instance of the database.",
"type": "string"
},
"sharedNfsUri": {
"description": "Optional. URI of the recognized shared NFS of the database. May be empty if the database has only a single node.",
"type": "string"
}
},
"type": "object"
},
"SapDiscoveryMetadata": {
"description": "Message describing SAP discovery system metadata",
"id": "SapDiscoveryMetadata",
Expand Down Expand Up @@ -1464,9 +1522,9 @@
"description": "Required. The type of this resource.",
"enum": [
"RESOURCE_TYPE_UNSPECIFIED",
"COMPUTE",
"STORAGE",
"NETWORK"
"RESOURCE_TYPE_COMPUTE",
"RESOURCE_TYPE_STORAGE",
"RESOURCE_TYPE_NETWORK"
],
"enumDescriptions": [
"Undefined resource type.",
Expand Down

0 comments on commit a43df17

Please sign in to comment.