Skip to main content

web_paths

Creates, updates, deletes, gets or lists a web_paths resource.

Overview

Nameweb_paths
TypeResource
Idgoogle.networkmanagement.web_paths

Fields

The following fields are returned by SELECT queries:

Successful response

NameDatatypeDescription
namestringIdentifier. Name of the resource. Format: projects/{project}/locations/{location}/networkMonitoringProviders/{network_monitoring_provider}/webPaths/{web_path}
createTimestring (google-datetime)Output only. The time the WebPath was created.
destinationstringOutput only. Web monitoring target.
displayNamestringOutput only. Display name of the WebPath.
intervalstring (google-duration)Output only. Monitoring interval.
monitoringEnabledbooleanOutput only. Is monitoring enabled for the WebPath.
monitoringPolicyDisplayNamestringOutput only. Display name of the monitoring policy.
monitoringPolicyIdstringOutput only. ID of the monitoring policy.
monitoringStatusstringOutput only. The monitoring status of the WebPath.
providerTagsarrayOutput only. The provider tags of the web path.
providerUiUristringOutput only. Link to provider's UI; link shows the WebPath.
relatedNetworkPathIdstringOutput only. Provider's UUID of the related NetworkPath.
sourceMonitoringPointIdstringOutput only. ID of the source MonitoringPoint.
updateTimestring (google-datetime)Output only. The time the WebPath was updated.
workflowTypestringOutput only. The workflow type of the WebPath.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
getselectprojectsId, locationsId, networkMonitoringProvidersId, webPathsIdGets the WebPath resource.
listselectprojectsId, locationsId, networkMonitoringProvidersIdpageSize, pageTokenLists 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.

NameDatatypeDescription
locationsIdstring
networkMonitoringProvidersIdstring
projectsIdstring
webPathsIdstring
pageSizeinteger (int32)
pageTokenstring

SELECT examples

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;