published on Monday, Aug 10, 2026 by Pulumi
published on Monday, Aug 10, 2026 by Pulumi
A SemanticGovernancePolicyEngine (SGPE) is the managed, runtime evaluation infrastructure for Semantic Governance Policies (SGP): the natural-language constraints that govern an AI agent’s tool calls. It is a project-level, regional singleton, so each project has at most one engine per region.
Provisioning the engine sets up managed Private Service Connect (PSC) networking in your VPC and a policy decision point that the Agent Gateway consults at runtime to allow or deny an agent’s proposed tool calls. The Semantic Governance Policies themselves, and the Agent Gateway integration that routes agent traffic through the engine, are configured separately and are not managed by this resource.
Reading an uninitialized or deprovisioned engine returns the singleton with state INACTIVE rather than reporting it as absent.
To get more information about SemanticGovernancePolicyEngine, see:
- How-to Guides
Example Usage
Vertex Ai Semantic Governance Policy Engine Basic
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const sgpe = new gcp.vertex.AiSemanticGovernancePolicyEngine("sgpe", {region: "us-central1"});
import pulumi
import pulumi_gcp as gcp
sgpe = gcp.vertex.AiSemanticGovernancePolicyEngine("sgpe", region="us-central1")
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v9/go/gcp/vertex"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := vertex.NewAiSemanticGovernancePolicyEngine(ctx, "sgpe", &vertex.AiSemanticGovernancePolicyEngineArgs{
Region: pulumi.String("us-central1"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Gcp = Pulumi.Gcp;
return await Deployment.RunAsync(() =>
{
var sgpe = new Gcp.Vertex.AiSemanticGovernancePolicyEngine("sgpe", new()
{
Region = "us-central1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.vertex.AiSemanticGovernancePolicyEngine;
import com.pulumi.gcp.vertex.AiSemanticGovernancePolicyEngineArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var sgpe = new AiSemanticGovernancePolicyEngine("sgpe", AiSemanticGovernancePolicyEngineArgs.builder()
.region("us-central1")
.build());
}
}
resources:
sgpe:
type: gcp:vertex:AiSemanticGovernancePolicyEngine
properties:
region: us-central1
pulumi {
required_providers {
gcp = {
source = "pulumi/gcp"
}
}
}
resource "gcp_vertex_aisemanticgovernancepolicyengine" "sgpe" {
region = "us-central1"
}
Create AiSemanticGovernancePolicyEngine Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AiSemanticGovernancePolicyEngine(name: string, args?: AiSemanticGovernancePolicyEngineArgs, opts?: CustomResourceOptions);@overload
def AiSemanticGovernancePolicyEngine(resource_name: str,
args: Optional[AiSemanticGovernancePolicyEngineArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def AiSemanticGovernancePolicyEngine(resource_name: str,
opts: Optional[ResourceOptions] = None,
deletion_policy: Optional[str] = None,
project: Optional[str] = None,
region: Optional[str] = None)func NewAiSemanticGovernancePolicyEngine(ctx *Context, name string, args *AiSemanticGovernancePolicyEngineArgs, opts ...ResourceOption) (*AiSemanticGovernancePolicyEngine, error)public AiSemanticGovernancePolicyEngine(string name, AiSemanticGovernancePolicyEngineArgs? args = null, CustomResourceOptions? opts = null)
public AiSemanticGovernancePolicyEngine(String name, AiSemanticGovernancePolicyEngineArgs args)
public AiSemanticGovernancePolicyEngine(String name, AiSemanticGovernancePolicyEngineArgs args, CustomResourceOptions options)
type: gcp:vertex:AiSemanticGovernancePolicyEngine
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "gcp_vertex_ai_semantic_governance_policy_engine" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AiSemanticGovernancePolicyEngineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AiSemanticGovernancePolicyEngineArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AiSemanticGovernancePolicyEngineArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AiSemanticGovernancePolicyEngineArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AiSemanticGovernancePolicyEngineArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var aiSemanticGovernancePolicyEngineResource = new Gcp.Vertex.AiSemanticGovernancePolicyEngine("aiSemanticGovernancePolicyEngineResource", new()
{
DeletionPolicy = "string",
Project = "string",
Region = "string",
});
example, err := vertex.NewAiSemanticGovernancePolicyEngine(ctx, "aiSemanticGovernancePolicyEngineResource", &vertex.AiSemanticGovernancePolicyEngineArgs{
DeletionPolicy: pulumi.String("string"),
Project: pulumi.String("string"),
Region: pulumi.String("string"),
})
resource "gcp_vertex_ai_semantic_governance_policy_engine" "aiSemanticGovernancePolicyEngineResource" {
lifecycle {
create_before_destroy = true
}
deletion_policy = "string"
project = "string"
region = "string"
}
var aiSemanticGovernancePolicyEngineResource = new AiSemanticGovernancePolicyEngine("aiSemanticGovernancePolicyEngineResource", AiSemanticGovernancePolicyEngineArgs.builder()
.deletionPolicy("string")
.project("string")
.region("string")
.build());
ai_semantic_governance_policy_engine_resource = gcp.vertex.AiSemanticGovernancePolicyEngine("aiSemanticGovernancePolicyEngineResource",
deletion_policy="string",
project="string",
region="string")
const aiSemanticGovernancePolicyEngineResource = new gcp.vertex.AiSemanticGovernancePolicyEngine("aiSemanticGovernancePolicyEngineResource", {
deletionPolicy: "string",
project: "string",
region: "string",
});
type: gcp:vertex:AiSemanticGovernancePolicyEngine
properties:
deletionPolicy: string
project: string
region: string
AiSemanticGovernancePolicyEngine Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The AiSemanticGovernancePolicyEngine resource accepts the following input properties:
- Deletion
Policy string - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- Deletion
Policy string - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- deletion_
policy string - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region string
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- deletion
Policy String - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- deletion
Policy string - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region string
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- deletion_
policy str - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region str
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- deletion
Policy String - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
Outputs
All input properties are implicitly available as output properties. Additionally, the AiSemanticGovernancePolicyEngine resource produces the following output properties:
- Create
Time string - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Address string - The IP address allocated for the SGPE's managed PSC endpoint.
- Name string
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- Psc
Forwarding stringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- Psc
Service stringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- State string
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - Update
Time string - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- Create
Time string - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- Id string
- The provider-assigned unique ID for this managed resource.
- Ip
Address string - The IP address allocated for the SGPE's managed PSC endpoint.
- Name string
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- Psc
Forwarding stringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- Psc
Service stringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- State string
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - Update
Time string - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create_
time string - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- id string
- The provider-assigned unique ID for this managed resource.
- ip_
address string - The IP address allocated for the SGPE's managed PSC endpoint.
- name string
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- psc_
forwarding_ stringrule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc_
service_ stringattachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- state string
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update_
time string - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create
Time String - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Address String - The IP address allocated for the SGPE's managed PSC endpoint.
- name String
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- psc
Forwarding StringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc
Service StringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- state String
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update
Time String - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create
Time string - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- id string
- The provider-assigned unique ID for this managed resource.
- ip
Address string - The IP address allocated for the SGPE's managed PSC endpoint.
- name string
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- psc
Forwarding stringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc
Service stringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- state string
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update
Time string - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create_
time str - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- id str
- The provider-assigned unique ID for this managed resource.
- ip_
address str - The IP address allocated for the SGPE's managed PSC endpoint.
- name str
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- psc_
forwarding_ strrule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc_
service_ strattachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- state str
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update_
time str - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create
Time String - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- id String
- The provider-assigned unique ID for this managed resource.
- ip
Address String - The IP address allocated for the SGPE's managed PSC endpoint.
- name String
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- psc
Forwarding StringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc
Service StringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- state String
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update
Time String - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
Look up Existing AiSemanticGovernancePolicyEngine Resource
Get an existing AiSemanticGovernancePolicyEngine resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AiSemanticGovernancePolicyEngineState, opts?: CustomResourceOptions): AiSemanticGovernancePolicyEngine@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
deletion_policy: Optional[str] = None,
ip_address: Optional[str] = None,
name: Optional[str] = None,
project: Optional[str] = None,
psc_forwarding_rule: Optional[str] = None,
psc_service_attachment: Optional[str] = None,
region: Optional[str] = None,
state: Optional[str] = None,
update_time: Optional[str] = None) -> AiSemanticGovernancePolicyEnginefunc GetAiSemanticGovernancePolicyEngine(ctx *Context, name string, id IDInput, state *AiSemanticGovernancePolicyEngineState, opts ...ResourceOption) (*AiSemanticGovernancePolicyEngine, error)public static AiSemanticGovernancePolicyEngine Get(string name, Input<string> id, AiSemanticGovernancePolicyEngineState? state, CustomResourceOptions? opts = null)public static AiSemanticGovernancePolicyEngine get(String name, Output<String> id, AiSemanticGovernancePolicyEngineState state, CustomResourceOptions options)resources: _: type: gcp:vertex:AiSemanticGovernancePolicyEngine get: id: ${id}import {
to = gcp_vertex_ai_semantic_governance_policy_engine.example
id = "${id}"
}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Create
Time string - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- Deletion
Policy string - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- Ip
Address string - The IP address allocated for the SGPE's managed PSC endpoint.
- Name string
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Psc
Forwarding stringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- Psc
Service stringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- Region string
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- State string
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - Update
Time string - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- Create
Time string - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- Deletion
Policy string - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- Ip
Address string - The IP address allocated for the SGPE's managed PSC endpoint.
- Name string
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Psc
Forwarding stringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- Psc
Service stringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- Region string
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- State string
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - Update
Time string - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create_
time string - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- deletion_
policy string - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- ip_
address string - The IP address allocated for the SGPE's managed PSC endpoint.
- name string
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- psc_
forwarding_ stringrule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc_
service_ stringattachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- region string
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- state string
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update_
time string - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create
Time String - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- deletion
Policy String - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- ip
Address String - The IP address allocated for the SGPE's managed PSC endpoint.
- name String
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- psc
Forwarding StringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc
Service StringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- region String
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- state String
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update
Time String - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create
Time string - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- deletion
Policy string - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- ip
Address string - The IP address allocated for the SGPE's managed PSC endpoint.
- name string
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- psc
Forwarding stringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc
Service stringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- region string
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- state string
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update
Time string - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create_
time str - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- deletion_
policy str - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- ip_
address str - The IP address allocated for the SGPE's managed PSC endpoint.
- name str
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- psc_
forwarding_ strrule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc_
service_ strattachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- region str
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- state str
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update_
time str - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
- create
Time String - The time the SemanticGovernancePolicyEngine was created, in RFC3339 UTC "Zulu" format.
- deletion
Policy String - Whether Terraform will be prevented from destroying the resource. Defaults to DELETE. When a 'terraform destroy' or 'pulumi up' would delete the resource, the command will fail if this field is set to "PREVENT" in Terraform state. When set to "ABANDON", the command will remove the resource from Terraform management without updating or deleting the resource in the API. When set to "DELETE", deleting the resource is allowed.
- ip
Address String - The IP address allocated for the SGPE's managed PSC endpoint.
- name String
- The resource name of the SemanticGovernancePolicyEngine, in the form 'projects/{project}/locations/{region}/semanticGovernancePolicyEngine'.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- psc
Forwarding StringRule - The Private Service Connect forwarding rule URI for the SGPE's managed endpoint.
- psc
Service StringAttachment - The Private Service Connect service attachment URI for the SGPE's managed endpoint.
- region String
- The region of the SemanticGovernancePolicyEngine, e.g. 'us-central1'.
- state String
- The current state of the SemanticGovernancePolicyEngine. One of:
STATE_UNSPECIFIED, PROVISIONING, ACTIVE, FAILED, DEPROVISIONING,
INACTIVE.
FAILEDindicates provisioning did not succeed; recover by destroying the resource (deprovision) or re-applying (re-provision). - update
Time String - The time the SemanticGovernancePolicyEngine was last updated, in RFC3339 UTC "Zulu" format.
Import
SemanticGovernancePolicyEngine can be imported using any of these accepted formats:
projects/{{project}}/locations/{{region}}/semanticGovernancePolicyEngine{{project}}/{{region}}{{region}}
When using the pulumi import command, SemanticGovernancePolicyEngine can be imported using one of the formats above. For example:
$ pulumi import gcp:vertex/aiSemanticGovernancePolicyEngine:AiSemanticGovernancePolicyEngine default projects/{{project}}/locations/{{region}}/semanticGovernancePolicyEngine
$ pulumi import gcp:vertex/aiSemanticGovernancePolicyEngine:AiSemanticGovernancePolicyEngine default {{project}}/{{region}}
$ pulumi import gcp:vertex/aiSemanticGovernancePolicyEngine:AiSemanticGovernancePolicyEngine default {{region}}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Google Cloud (GCP) Classic pulumi/pulumi-gcp
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
google-betaTerraform Provider.
published on Monday, Aug 10, 2026 by Pulumi