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:
- resources.projects.resources.locations.resources.workloadProfiles.methods.get (Total Keys: 11)
- resources.projects.resources.locations.resources.workloadProfiles.methods.list (Total Keys: 19)
- schemas.APILayerServer (Total Keys: 9)
- schemas.AvailabilityGroup (Total Keys: 12)
- schemas.BackendServer (Total Keys: 13)
- schemas.CloudResource (Total Keys: 6)
- schemas.Cluster (Total Keys: 7)
- schemas.Database (Total Keys: 10)
- schemas.FrontEndServer (Total Keys: 9)
- schemas.Instance (Total Keys: 8)
- schemas.Layer (Total Keys: 8)
- schemas.ListWorkloadProfilesResponse (Total Keys: 9)
- schemas.LoadBalancerServer (Total Keys: 6)
- schemas.SapComponent (Total Keys: 10)
- schemas.SapWorkload (Total Keys: 17)
- schemas.SqlserverWorkload (Total Keys: 19)
- schemas.ThreeTierWorkload (Total Keys: 14)
- schemas.WorkloadProfile (Total Keys: 25)

The following keys were added:
- resources.projects.resources.locations.resources.evaluations.methods.delete.parameters.force (Total Keys: 2)
- schemas.SapDiscoveryComponentDatabaseProperties.properties.databaseSid.type (Total Keys: 1)
- schemas.WriteInsightRequest.properties.agentVersion.type (Total Keys: 1)
  • Loading branch information
yoshi-automation committed Mar 26, 2024
1 parent 474ebeb commit e432a3e
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 693 deletions.
Expand Up @@ -86,7 +86,7 @@ <h2>Instance Methods</h2>
<code><a href="#create">create(parent, body=None, evaluationId=None, requestId=None, x__xgafv=None)</a></code></p>
<p class="firstline">Creates a new Evaluation in a given project and location.</p>
<p class="toc_element">
<code><a href="#delete">delete(name, requestId=None, x__xgafv=None)</a></code></p>
<code><a href="#delete">delete(name, force=None, requestId=None, x__xgafv=None)</a></code></p>
<p class="firstline">Deletes a single Evaluation.</p>
<p class="toc_element">
<code><a href="#get">get(name, x__xgafv=None)</a></code></p>
Expand Down Expand Up @@ -188,11 +188,12 @@ <h3>Method Details</h3>
</div>

<div class="method">
<code class="details" id="delete">delete(name, requestId=None, x__xgafv=None)</code>
<code class="details" id="delete">delete(name, force=None, requestId=None, x__xgafv=None)</code>
<pre>Deletes a single Evaluation.

Args:
name: string, Required. Name of the resource (required)
force: boolean, Optional. Followed the best practice from https://aip.dev/135#cascading-delete
requestId: string, Optional. An optional request ID to identify requests. Specify a unique request ID so that if you must retry your request, the server will know to ignore the request if it has already been completed. The server will guarantee that for at least 60 minutes after the first request. For example, consider a situation where you make an initial request and the request times out. If you make the request again with the same request ID, the server can check if original operation with the same request ID was received, and if so, will ignore the second request. This prevents clients from accidentally creating duplicate commitments. The request ID must be a valid UUID with the exception that zero UUID is not supported (00000000-0000-0000-0000-000000000000).
x__xgafv: string, V1 error format.
Allowed values
Expand Down
5 changes: 0 additions & 5 deletions docs/dyn/workloadmanager_v1.projects.locations.html
Expand Up @@ -94,11 +94,6 @@ <h2>Instance Methods</h2>
</p>
<p class="firstline">Returns the rules Resource.</p>

<p class="toc_element">
<code><a href="workloadmanager_v1.projects.locations.workloadProfiles.html">workloadProfiles()</a></code>
</p>
<p class="firstline">Returns the workloadProfiles Resource.</p>

<p class="toc_element">
<code><a href="#close">close()</a></code></p>
<p class="firstline">Close httplib2 connections.</p>
Expand Down
11 changes: 11 additions & 0 deletions docs/dyn/workloadmanager_v1.projects.locations.insights.html
Expand Up @@ -96,20 +96,25 @@ <h3>Method Details</h3>
The object takes the form of:

{ # Request for sending the data insights.
&quot;agentVersion&quot;: &quot;A String&quot;, # Optional. The agent version collected this data point.
&quot;insight&quot;: { # A presentation of host resource usage where the workload runs. # Required. The metrics data details.
&quot;instanceId&quot;: &quot;A String&quot;, # Required. The instance id where the insight is generated from
&quot;sapDiscovery&quot;: { # 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. # Optional. An SAP system may run without an application layer.
&quot;applicationProperties&quot;: { # A set of properties describing an SAP Application layer. # Optional. The component is a SAP application.
&quot;abap&quot;: True or False, # Optional. Indicates whether this is a Java or ABAP Netweaver instance. true means it is ABAP, false means it is Java.
&quot;appInstanceNumber&quot;: &quot;A String&quot;, # Optional. Instance number of the SAP application instance.
&quot;applicationType&quot;: &quot;A String&quot;, # Required. Type of the application. Netweaver, etc.
&quot;ascsInstanceNumber&quot;: &quot;A String&quot;, # Optional. Instance number of the ASCS instance.
&quot;ascsUri&quot;: &quot;A String&quot;, # Optional. Resource URI of the recognized ASCS host of the application.
&quot;kernelVersion&quot;: &quot;A String&quot;, # Optional. Kernel version for Netweaver running in the system.
&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;databaseSid&quot;: &quot;A String&quot;, # Optional. SID of the system database.
&quot;databaseType&quot;: &quot;A String&quot;, # Required. Type of the database. HANA, DB2, etc.
&quot;databaseVersion&quot;: &quot;A String&quot;, # Optional. The version of the database software running in the system.
&quot;instanceNumber&quot;: &quot;A String&quot;, # Optional. Instance number of the SAP instance.
&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.
},
Expand All @@ -123,6 +128,7 @@ <h3>Method Details</h3>
&quot;clusterInstances&quot;: [ # Optional. A list of instance URIs that are part of a cluster with this one.
&quot;A String&quot;,
],
&quot;instanceNumber&quot;: &quot;A String&quot;, # Optional. The VM&#x27;s instance number.
&quot;virtualHostname&quot;: &quot;A String&quot;, # Optional. A virtual hostname of the instance if it has one.
},
&quot;relatedResources&quot;: [ # Optional. A list of resource URIs related to this resource.
Expand All @@ -140,14 +146,18 @@ <h3>Method Details</h3>
&quot;databaseLayer&quot;: { # Message describing the system component. # Required. An SAP System must have a database.
&quot;applicationProperties&quot;: { # A set of properties describing an SAP Application layer. # Optional. The component is a SAP application.
&quot;abap&quot;: True or False, # Optional. Indicates whether this is a Java or ABAP Netweaver instance. true means it is ABAP, false means it is Java.
&quot;appInstanceNumber&quot;: &quot;A String&quot;, # Optional. Instance number of the SAP application instance.
&quot;applicationType&quot;: &quot;A String&quot;, # Required. Type of the application. Netweaver, etc.
&quot;ascsInstanceNumber&quot;: &quot;A String&quot;, # Optional. Instance number of the ASCS instance.
&quot;ascsUri&quot;: &quot;A String&quot;, # Optional. Resource URI of the recognized ASCS host of the application.
&quot;kernelVersion&quot;: &quot;A String&quot;, # Optional. Kernel version for Netweaver running in the system.
&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;databaseSid&quot;: &quot;A String&quot;, # Optional. SID of the system database.
&quot;databaseType&quot;: &quot;A String&quot;, # Required. Type of the database. HANA, DB2, etc.
&quot;databaseVersion&quot;: &quot;A String&quot;, # Optional. The version of the database software running in the system.
&quot;instanceNumber&quot;: &quot;A String&quot;, # Optional. Instance number of the SAP instance.
&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.
},
Expand All @@ -161,6 +171,7 @@ <h3>Method Details</h3>
&quot;clusterInstances&quot;: [ # Optional. A list of instance URIs that are part of a cluster with this one.
&quot;A String&quot;,
],
&quot;instanceNumber&quot;: &quot;A String&quot;, # Optional. The VM&#x27;s instance number.
&quot;virtualHostname&quot;: &quot;A String&quot;, # Optional. A virtual hostname of the instance if it has one.
},
&quot;relatedResources&quot;: [ # Optional. A list of resource URIs related to this resource.
Expand Down

0 comments on commit e432a3e

Please sign in to comment.