services
Creates, updates, deletes, gets or lists a services
resource.
Overview
Name | services |
Type | Resource |
Id | google.accesscontextmanager.services |
Fields
Name | Datatype | Description |
---|---|---|
name | string | The service name or address of the supported service, such as service.googleapis.com . |
availableOnRestrictedVip | boolean | True if the service is available on the restricted VIP. Services on the restricted VIP typically either support VPC Service Controls or are core infrastructure services required for the functioning of Google Cloud. |
knownLimitations | boolean | True if the service is supported with some limitations. Check documentation for details. |
serviceSupportStage | string | The support stage of the service. |
supportStage | string | The support stage of the service. |
supportedMethods | array | The list of the supported methods. This field exists only in response to GetSupportedService |
title | string | The name of the supported product, such as 'Cloud Product API'. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
get | SELECT | name | Returns a VPC-SC supported service based on the service name. |
list | SELECT |
| Lists all VPC-SC supported services. |
SELECT
examples
Lists all VPC-SC supported services.
SELECT
name,
availableOnRestrictedVip,
knownLimitations,
serviceSupportStage,
supportStage,
supportedMethods,
title
FROM google.accesscontextmanager.services
;