web_paths
Creates, updates, deletes, gets or lists a web_paths
resource.
Overview
Name | web_paths |
Type | Resource |
Id | google.networkmanagement.web_paths |
Fields
The following fields are returned by SELECT
queries:
- get
- list
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Identifier. Name of the resource. Format: projects/{project}/locations/{location}/networkMonitoringProviders/{network_monitoring_provider}/webPaths/{web_path} |
createTime | string (google-datetime) | Output only. The time the WebPath was created. |
destination | string | Output only. Web monitoring target. |
displayName | string | Output only. Display name of the WebPath. |
interval | string (google-duration) | Output only. Monitoring interval. |
monitoringEnabled | boolean | Output only. Is monitoring enabled for the WebPath. |
monitoringPolicyDisplayName | string | Output only. Display name of the monitoring policy. |
monitoringPolicyId | string | Output only. ID of the monitoring policy. |
monitoringStatus | string | Output only. The monitoring status of the WebPath. |
providerTags | array | Output only. The provider tags of the web path. |
providerUiUri | string | Output only. Link to provider's UI; link shows the WebPath. |
relatedNetworkPathId | string | Output only. Provider's UUID of the related NetworkPath. |
sourceMonitoringPointId | string | Output only. ID of the source MonitoringPoint. |
updateTime | string (google-datetime) | Output only. The time the WebPath was updated. |
workflowType | string | Output only. The workflow type of the WebPath. |
Successful response
Name | Datatype | Description |
---|---|---|
name | string | Identifier. Name of the resource. Format: projects/{project}/locations/{location}/networkMonitoringProviders/{network_monitoring_provider}/webPaths/{web_path} |
createTime | string (google-datetime) | Output only. The time the WebPath was created. |
destination | string | Output only. Web monitoring target. |
displayName | string | Output only. Display name of the WebPath. |
interval | string (google-duration) | Output only. Monitoring interval. |
monitoringEnabled | boolean | Output only. Is monitoring enabled for the WebPath. |
monitoringPolicyDisplayName | string | Output only. Display name of the monitoring policy. |
monitoringPolicyId | string | Output only. ID of the monitoring policy. |
monitoringStatus | string | Output only. The monitoring status of the WebPath. |
providerTags | array | Output only. The provider tags of the web path. |
providerUiUri | string | Output only. Link to provider's UI; link shows the WebPath. |
relatedNetworkPathId | string | Output only. Provider's UUID of the related NetworkPath. |
sourceMonitoringPointId | string | Output only. ID of the source MonitoringPoint. |
updateTime | string (google-datetime) | Output only. The time the WebPath was updated. |
workflowType | string | Output only. The workflow type of the WebPath. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
get | select | projectsId , locationsId , networkMonitoringProvidersId , webPathsId | Gets the WebPath resource. | |
list | select | projectsId , locationsId , networkMonitoringProvidersId | pageSize , pageToken | Lists WebPaths for a given network monitoring provider. |
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 | |
networkMonitoringProvidersId | string | |
projectsId | string | |
webPathsId | string | |
pageSize | integer (int32) | |
pageToken | string |
SELECT
examples
- get
- list
Gets the WebPath resource.
SELECT
name,
createTime,
destination,
displayName,
interval,
monitoringEnabled,
monitoringPolicyDisplayName,
monitoringPolicyId,
monitoringStatus,
providerTags,
providerUiUri,
relatedNetworkPathId,
sourceMonitoringPointId,
updateTime,
workflowType
FROM google.networkmanagement.web_paths
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND networkMonitoringProvidersId = '{{ networkMonitoringProvidersId }}' -- required
AND webPathsId = '{{ webPathsId }}' -- required;
Lists WebPaths for a given network monitoring provider.
SELECT
name,
createTime,
destination,
displayName,
interval,
monitoringEnabled,
monitoringPolicyDisplayName,
monitoringPolicyId,
monitoringStatus,
providerTags,
providerUiUri,
relatedNetworkPathId,
sourceMonitoringPointId,
updateTime,
workflowType
FROM google.networkmanagement.web_paths
WHERE projectsId = '{{ projectsId }}' -- required
AND locationsId = '{{ locationsId }}' -- required
AND networkMonitoringProvidersId = '{{ networkMonitoringProvidersId }}' -- required
AND pageSize = '{{ pageSize }}'
AND pageToken = '{{ pageToken }}';