discoveredprofiles
Creates, updates, deletes, gets or lists a discoveredprofiles
resource.
Overview
Name | discoveredprofiles |
Type | Resource |
Id | google.workloadmanager.discoveredprofiles |
Fields
The following fields are returned by SELECT
queries:
- list
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Identifier. name of resource names have the form 'projects/{project_id}/locations/{location}/workloadProfiles/{workload_id}' |
labels | object | Optional. such as name, description, version. More example can be found in deployment |
refreshedTime | string (google-datetime) | Required. time when the workload data was refreshed |
sapWorkload | object | The sap workload content (id: SapWorkload) |
workloadType | string | Required. The type of the workload |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | projectsId , locationsId | pageSize , pageToken , filter | List discovered workload profiles |
Parameters
Parameters can be passed in the WHERE
clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
Name | Datatype | Description |
---|---|---|
locationsId | string | |
projectsId | string | |
filter | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- list
List discovered workload profiles
SELECT
name,
labels,
refreshedTime,
sapWorkload,
workloadType
FROM google.workloadmanager.discoveredprofiles
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}'
AND filter = '{{ filter }}';