1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. accesscontextmanager
  5. ServicePerimeter
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

gcp.accesscontextmanager.ServicePerimeter

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi

    ServicePerimeter describes a set of GCP resources which can freely import and export data amongst themselves, but not export outside of the ServicePerimeter. If a request with a source within this ServicePerimeter has a target outside of the ServicePerimeter, the request will be blocked. Otherwise the request is allowed. There are two types of Service Perimeter

    • Regular and Bridge. Regular Service Perimeters cannot overlap, a single GCP project can only belong to a single regular Service Perimeter. Service Perimeter Bridges can contain only GCP projects as members, a single GCP project may belong to multiple Service Perimeter Bridges.

    To get more information about ServicePerimeter, see:

    Warning: If you are using User ADCs (Application Default Credentials) with this resource, you must specify a billing_project and set user_project_override to true in the provider configuration. Otherwise the ACM API will return a 403 error. Your account must have the serviceusage.services.use permission on the billing_project you defined.

    Example Usage

    Access Context Manager Service Perimeter Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const access_policy = new gcp.accesscontextmanager.AccessPolicy("access-policy", {
        parent: "organizations/123456789",
        title: "my policy",
    });
    const service_perimeter = new gcp.accesscontextmanager.ServicePerimeter("service-perimeter", {
        parent: pulumi.interpolate`accessPolicies/${access_policy.name}`,
        name: pulumi.interpolate`accessPolicies/${access_policy.name}/servicePerimeters/restrict_storage`,
        title: "restrict_storage",
        status: {
            restrictedServices: ["storage.googleapis.com"],
        },
    });
    const access_level = new gcp.accesscontextmanager.AccessLevel("access-level", {
        parent: pulumi.interpolate`accessPolicies/${access_policy.name}`,
        name: pulumi.interpolate`accessPolicies/${access_policy.name}/accessLevels/chromeos_no_lock`,
        title: "chromeos_no_lock",
        basic: {
            conditions: [{
                devicePolicy: {
                    requireScreenLock: false,
                    osConstraints: [{
                        osType: "DESKTOP_CHROME_OS",
                    }],
                },
                regions: [
                    "CH",
                    "IT",
                    "US",
                ],
            }],
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    access_policy = gcp.accesscontextmanager.AccessPolicy("access-policy",
        parent="organizations/123456789",
        title="my policy")
    service_perimeter = gcp.accesscontextmanager.ServicePerimeter("service-perimeter",
        parent=access_policy.name.apply(lambda name: f"accessPolicies/{name}"),
        name=access_policy.name.apply(lambda name: f"accessPolicies/{name}/servicePerimeters/restrict_storage"),
        title="restrict_storage",
        status=gcp.accesscontextmanager.ServicePerimeterStatusArgs(
            restricted_services=["storage.googleapis.com"],
        ))
    access_level = gcp.accesscontextmanager.AccessLevel("access-level",
        parent=access_policy.name.apply(lambda name: f"accessPolicies/{name}"),
        name=access_policy.name.apply(lambda name: f"accessPolicies/{name}/accessLevels/chromeos_no_lock"),
        title="chromeos_no_lock",
        basic=gcp.accesscontextmanager.AccessLevelBasicArgs(
            conditions=[gcp.accesscontextmanager.AccessLevelBasicConditionArgs(
                device_policy=gcp.accesscontextmanager.AccessLevelBasicConditionDevicePolicyArgs(
                    require_screen_lock=False,
                    os_constraints=[gcp.accesscontextmanager.AccessLevelBasicConditionDevicePolicyOsConstraintArgs(
                        os_type="DESKTOP_CHROME_OS",
                    )],
                ),
                regions=[
                    "CH",
                    "IT",
                    "US",
                ],
            )],
        ))
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/accesscontextmanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := accesscontextmanager.NewAccessPolicy(ctx, "access-policy", &accesscontextmanager.AccessPolicyArgs{
    			Parent: pulumi.String("organizations/123456789"),
    			Title:  pulumi.String("my policy"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = accesscontextmanager.NewServicePerimeter(ctx, "service-perimeter", &accesscontextmanager.ServicePerimeterArgs{
    			Parent: access_policy.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("accessPolicies/%v", name), nil
    			}).(pulumi.StringOutput),
    			Name: access_policy.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("accessPolicies/%v/servicePerimeters/restrict_storage", name), nil
    			}).(pulumi.StringOutput),
    			Title: pulumi.String("restrict_storage"),
    			Status: &accesscontextmanager.ServicePerimeterStatusArgs{
    				RestrictedServices: pulumi.StringArray{
    					pulumi.String("storage.googleapis.com"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = accesscontextmanager.NewAccessLevel(ctx, "access-level", &accesscontextmanager.AccessLevelArgs{
    			Parent: access_policy.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("accessPolicies/%v", name), nil
    			}).(pulumi.StringOutput),
    			Name: access_policy.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("accessPolicies/%v/accessLevels/chromeos_no_lock", name), nil
    			}).(pulumi.StringOutput),
    			Title: pulumi.String("chromeos_no_lock"),
    			Basic: &accesscontextmanager.AccessLevelBasicArgs{
    				Conditions: accesscontextmanager.AccessLevelBasicConditionArray{
    					&accesscontextmanager.AccessLevelBasicConditionArgs{
    						DevicePolicy: &accesscontextmanager.AccessLevelBasicConditionDevicePolicyArgs{
    							RequireScreenLock: pulumi.Bool(false),
    							OsConstraints: accesscontextmanager.AccessLevelBasicConditionDevicePolicyOsConstraintArray{
    								&accesscontextmanager.AccessLevelBasicConditionDevicePolicyOsConstraintArgs{
    									OsType: pulumi.String("DESKTOP_CHROME_OS"),
    								},
    							},
    						},
    						Regions: pulumi.StringArray{
    							pulumi.String("CH"),
    							pulumi.String("IT"),
    							pulumi.String("US"),
    						},
    					},
    				},
    			},
    		})
    		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 access_policy = new Gcp.AccessContextManager.AccessPolicy("access-policy", new()
        {
            Parent = "organizations/123456789",
            Title = "my policy",
        });
    
        var service_perimeter = new Gcp.AccessContextManager.ServicePerimeter("service-perimeter", new()
        {
            Parent = access_policy.Name.Apply(name => $"accessPolicies/{name}"),
            Name = access_policy.Name.Apply(name => $"accessPolicies/{name}/servicePerimeters/restrict_storage"),
            Title = "restrict_storage",
            Status = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusArgs
            {
                RestrictedServices = new[]
                {
                    "storage.googleapis.com",
                },
            },
        });
    
        var access_level = new Gcp.AccessContextManager.AccessLevel("access-level", new()
        {
            Parent = access_policy.Name.Apply(name => $"accessPolicies/{name}"),
            Name = access_policy.Name.Apply(name => $"accessPolicies/{name}/accessLevels/chromeos_no_lock"),
            Title = "chromeos_no_lock",
            Basic = new Gcp.AccessContextManager.Inputs.AccessLevelBasicArgs
            {
                Conditions = new[]
                {
                    new Gcp.AccessContextManager.Inputs.AccessLevelBasicConditionArgs
                    {
                        DevicePolicy = new Gcp.AccessContextManager.Inputs.AccessLevelBasicConditionDevicePolicyArgs
                        {
                            RequireScreenLock = false,
                            OsConstraints = new[]
                            {
                                new Gcp.AccessContextManager.Inputs.AccessLevelBasicConditionDevicePolicyOsConstraintArgs
                                {
                                    OsType = "DESKTOP_CHROME_OS",
                                },
                            },
                        },
                        Regions = new[]
                        {
                            "CH",
                            "IT",
                            "US",
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.accesscontextmanager.AccessPolicy;
    import com.pulumi.gcp.accesscontextmanager.AccessPolicyArgs;
    import com.pulumi.gcp.accesscontextmanager.ServicePerimeter;
    import com.pulumi.gcp.accesscontextmanager.ServicePerimeterArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.ServicePerimeterStatusArgs;
    import com.pulumi.gcp.accesscontextmanager.AccessLevel;
    import com.pulumi.gcp.accesscontextmanager.AccessLevelArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.AccessLevelBasicArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 access_policy = new AccessPolicy("access-policy", AccessPolicyArgs.builder()        
                .parent("organizations/123456789")
                .title("my policy")
                .build());
    
            var service_perimeter = new ServicePerimeter("service-perimeter", ServicePerimeterArgs.builder()        
                .parent(access_policy.name().applyValue(name -> String.format("accessPolicies/%s", name)))
                .name(access_policy.name().applyValue(name -> String.format("accessPolicies/%s/servicePerimeters/restrict_storage", name)))
                .title("restrict_storage")
                .status(ServicePerimeterStatusArgs.builder()
                    .restrictedServices("storage.googleapis.com")
                    .build())
                .build());
    
            var access_level = new AccessLevel("access-level", AccessLevelArgs.builder()        
                .parent(access_policy.name().applyValue(name -> String.format("accessPolicies/%s", name)))
                .name(access_policy.name().applyValue(name -> String.format("accessPolicies/%s/accessLevels/chromeos_no_lock", name)))
                .title("chromeos_no_lock")
                .basic(AccessLevelBasicArgs.builder()
                    .conditions(AccessLevelBasicConditionArgs.builder()
                        .devicePolicy(AccessLevelBasicConditionDevicePolicyArgs.builder()
                            .requireScreenLock(false)
                            .osConstraints(AccessLevelBasicConditionDevicePolicyOsConstraintArgs.builder()
                                .osType("DESKTOP_CHROME_OS")
                                .build())
                            .build())
                        .regions(                    
                            "CH",
                            "IT",
                            "US")
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      service-perimeter:
        type: gcp:accesscontextmanager:ServicePerimeter
        properties:
          parent: accessPolicies/${["access-policy"].name}
          name: accessPolicies/${["access-policy"].name}/servicePerimeters/restrict_storage
          title: restrict_storage
          status:
            restrictedServices:
              - storage.googleapis.com
      access-level:
        type: gcp:accesscontextmanager:AccessLevel
        properties:
          parent: accessPolicies/${["access-policy"].name}
          name: accessPolicies/${["access-policy"].name}/accessLevels/chromeos_no_lock
          title: chromeos_no_lock
          basic:
            conditions:
              - devicePolicy:
                  requireScreenLock: false
                  osConstraints:
                    - osType: DESKTOP_CHROME_OS
                regions:
                  - CH
                  - IT
                  - US
      access-policy:
        type: gcp:accesscontextmanager:AccessPolicy
        properties:
          parent: organizations/123456789
          title: my policy
    

    Access Context Manager Service Perimeter Secure Data Exchange

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const access_policy = new gcp.accesscontextmanager.AccessPolicy("access-policy", {
        parent: "organizations/123456789",
        title: "my policy",
    });
    const secure_data_exchange = new gcp.accesscontextmanager.ServicePerimeters("secure-data-exchange", {
        parent: pulumi.interpolate`accessPolicies/${access_policy.name}`,
        servicePerimeters: [
            {
                name: pulumi.interpolate`accessPolicies/${access_policy.name}/servicePerimeters/`,
                title: "",
                status: {
                    restrictedServices: ["storage.googleapis.com"],
                },
            },
            {
                name: pulumi.interpolate`accessPolicies/${access_policy.name}/servicePerimeters/`,
                title: "",
                status: {
                    restrictedServices: ["bigtable.googleapis.com"],
                    vpcAccessibleServices: {
                        enableRestriction: true,
                        allowedServices: ["bigquery.googleapis.com"],
                    },
                },
            },
        ],
    });
    const access_level = new gcp.accesscontextmanager.AccessLevel("access-level", {
        parent: pulumi.interpolate`accessPolicies/${access_policy.name}`,
        name: pulumi.interpolate`accessPolicies/${access_policy.name}/accessLevels/secure_data_exchange`,
        title: "secure_data_exchange",
        basic: {
            conditions: [{
                devicePolicy: {
                    requireScreenLock: false,
                    osConstraints: [{
                        osType: "DESKTOP_CHROME_OS",
                    }],
                },
                regions: [
                    "CH",
                    "IT",
                    "US",
                ],
            }],
        },
    });
    const test_access = new gcp.accesscontextmanager.ServicePerimeter("test-access", {
        parent: `accessPolicies/${test_accessGoogleAccessContextManagerAccessPolicy.name}`,
        name: `accessPolicies/${test_accessGoogleAccessContextManagerAccessPolicy.name}/servicePerimeters/%s`,
        title: "%s",
        perimeterType: "PERIMETER_TYPE_REGULAR",
        status: {
            restrictedServices: [
                "bigquery.googleapis.com",
                "storage.googleapis.com",
            ],
            accessLevels: [access_level.name],
            vpcAccessibleServices: {
                enableRestriction: true,
                allowedServices: [
                    "bigquery.googleapis.com",
                    "storage.googleapis.com",
                ],
            },
            ingressPolicies: [{
                ingressFrom: {
                    sources: [{
                        accessLevel: test_accessGoogleAccessContextManagerAccessLevel.name,
                    }],
                    identityType: "ANY_IDENTITY",
                },
                ingressTo: {
                    resources: ["*"],
                    operations: [
                        {
                            serviceName: "bigquery.googleapis.com",
                            methodSelectors: [
                                {
                                    method: "BigQueryStorage.ReadRows",
                                },
                                {
                                    method: "TableService.ListTables",
                                },
                                {
                                    permission: "bigquery.jobs.get",
                                },
                            ],
                        },
                        {
                            serviceName: "storage.googleapis.com",
                            methodSelectors: [{
                                method: "google.storage.objects.create",
                            }],
                        },
                    ],
                },
            }],
            egressPolicies: [{
                egressFrom: {
                    identityType: "ANY_USER_ACCOUNT",
                },
            }],
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    access_policy = gcp.accesscontextmanager.AccessPolicy("access-policy",
        parent="organizations/123456789",
        title="my policy")
    secure_data_exchange = gcp.accesscontextmanager.ServicePerimeters("secure-data-exchange",
        parent=access_policy.name.apply(lambda name: f"accessPolicies/{name}"),
        service_perimeters=[
            gcp.accesscontextmanager.ServicePerimetersServicePerimeterArgs(
                name=access_policy.name.apply(lambda name: f"accessPolicies/{name}/servicePerimeters/"),
                title="",
                status=gcp.accesscontextmanager.ServicePerimetersServicePerimeterStatusArgs(
                    restricted_services=["storage.googleapis.com"],
                ),
            ),
            gcp.accesscontextmanager.ServicePerimetersServicePerimeterArgs(
                name=access_policy.name.apply(lambda name: f"accessPolicies/{name}/servicePerimeters/"),
                title="",
                status=gcp.accesscontextmanager.ServicePerimetersServicePerimeterStatusArgs(
                    restricted_services=["bigtable.googleapis.com"],
                    vpc_accessible_services=gcp.accesscontextmanager.ServicePerimetersServicePerimeterStatusVpcAccessibleServicesArgs(
                        enable_restriction=True,
                        allowed_services=["bigquery.googleapis.com"],
                    ),
                ),
            ),
        ])
    access_level = gcp.accesscontextmanager.AccessLevel("access-level",
        parent=access_policy.name.apply(lambda name: f"accessPolicies/{name}"),
        name=access_policy.name.apply(lambda name: f"accessPolicies/{name}/accessLevels/secure_data_exchange"),
        title="secure_data_exchange",
        basic=gcp.accesscontextmanager.AccessLevelBasicArgs(
            conditions=[gcp.accesscontextmanager.AccessLevelBasicConditionArgs(
                device_policy=gcp.accesscontextmanager.AccessLevelBasicConditionDevicePolicyArgs(
                    require_screen_lock=False,
                    os_constraints=[gcp.accesscontextmanager.AccessLevelBasicConditionDevicePolicyOsConstraintArgs(
                        os_type="DESKTOP_CHROME_OS",
                    )],
                ),
                regions=[
                    "CH",
                    "IT",
                    "US",
                ],
            )],
        ))
    test_access = gcp.accesscontextmanager.ServicePerimeter("test-access",
        parent=f"accessPolicies/{test_access_google_access_context_manager_access_policy['name']}",
        name=f"accessPolicies/{test_access_google_access_context_manager_access_policy['name']}/servicePerimeters/%s",
        title="%s",
        perimeter_type="PERIMETER_TYPE_REGULAR",
        status=gcp.accesscontextmanager.ServicePerimeterStatusArgs(
            restricted_services=[
                "bigquery.googleapis.com",
                "storage.googleapis.com",
            ],
            access_levels=[access_level.name],
            vpc_accessible_services=gcp.accesscontextmanager.ServicePerimeterStatusVpcAccessibleServicesArgs(
                enable_restriction=True,
                allowed_services=[
                    "bigquery.googleapis.com",
                    "storage.googleapis.com",
                ],
            ),
            ingress_policies=[gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyArgs(
                ingress_from=gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromArgs(
                    sources=[gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromSourceArgs(
                        access_level=test_access_google_access_context_manager_access_level["name"],
                    )],
                    identity_type="ANY_IDENTITY",
                ),
                ingress_to=gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToArgs(
                    resources=["*"],
                    operations=[
                        gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationArgs(
                            service_name="bigquery.googleapis.com",
                            method_selectors=[
                                gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs(
                                    method="BigQueryStorage.ReadRows",
                                ),
                                gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs(
                                    method="TableService.ListTables",
                                ),
                                gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs(
                                    permission="bigquery.jobs.get",
                                ),
                            ],
                        ),
                        gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationArgs(
                            service_name="storage.googleapis.com",
                            method_selectors=[gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs(
                                method="google.storage.objects.create",
                            )],
                        ),
                    ],
                ),
            )],
            egress_policies=[gcp.accesscontextmanager.ServicePerimeterStatusEgressPolicyArgs(
                egress_from=gcp.accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressFromArgs(
                    identity_type="ANY_USER_ACCOUNT",
                ),
            )],
        ))
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/accesscontextmanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := accesscontextmanager.NewAccessPolicy(ctx, "access-policy", &accesscontextmanager.AccessPolicyArgs{
    			Parent: pulumi.String("organizations/123456789"),
    			Title:  pulumi.String("my policy"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = accesscontextmanager.NewServicePerimeters(ctx, "secure-data-exchange", &accesscontextmanager.ServicePerimetersArgs{
    			Parent: access_policy.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("accessPolicies/%v", name), nil
    			}).(pulumi.StringOutput),
    			ServicePerimeters: accesscontextmanager.ServicePerimetersServicePerimeterArray{
    				&accesscontextmanager.ServicePerimetersServicePerimeterArgs{
    					Name: access_policy.Name.ApplyT(func(name string) (string, error) {
    						return fmt.Sprintf("accessPolicies/%v/servicePerimeters/", name), nil
    					}).(pulumi.StringOutput),
    					Title: pulumi.String(""),
    					Status: &accesscontextmanager.ServicePerimetersServicePerimeterStatusArgs{
    						RestrictedServices: pulumi.StringArray{
    							pulumi.String("storage.googleapis.com"),
    						},
    					},
    				},
    				&accesscontextmanager.ServicePerimetersServicePerimeterArgs{
    					Name: access_policy.Name.ApplyT(func(name string) (string, error) {
    						return fmt.Sprintf("accessPolicies/%v/servicePerimeters/", name), nil
    					}).(pulumi.StringOutput),
    					Title: pulumi.String(""),
    					Status: &accesscontextmanager.ServicePerimetersServicePerimeterStatusArgs{
    						RestrictedServices: pulumi.StringArray{
    							pulumi.String("bigtable.googleapis.com"),
    						},
    						VpcAccessibleServices: &accesscontextmanager.ServicePerimetersServicePerimeterStatusVpcAccessibleServicesArgs{
    							EnableRestriction: pulumi.Bool(true),
    							AllowedServices: pulumi.StringArray{
    								pulumi.String("bigquery.googleapis.com"),
    							},
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = accesscontextmanager.NewAccessLevel(ctx, "access-level", &accesscontextmanager.AccessLevelArgs{
    			Parent: access_policy.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("accessPolicies/%v", name), nil
    			}).(pulumi.StringOutput),
    			Name: access_policy.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("accessPolicies/%v/accessLevels/secure_data_exchange", name), nil
    			}).(pulumi.StringOutput),
    			Title: pulumi.String("secure_data_exchange"),
    			Basic: &accesscontextmanager.AccessLevelBasicArgs{
    				Conditions: accesscontextmanager.AccessLevelBasicConditionArray{
    					&accesscontextmanager.AccessLevelBasicConditionArgs{
    						DevicePolicy: &accesscontextmanager.AccessLevelBasicConditionDevicePolicyArgs{
    							RequireScreenLock: pulumi.Bool(false),
    							OsConstraints: accesscontextmanager.AccessLevelBasicConditionDevicePolicyOsConstraintArray{
    								&accesscontextmanager.AccessLevelBasicConditionDevicePolicyOsConstraintArgs{
    									OsType: pulumi.String("DESKTOP_CHROME_OS"),
    								},
    							},
    						},
    						Regions: pulumi.StringArray{
    							pulumi.String("CH"),
    							pulumi.String("IT"),
    							pulumi.String("US"),
    						},
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = accesscontextmanager.NewServicePerimeter(ctx, "test-access", &accesscontextmanager.ServicePerimeterArgs{
    			Parent:        pulumi.String(fmt.Sprintf("accessPolicies/%v", test_accessGoogleAccessContextManagerAccessPolicy.Name)),
    			Name:          pulumi.String(fmt.Sprintf("accessPolicies/%v%v", test_accessGoogleAccessContextManagerAccessPolicy.Name, "/servicePerimeters/%s")),
    			Title:         pulumi.String("%s"),
    			PerimeterType: pulumi.String("PERIMETER_TYPE_REGULAR"),
    			Status: &accesscontextmanager.ServicePerimeterStatusArgs{
    				RestrictedServices: pulumi.StringArray{
    					pulumi.String("bigquery.googleapis.com"),
    					pulumi.String("storage.googleapis.com"),
    				},
    				AccessLevels: pulumi.StringArray{
    					access_level.Name,
    				},
    				VpcAccessibleServices: &accesscontextmanager.ServicePerimeterStatusVpcAccessibleServicesArgs{
    					EnableRestriction: pulumi.Bool(true),
    					AllowedServices: pulumi.StringArray{
    						pulumi.String("bigquery.googleapis.com"),
    						pulumi.String("storage.googleapis.com"),
    					},
    				},
    				IngressPolicies: accesscontextmanager.ServicePerimeterStatusIngressPolicyArray{
    					&accesscontextmanager.ServicePerimeterStatusIngressPolicyArgs{
    						IngressFrom: &accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromArgs{
    							Sources: accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromSourceArray{
    								&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromSourceArgs{
    									AccessLevel: pulumi.Any(test_accessGoogleAccessContextManagerAccessLevel.Name),
    								},
    							},
    							IdentityType: pulumi.String("ANY_IDENTITY"),
    						},
    						IngressTo: &accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToArgs{
    							Resources: pulumi.StringArray{
    								pulumi.String("*"),
    							},
    							Operations: accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationArray{
    								&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationArgs{
    									ServiceName: pulumi.String("bigquery.googleapis.com"),
    									MethodSelectors: accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArray{
    										&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs{
    											Method: pulumi.String("BigQueryStorage.ReadRows"),
    										},
    										&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs{
    											Method: pulumi.String("TableService.ListTables"),
    										},
    										&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs{
    											Permission: pulumi.String("bigquery.jobs.get"),
    										},
    									},
    								},
    								&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationArgs{
    									ServiceName: pulumi.String("storage.googleapis.com"),
    									MethodSelectors: accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArray{
    										&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs{
    											Method: pulumi.String("google.storage.objects.create"),
    										},
    									},
    								},
    							},
    						},
    					},
    				},
    				EgressPolicies: accesscontextmanager.ServicePerimeterStatusEgressPolicyArray{
    					&accesscontextmanager.ServicePerimeterStatusEgressPolicyArgs{
    						EgressFrom: &accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressFromArgs{
    							IdentityType: pulumi.String("ANY_USER_ACCOUNT"),
    						},
    					},
    				},
    			},
    		})
    		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 access_policy = new Gcp.AccessContextManager.AccessPolicy("access-policy", new()
        {
            Parent = "organizations/123456789",
            Title = "my policy",
        });
    
        var secure_data_exchange = new Gcp.AccessContextManager.ServicePerimeters("secure-data-exchange", new()
        {
            Parent = access_policy.Name.Apply(name => $"accessPolicies/{name}"),
            ServicePerimeterDetails = new[]
            {
                new Gcp.AccessContextManager.Inputs.ServicePerimetersServicePerimeterArgs
                {
                    Name = access_policy.Name.Apply(name => $"accessPolicies/{name}/servicePerimeters/"),
                    Title = "",
                    Status = new Gcp.AccessContextManager.Inputs.ServicePerimetersServicePerimeterStatusArgs
                    {
                        RestrictedServices = new[]
                        {
                            "storage.googleapis.com",
                        },
                    },
                },
                new Gcp.AccessContextManager.Inputs.ServicePerimetersServicePerimeterArgs
                {
                    Name = access_policy.Name.Apply(name => $"accessPolicies/{name}/servicePerimeters/"),
                    Title = "",
                    Status = new Gcp.AccessContextManager.Inputs.ServicePerimetersServicePerimeterStatusArgs
                    {
                        RestrictedServices = new[]
                        {
                            "bigtable.googleapis.com",
                        },
                        VpcAccessibleServices = new Gcp.AccessContextManager.Inputs.ServicePerimetersServicePerimeterStatusVpcAccessibleServicesArgs
                        {
                            EnableRestriction = true,
                            AllowedServices = new[]
                            {
                                "bigquery.googleapis.com",
                            },
                        },
                    },
                },
            },
        });
    
        var access_level = new Gcp.AccessContextManager.AccessLevel("access-level", new()
        {
            Parent = access_policy.Name.Apply(name => $"accessPolicies/{name}"),
            Name = access_policy.Name.Apply(name => $"accessPolicies/{name}/accessLevels/secure_data_exchange"),
            Title = "secure_data_exchange",
            Basic = new Gcp.AccessContextManager.Inputs.AccessLevelBasicArgs
            {
                Conditions = new[]
                {
                    new Gcp.AccessContextManager.Inputs.AccessLevelBasicConditionArgs
                    {
                        DevicePolicy = new Gcp.AccessContextManager.Inputs.AccessLevelBasicConditionDevicePolicyArgs
                        {
                            RequireScreenLock = false,
                            OsConstraints = new[]
                            {
                                new Gcp.AccessContextManager.Inputs.AccessLevelBasicConditionDevicePolicyOsConstraintArgs
                                {
                                    OsType = "DESKTOP_CHROME_OS",
                                },
                            },
                        },
                        Regions = new[]
                        {
                            "CH",
                            "IT",
                            "US",
                        },
                    },
                },
            },
        });
    
        var test_access = new Gcp.AccessContextManager.ServicePerimeter("test-access", new()
        {
            Parent = $"accessPolicies/{test_accessGoogleAccessContextManagerAccessPolicy.Name}",
            Name = $"accessPolicies/{test_accessGoogleAccessContextManagerAccessPolicy.Name}/servicePerimeters/%s",
            Title = "%s",
            PerimeterType = "PERIMETER_TYPE_REGULAR",
            Status = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusArgs
            {
                RestrictedServices = new[]
                {
                    "bigquery.googleapis.com",
                    "storage.googleapis.com",
                },
                AccessLevels = new[]
                {
                    access_level.Name,
                },
                VpcAccessibleServices = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusVpcAccessibleServicesArgs
                {
                    EnableRestriction = true,
                    AllowedServices = new[]
                    {
                        "bigquery.googleapis.com",
                        "storage.googleapis.com",
                    },
                },
                IngressPolicies = new[]
                {
                    new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyArgs
                    {
                        IngressFrom = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressFromArgs
                        {
                            Sources = new[]
                            {
                                new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressFromSourceArgs
                                {
                                    AccessLevel = test_accessGoogleAccessContextManagerAccessLevel.Name,
                                },
                            },
                            IdentityType = "ANY_IDENTITY",
                        },
                        IngressTo = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToArgs
                        {
                            Resources = new[]
                            {
                                "*",
                            },
                            Operations = new[]
                            {
                                new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToOperationArgs
                                {
                                    ServiceName = "bigquery.googleapis.com",
                                    MethodSelectors = new[]
                                    {
                                        new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs
                                        {
                                            Method = "BigQueryStorage.ReadRows",
                                        },
                                        new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs
                                        {
                                            Method = "TableService.ListTables",
                                        },
                                        new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs
                                        {
                                            Permission = "bigquery.jobs.get",
                                        },
                                    },
                                },
                                new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToOperationArgs
                                {
                                    ServiceName = "storage.googleapis.com",
                                    MethodSelectors = new[]
                                    {
                                        new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs
                                        {
                                            Method = "google.storage.objects.create",
                                        },
                                    },
                                },
                            },
                        },
                    },
                },
                EgressPolicies = new[]
                {
                    new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusEgressPolicyArgs
                    {
                        EgressFrom = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusEgressPolicyEgressFromArgs
                        {
                            IdentityType = "ANY_USER_ACCOUNT",
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.accesscontextmanager.AccessPolicy;
    import com.pulumi.gcp.accesscontextmanager.AccessPolicyArgs;
    import com.pulumi.gcp.accesscontextmanager.ServicePerimeters;
    import com.pulumi.gcp.accesscontextmanager.ServicePerimetersArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.ServicePerimetersServicePerimeterArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.ServicePerimetersServicePerimeterStatusArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.ServicePerimetersServicePerimeterStatusVpcAccessibleServicesArgs;
    import com.pulumi.gcp.accesscontextmanager.AccessLevel;
    import com.pulumi.gcp.accesscontextmanager.AccessLevelArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.AccessLevelBasicArgs;
    import com.pulumi.gcp.accesscontextmanager.ServicePerimeter;
    import com.pulumi.gcp.accesscontextmanager.ServicePerimeterArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.ServicePerimeterStatusArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.ServicePerimeterStatusVpcAccessibleServicesArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 access_policy = new AccessPolicy("access-policy", AccessPolicyArgs.builder()        
                .parent("organizations/123456789")
                .title("my policy")
                .build());
    
            var secure_data_exchange = new ServicePerimeters("secure-data-exchange", ServicePerimetersArgs.builder()        
                .parent(access_policy.name().applyValue(name -> String.format("accessPolicies/%s", name)))
                .servicePerimeters(            
                    ServicePerimetersServicePerimeterArgs.builder()
                        .name(access_policy.name().applyValue(name -> String.format("accessPolicies/%s/servicePerimeters/", name)))
                        .title("")
                        .status(ServicePerimetersServicePerimeterStatusArgs.builder()
                            .restrictedServices("storage.googleapis.com")
                            .build())
                        .build(),
                    ServicePerimetersServicePerimeterArgs.builder()
                        .name(access_policy.name().applyValue(name -> String.format("accessPolicies/%s/servicePerimeters/", name)))
                        .title("")
                        .status(ServicePerimetersServicePerimeterStatusArgs.builder()
                            .restrictedServices("bigtable.googleapis.com")
                            .vpcAccessibleServices(ServicePerimetersServicePerimeterStatusVpcAccessibleServicesArgs.builder()
                                .enableRestriction(true)
                                .allowedServices("bigquery.googleapis.com")
                                .build())
                            .build())
                        .build())
                .build());
    
            var access_level = new AccessLevel("access-level", AccessLevelArgs.builder()        
                .parent(access_policy.name().applyValue(name -> String.format("accessPolicies/%s", name)))
                .name(access_policy.name().applyValue(name -> String.format("accessPolicies/%s/accessLevels/secure_data_exchange", name)))
                .title("secure_data_exchange")
                .basic(AccessLevelBasicArgs.builder()
                    .conditions(AccessLevelBasicConditionArgs.builder()
                        .devicePolicy(AccessLevelBasicConditionDevicePolicyArgs.builder()
                            .requireScreenLock(false)
                            .osConstraints(AccessLevelBasicConditionDevicePolicyOsConstraintArgs.builder()
                                .osType("DESKTOP_CHROME_OS")
                                .build())
                            .build())
                        .regions(                    
                            "CH",
                            "IT",
                            "US")
                        .build())
                    .build())
                .build());
    
            var test_access = new ServicePerimeter("test-access", ServicePerimeterArgs.builder()        
                .parent(String.format("accessPolicies/%s", test_accessGoogleAccessContextManagerAccessPolicy.name()))
                .name(String.format("accessPolicies/%s/servicePerimeters/%s", test_accessGoogleAccessContextManagerAccessPolicy.name()))
                .title("%s")
                .perimeterType("PERIMETER_TYPE_REGULAR")
                .status(ServicePerimeterStatusArgs.builder()
                    .restrictedServices(                
                        "bigquery.googleapis.com",
                        "storage.googleapis.com")
                    .accessLevels(access_level.name())
                    .vpcAccessibleServices(ServicePerimeterStatusVpcAccessibleServicesArgs.builder()
                        .enableRestriction(true)
                        .allowedServices(                    
                            "bigquery.googleapis.com",
                            "storage.googleapis.com")
                        .build())
                    .ingressPolicies(ServicePerimeterStatusIngressPolicyArgs.builder()
                        .ingressFrom(ServicePerimeterStatusIngressPolicyIngressFromArgs.builder()
                            .sources(ServicePerimeterStatusIngressPolicyIngressFromSourceArgs.builder()
                                .accessLevel(test_accessGoogleAccessContextManagerAccessLevel.name())
                                .build())
                            .identityType("ANY_IDENTITY")
                            .build())
                        .ingressTo(ServicePerimeterStatusIngressPolicyIngressToArgs.builder()
                            .resources("*")
                            .operations(                        
                                ServicePerimeterStatusIngressPolicyIngressToOperationArgs.builder()
                                    .serviceName("bigquery.googleapis.com")
                                    .methodSelectors(                                
                                        ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs.builder()
                                            .method("BigQueryStorage.ReadRows")
                                            .build(),
                                        ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs.builder()
                                            .method("TableService.ListTables")
                                            .build(),
                                        ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs.builder()
                                            .permission("bigquery.jobs.get")
                                            .build())
                                    .build(),
                                ServicePerimeterStatusIngressPolicyIngressToOperationArgs.builder()
                                    .serviceName("storage.googleapis.com")
                                    .methodSelectors(ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs.builder()
                                        .method("google.storage.objects.create")
                                        .build())
                                    .build())
                            .build())
                        .build())
                    .egressPolicies(ServicePerimeterStatusEgressPolicyArgs.builder()
                        .egressFrom(ServicePerimeterStatusEgressPolicyEgressFromArgs.builder()
                            .identityType("ANY_USER_ACCOUNT")
                            .build())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      secure-data-exchange:
        type: gcp:accesscontextmanager:ServicePerimeters
        properties:
          parent: accessPolicies/${["access-policy"].name}
          servicePerimeters:
            - name: accessPolicies/${["access-policy"].name}/servicePerimeters/
              title:
              status:
                restrictedServices:
                  - storage.googleapis.com
            - name: accessPolicies/${["access-policy"].name}/servicePerimeters/
              title:
              status:
                restrictedServices:
                  - bigtable.googleapis.com
                vpcAccessibleServices:
                  enableRestriction: true
                  allowedServices:
                    - bigquery.googleapis.com
      access-level:
        type: gcp:accesscontextmanager:AccessLevel
        properties:
          parent: accessPolicies/${["access-policy"].name}
          name: accessPolicies/${["access-policy"].name}/accessLevels/secure_data_exchange
          title: secure_data_exchange
          basic:
            conditions:
              - devicePolicy:
                  requireScreenLock: false
                  osConstraints:
                    - osType: DESKTOP_CHROME_OS
                regions:
                  - CH
                  - IT
                  - US
      access-policy:
        type: gcp:accesscontextmanager:AccessPolicy
        properties:
          parent: organizations/123456789
          title: my policy
      test-access:
        type: gcp:accesscontextmanager:ServicePerimeter
        properties:
          parent: accessPolicies/${["test-accessGoogleAccessContextManagerAccessPolicy"].name}
          name: accessPolicies/${["test-accessGoogleAccessContextManagerAccessPolicy"].name}/servicePerimeters/%s
          title: '%s'
          perimeterType: PERIMETER_TYPE_REGULAR
          status:
            restrictedServices:
              - bigquery.googleapis.com
              - storage.googleapis.com
            accessLevels:
              - ${["access-level"].name}
            vpcAccessibleServices:
              enableRestriction: true
              allowedServices:
                - bigquery.googleapis.com
                - storage.googleapis.com
            ingressPolicies:
              - ingressFrom:
                  sources:
                    - accessLevel: ${["test-accessGoogleAccessContextManagerAccessLevel"].name}
                  identityType: ANY_IDENTITY
                ingressTo:
                  resources:
                    - '*'
                  operations:
                    - serviceName: bigquery.googleapis.com
                      methodSelectors:
                        - method: BigQueryStorage.ReadRows
                        - method: TableService.ListTables
                        - permission: bigquery.jobs.get
                    - serviceName: storage.googleapis.com
                      methodSelectors:
                        - method: google.storage.objects.create
            egressPolicies:
              - egressFrom:
                  identityType: ANY_USER_ACCOUNT
    

    Access Context Manager Service Perimeter Dry-Run

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const access_policy = new gcp.accesscontextmanager.AccessPolicy("access-policy", {
        parent: "organizations/123456789",
        title: "my policy",
    });
    const service_perimeter = new gcp.accesscontextmanager.ServicePerimeter("service-perimeter", {
        parent: pulumi.interpolate`accessPolicies/${access_policy.name}`,
        name: pulumi.interpolate`accessPolicies/${access_policy.name}/servicePerimeters/restrict_bigquery_dryrun_storage`,
        title: "restrict_bigquery_dryrun_storage",
        status: {
            restrictedServices: ["bigquery.googleapis.com"],
        },
        spec: {
            restrictedServices: ["storage.googleapis.com"],
        },
        useExplicitDryRunSpec: true,
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    access_policy = gcp.accesscontextmanager.AccessPolicy("access-policy",
        parent="organizations/123456789",
        title="my policy")
    service_perimeter = gcp.accesscontextmanager.ServicePerimeter("service-perimeter",
        parent=access_policy.name.apply(lambda name: f"accessPolicies/{name}"),
        name=access_policy.name.apply(lambda name: f"accessPolicies/{name}/servicePerimeters/restrict_bigquery_dryrun_storage"),
        title="restrict_bigquery_dryrun_storage",
        status=gcp.accesscontextmanager.ServicePerimeterStatusArgs(
            restricted_services=["bigquery.googleapis.com"],
        ),
        spec=gcp.accesscontextmanager.ServicePerimeterSpecArgs(
            restricted_services=["storage.googleapis.com"],
        ),
        use_explicit_dry_run_spec=True)
    
    package main
    
    import (
    	"fmt"
    
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/accesscontextmanager"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := accesscontextmanager.NewAccessPolicy(ctx, "access-policy", &accesscontextmanager.AccessPolicyArgs{
    			Parent: pulumi.String("organizations/123456789"),
    			Title:  pulumi.String("my policy"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = accesscontextmanager.NewServicePerimeter(ctx, "service-perimeter", &accesscontextmanager.ServicePerimeterArgs{
    			Parent: access_policy.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("accessPolicies/%v", name), nil
    			}).(pulumi.StringOutput),
    			Name: access_policy.Name.ApplyT(func(name string) (string, error) {
    				return fmt.Sprintf("accessPolicies/%v/servicePerimeters/restrict_bigquery_dryrun_storage", name), nil
    			}).(pulumi.StringOutput),
    			Title: pulumi.String("restrict_bigquery_dryrun_storage"),
    			Status: &accesscontextmanager.ServicePerimeterStatusArgs{
    				RestrictedServices: pulumi.StringArray{
    					pulumi.String("bigquery.googleapis.com"),
    				},
    			},
    			Spec: &accesscontextmanager.ServicePerimeterSpecArgs{
    				RestrictedServices: pulumi.StringArray{
    					pulumi.String("storage.googleapis.com"),
    				},
    			},
    			UseExplicitDryRunSpec: pulumi.Bool(true),
    		})
    		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 access_policy = new Gcp.AccessContextManager.AccessPolicy("access-policy", new()
        {
            Parent = "organizations/123456789",
            Title = "my policy",
        });
    
        var service_perimeter = new Gcp.AccessContextManager.ServicePerimeter("service-perimeter", new()
        {
            Parent = access_policy.Name.Apply(name => $"accessPolicies/{name}"),
            Name = access_policy.Name.Apply(name => $"accessPolicies/{name}/servicePerimeters/restrict_bigquery_dryrun_storage"),
            Title = "restrict_bigquery_dryrun_storage",
            Status = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusArgs
            {
                RestrictedServices = new[]
                {
                    "bigquery.googleapis.com",
                },
            },
            Spec = new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecArgs
            {
                RestrictedServices = new[]
                {
                    "storage.googleapis.com",
                },
            },
            UseExplicitDryRunSpec = true,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.accesscontextmanager.AccessPolicy;
    import com.pulumi.gcp.accesscontextmanager.AccessPolicyArgs;
    import com.pulumi.gcp.accesscontextmanager.ServicePerimeter;
    import com.pulumi.gcp.accesscontextmanager.ServicePerimeterArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.ServicePerimeterStatusArgs;
    import com.pulumi.gcp.accesscontextmanager.inputs.ServicePerimeterSpecArgs;
    import java.util.List;
    import java.util.ArrayList;
    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 access_policy = new AccessPolicy("access-policy", AccessPolicyArgs.builder()        
                .parent("organizations/123456789")
                .title("my policy")
                .build());
    
            var service_perimeter = new ServicePerimeter("service-perimeter", ServicePerimeterArgs.builder()        
                .parent(access_policy.name().applyValue(name -> String.format("accessPolicies/%s", name)))
                .name(access_policy.name().applyValue(name -> String.format("accessPolicies/%s/servicePerimeters/restrict_bigquery_dryrun_storage", name)))
                .title("restrict_bigquery_dryrun_storage")
                .status(ServicePerimeterStatusArgs.builder()
                    .restrictedServices("bigquery.googleapis.com")
                    .build())
                .spec(ServicePerimeterSpecArgs.builder()
                    .restrictedServices("storage.googleapis.com")
                    .build())
                .useExplicitDryRunSpec(true)
                .build());
    
        }
    }
    
    resources:
      service-perimeter:
        type: gcp:accesscontextmanager:ServicePerimeter
        properties:
          parent: accessPolicies/${["access-policy"].name}
          name: accessPolicies/${["access-policy"].name}/servicePerimeters/restrict_bigquery_dryrun_storage
          title: restrict_bigquery_dryrun_storage
          status:
            restrictedServices:
              - bigquery.googleapis.com
          spec:
            restrictedServices:
              - storage.googleapis.com
          useExplicitDryRunSpec: true
      access-policy:
        type: gcp:accesscontextmanager:AccessPolicy
        properties:
          parent: organizations/123456789
          title: my policy
    

    Import

    ServicePerimeter can be imported using any of these accepted formats:

    • {{name}}

    When using the pulumi import command, ServicePerimeter can be imported using one of the formats above. For example:

    $ pulumi import gcp:accesscontextmanager/servicePerimeter:ServicePerimeter default {{name}}
    

    Create ServicePerimeter Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServicePerimeter(name: string, args: ServicePerimeterArgs, opts?: CustomResourceOptions);
    @overload
    def ServicePerimeter(resource_name: str,
                         args: ServicePerimeterArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServicePerimeter(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         parent: Optional[str] = None,
                         title: Optional[str] = None,
                         description: Optional[str] = None,
                         name: Optional[str] = None,
                         perimeter_type: Optional[str] = None,
                         spec: Optional[ServicePerimeterSpecArgs] = None,
                         status: Optional[ServicePerimeterStatusArgs] = None,
                         use_explicit_dry_run_spec: Optional[bool] = None)
    func NewServicePerimeter(ctx *Context, name string, args ServicePerimeterArgs, opts ...ResourceOption) (*ServicePerimeter, error)
    public ServicePerimeter(string name, ServicePerimeterArgs args, CustomResourceOptions? opts = null)
    public ServicePerimeter(String name, ServicePerimeterArgs args)
    public ServicePerimeter(String name, ServicePerimeterArgs args, CustomResourceOptions options)
    
    type: gcp:accesscontextmanager:ServicePerimeter
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ServicePerimeterArgs
    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 ServicePerimeterArgs
    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 ServicePerimeterArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServicePerimeterArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServicePerimeterArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var servicePerimeterResource = new Gcp.AccessContextManager.ServicePerimeter("servicePerimeterResource", new()
    {
        Parent = "string",
        Title = "string",
        Description = "string",
        Name = "string",
        PerimeterType = "string",
        Spec = new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecArgs
        {
            AccessLevels = new[]
            {
                "string",
            },
            EgressPolicies = new[]
            {
                new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecEgressPolicyArgs
                {
                    EgressFrom = new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecEgressPolicyEgressFromArgs
                    {
                        Identities = new[]
                        {
                            "string",
                        },
                        IdentityType = "string",
                        SourceRestriction = "string",
                        Sources = new[]
                        {
                            new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecEgressPolicyEgressFromSourceArgs
                            {
                                AccessLevel = "string",
                            },
                        },
                    },
                    EgressTo = new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecEgressPolicyEgressToArgs
                    {
                        ExternalResources = new[]
                        {
                            "string",
                        },
                        Operations = new[]
                        {
                            new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecEgressPolicyEgressToOperationArgs
                            {
                                MethodSelectors = new[]
                                {
                                    new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelectorArgs
                                    {
                                        Method = "string",
                                        Permission = "string",
                                    },
                                },
                                ServiceName = "string",
                            },
                        },
                        Resources = new[]
                        {
                            "string",
                        },
                    },
                },
            },
            IngressPolicies = new[]
            {
                new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecIngressPolicyArgs
                {
                    IngressFrom = new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecIngressPolicyIngressFromArgs
                    {
                        Identities = new[]
                        {
                            "string",
                        },
                        IdentityType = "string",
                        Sources = new[]
                        {
                            new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecIngressPolicyIngressFromSourceArgs
                            {
                                AccessLevel = "string",
                                Resource = "string",
                            },
                        },
                    },
                    IngressTo = new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecIngressPolicyIngressToArgs
                    {
                        Operations = new[]
                        {
                            new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecIngressPolicyIngressToOperationArgs
                            {
                                MethodSelectors = new[]
                                {
                                    new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelectorArgs
                                    {
                                        Method = "string",
                                        Permission = "string",
                                    },
                                },
                                ServiceName = "string",
                            },
                        },
                        Resources = new[]
                        {
                            "string",
                        },
                    },
                },
            },
            Resources = new[]
            {
                "string",
            },
            RestrictedServices = new[]
            {
                "string",
            },
            VpcAccessibleServices = new Gcp.AccessContextManager.Inputs.ServicePerimeterSpecVpcAccessibleServicesArgs
            {
                AllowedServices = new[]
                {
                    "string",
                },
                EnableRestriction = false,
            },
        },
        Status = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusArgs
        {
            AccessLevels = new[]
            {
                "string",
            },
            EgressPolicies = new[]
            {
                new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusEgressPolicyArgs
                {
                    EgressFrom = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusEgressPolicyEgressFromArgs
                    {
                        Identities = new[]
                        {
                            "string",
                        },
                        IdentityType = "string",
                        SourceRestriction = "string",
                        Sources = new[]
                        {
                            new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusEgressPolicyEgressFromSourceArgs
                            {
                                AccessLevel = "string",
                            },
                        },
                    },
                    EgressTo = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusEgressPolicyEgressToArgs
                    {
                        ExternalResources = new[]
                        {
                            "string",
                        },
                        Operations = new[]
                        {
                            new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusEgressPolicyEgressToOperationArgs
                            {
                                MethodSelectors = new[]
                                {
                                    new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelectorArgs
                                    {
                                        Method = "string",
                                        Permission = "string",
                                    },
                                },
                                ServiceName = "string",
                            },
                        },
                        Resources = new[]
                        {
                            "string",
                        },
                    },
                },
            },
            IngressPolicies = new[]
            {
                new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyArgs
                {
                    IngressFrom = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressFromArgs
                    {
                        Identities = new[]
                        {
                            "string",
                        },
                        IdentityType = "string",
                        Sources = new[]
                        {
                            new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressFromSourceArgs
                            {
                                AccessLevel = "string",
                                Resource = "string",
                            },
                        },
                    },
                    IngressTo = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToArgs
                    {
                        Operations = new[]
                        {
                            new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToOperationArgs
                            {
                                MethodSelectors = new[]
                                {
                                    new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs
                                    {
                                        Method = "string",
                                        Permission = "string",
                                    },
                                },
                                ServiceName = "string",
                            },
                        },
                        Resources = new[]
                        {
                            "string",
                        },
                    },
                },
            },
            Resources = new[]
            {
                "string",
            },
            RestrictedServices = new[]
            {
                "string",
            },
            VpcAccessibleServices = new Gcp.AccessContextManager.Inputs.ServicePerimeterStatusVpcAccessibleServicesArgs
            {
                AllowedServices = new[]
                {
                    "string",
                },
                EnableRestriction = false,
            },
        },
        UseExplicitDryRunSpec = false,
    });
    
    example, err := accesscontextmanager.NewServicePerimeter(ctx, "servicePerimeterResource", &accesscontextmanager.ServicePerimeterArgs{
    	Parent:        pulumi.String("string"),
    	Title:         pulumi.String("string"),
    	Description:   pulumi.String("string"),
    	Name:          pulumi.String("string"),
    	PerimeterType: pulumi.String("string"),
    	Spec: &accesscontextmanager.ServicePerimeterSpecArgs{
    		AccessLevels: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		EgressPolicies: accesscontextmanager.ServicePerimeterSpecEgressPolicyArray{
    			&accesscontextmanager.ServicePerimeterSpecEgressPolicyArgs{
    				EgressFrom: &accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressFromArgs{
    					Identities: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					IdentityType:      pulumi.String("string"),
    					SourceRestriction: pulumi.String("string"),
    					Sources: accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressFromSourceArray{
    						&accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressFromSourceArgs{
    							AccessLevel: pulumi.String("string"),
    						},
    					},
    				},
    				EgressTo: &accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressToArgs{
    					ExternalResources: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Operations: accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressToOperationArray{
    						&accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressToOperationArgs{
    							MethodSelectors: accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelectorArray{
    								&accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelectorArgs{
    									Method:     pulumi.String("string"),
    									Permission: pulumi.String("string"),
    								},
    							},
    							ServiceName: pulumi.String("string"),
    						},
    					},
    					Resources: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    		},
    		IngressPolicies: accesscontextmanager.ServicePerimeterSpecIngressPolicyArray{
    			&accesscontextmanager.ServicePerimeterSpecIngressPolicyArgs{
    				IngressFrom: &accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressFromArgs{
    					Identities: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					IdentityType: pulumi.String("string"),
    					Sources: accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressFromSourceArray{
    						&accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressFromSourceArgs{
    							AccessLevel: pulumi.String("string"),
    							Resource:    pulumi.String("string"),
    						},
    					},
    				},
    				IngressTo: &accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressToArgs{
    					Operations: accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressToOperationArray{
    						&accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressToOperationArgs{
    							MethodSelectors: accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelectorArray{
    								&accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelectorArgs{
    									Method:     pulumi.String("string"),
    									Permission: pulumi.String("string"),
    								},
    							},
    							ServiceName: pulumi.String("string"),
    						},
    					},
    					Resources: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    		},
    		Resources: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		RestrictedServices: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		VpcAccessibleServices: &accesscontextmanager.ServicePerimeterSpecVpcAccessibleServicesArgs{
    			AllowedServices: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			EnableRestriction: pulumi.Bool(false),
    		},
    	},
    	Status: &accesscontextmanager.ServicePerimeterStatusArgs{
    		AccessLevels: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		EgressPolicies: accesscontextmanager.ServicePerimeterStatusEgressPolicyArray{
    			&accesscontextmanager.ServicePerimeterStatusEgressPolicyArgs{
    				EgressFrom: &accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressFromArgs{
    					Identities: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					IdentityType:      pulumi.String("string"),
    					SourceRestriction: pulumi.String("string"),
    					Sources: accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressFromSourceArray{
    						&accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressFromSourceArgs{
    							AccessLevel: pulumi.String("string"),
    						},
    					},
    				},
    				EgressTo: &accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressToArgs{
    					ExternalResources: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Operations: accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressToOperationArray{
    						&accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressToOperationArgs{
    							MethodSelectors: accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelectorArray{
    								&accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelectorArgs{
    									Method:     pulumi.String("string"),
    									Permission: pulumi.String("string"),
    								},
    							},
    							ServiceName: pulumi.String("string"),
    						},
    					},
    					Resources: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    		},
    		IngressPolicies: accesscontextmanager.ServicePerimeterStatusIngressPolicyArray{
    			&accesscontextmanager.ServicePerimeterStatusIngressPolicyArgs{
    				IngressFrom: &accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromArgs{
    					Identities: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					IdentityType: pulumi.String("string"),
    					Sources: accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromSourceArray{
    						&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromSourceArgs{
    							AccessLevel: pulumi.String("string"),
    							Resource:    pulumi.String("string"),
    						},
    					},
    				},
    				IngressTo: &accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToArgs{
    					Operations: accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationArray{
    						&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationArgs{
    							MethodSelectors: accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArray{
    								&accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs{
    									Method:     pulumi.String("string"),
    									Permission: pulumi.String("string"),
    								},
    							},
    							ServiceName: pulumi.String("string"),
    						},
    					},
    					Resources: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    				},
    			},
    		},
    		Resources: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		RestrictedServices: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		VpcAccessibleServices: &accesscontextmanager.ServicePerimeterStatusVpcAccessibleServicesArgs{
    			AllowedServices: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			EnableRestriction: pulumi.Bool(false),
    		},
    	},
    	UseExplicitDryRunSpec: pulumi.Bool(false),
    })
    
    var servicePerimeterResource = new ServicePerimeter("servicePerimeterResource", ServicePerimeterArgs.builder()        
        .parent("string")
        .title("string")
        .description("string")
        .name("string")
        .perimeterType("string")
        .spec(ServicePerimeterSpecArgs.builder()
            .accessLevels("string")
            .egressPolicies(ServicePerimeterSpecEgressPolicyArgs.builder()
                .egressFrom(ServicePerimeterSpecEgressPolicyEgressFromArgs.builder()
                    .identities("string")
                    .identityType("string")
                    .sourceRestriction("string")
                    .sources(ServicePerimeterSpecEgressPolicyEgressFromSourceArgs.builder()
                        .accessLevel("string")
                        .build())
                    .build())
                .egressTo(ServicePerimeterSpecEgressPolicyEgressToArgs.builder()
                    .externalResources("string")
                    .operations(ServicePerimeterSpecEgressPolicyEgressToOperationArgs.builder()
                        .methodSelectors(ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelectorArgs.builder()
                            .method("string")
                            .permission("string")
                            .build())
                        .serviceName("string")
                        .build())
                    .resources("string")
                    .build())
                .build())
            .ingressPolicies(ServicePerimeterSpecIngressPolicyArgs.builder()
                .ingressFrom(ServicePerimeterSpecIngressPolicyIngressFromArgs.builder()
                    .identities("string")
                    .identityType("string")
                    .sources(ServicePerimeterSpecIngressPolicyIngressFromSourceArgs.builder()
                        .accessLevel("string")
                        .resource("string")
                        .build())
                    .build())
                .ingressTo(ServicePerimeterSpecIngressPolicyIngressToArgs.builder()
                    .operations(ServicePerimeterSpecIngressPolicyIngressToOperationArgs.builder()
                        .methodSelectors(ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelectorArgs.builder()
                            .method("string")
                            .permission("string")
                            .build())
                        .serviceName("string")
                        .build())
                    .resources("string")
                    .build())
                .build())
            .resources("string")
            .restrictedServices("string")
            .vpcAccessibleServices(ServicePerimeterSpecVpcAccessibleServicesArgs.builder()
                .allowedServices("string")
                .enableRestriction(false)
                .build())
            .build())
        .status(ServicePerimeterStatusArgs.builder()
            .accessLevels("string")
            .egressPolicies(ServicePerimeterStatusEgressPolicyArgs.builder()
                .egressFrom(ServicePerimeterStatusEgressPolicyEgressFromArgs.builder()
                    .identities("string")
                    .identityType("string")
                    .sourceRestriction("string")
                    .sources(ServicePerimeterStatusEgressPolicyEgressFromSourceArgs.builder()
                        .accessLevel("string")
                        .build())
                    .build())
                .egressTo(ServicePerimeterStatusEgressPolicyEgressToArgs.builder()
                    .externalResources("string")
                    .operations(ServicePerimeterStatusEgressPolicyEgressToOperationArgs.builder()
                        .methodSelectors(ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelectorArgs.builder()
                            .method("string")
                            .permission("string")
                            .build())
                        .serviceName("string")
                        .build())
                    .resources("string")
                    .build())
                .build())
            .ingressPolicies(ServicePerimeterStatusIngressPolicyArgs.builder()
                .ingressFrom(ServicePerimeterStatusIngressPolicyIngressFromArgs.builder()
                    .identities("string")
                    .identityType("string")
                    .sources(ServicePerimeterStatusIngressPolicyIngressFromSourceArgs.builder()
                        .accessLevel("string")
                        .resource("string")
                        .build())
                    .build())
                .ingressTo(ServicePerimeterStatusIngressPolicyIngressToArgs.builder()
                    .operations(ServicePerimeterStatusIngressPolicyIngressToOperationArgs.builder()
                        .methodSelectors(ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs.builder()
                            .method("string")
                            .permission("string")
                            .build())
                        .serviceName("string")
                        .build())
                    .resources("string")
                    .build())
                .build())
            .resources("string")
            .restrictedServices("string")
            .vpcAccessibleServices(ServicePerimeterStatusVpcAccessibleServicesArgs.builder()
                .allowedServices("string")
                .enableRestriction(false)
                .build())
            .build())
        .useExplicitDryRunSpec(false)
        .build());
    
    service_perimeter_resource = gcp.accesscontextmanager.ServicePerimeter("servicePerimeterResource",
        parent="string",
        title="string",
        description="string",
        name="string",
        perimeter_type="string",
        spec=gcp.accesscontextmanager.ServicePerimeterSpecArgs(
            access_levels=["string"],
            egress_policies=[gcp.accesscontextmanager.ServicePerimeterSpecEgressPolicyArgs(
                egress_from=gcp.accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressFromArgs(
                    identities=["string"],
                    identity_type="string",
                    source_restriction="string",
                    sources=[gcp.accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressFromSourceArgs(
                        access_level="string",
                    )],
                ),
                egress_to=gcp.accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressToArgs(
                    external_resources=["string"],
                    operations=[gcp.accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressToOperationArgs(
                        method_selectors=[gcp.accesscontextmanager.ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelectorArgs(
                            method="string",
                            permission="string",
                        )],
                        service_name="string",
                    )],
                    resources=["string"],
                ),
            )],
            ingress_policies=[gcp.accesscontextmanager.ServicePerimeterSpecIngressPolicyArgs(
                ingress_from=gcp.accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressFromArgs(
                    identities=["string"],
                    identity_type="string",
                    sources=[gcp.accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressFromSourceArgs(
                        access_level="string",
                        resource="string",
                    )],
                ),
                ingress_to=gcp.accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressToArgs(
                    operations=[gcp.accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressToOperationArgs(
                        method_selectors=[gcp.accesscontextmanager.ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelectorArgs(
                            method="string",
                            permission="string",
                        )],
                        service_name="string",
                    )],
                    resources=["string"],
                ),
            )],
            resources=["string"],
            restricted_services=["string"],
            vpc_accessible_services=gcp.accesscontextmanager.ServicePerimeterSpecVpcAccessibleServicesArgs(
                allowed_services=["string"],
                enable_restriction=False,
            ),
        ),
        status=gcp.accesscontextmanager.ServicePerimeterStatusArgs(
            access_levels=["string"],
            egress_policies=[gcp.accesscontextmanager.ServicePerimeterStatusEgressPolicyArgs(
                egress_from=gcp.accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressFromArgs(
                    identities=["string"],
                    identity_type="string",
                    source_restriction="string",
                    sources=[gcp.accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressFromSourceArgs(
                        access_level="string",
                    )],
                ),
                egress_to=gcp.accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressToArgs(
                    external_resources=["string"],
                    operations=[gcp.accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressToOperationArgs(
                        method_selectors=[gcp.accesscontextmanager.ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelectorArgs(
                            method="string",
                            permission="string",
                        )],
                        service_name="string",
                    )],
                    resources=["string"],
                ),
            )],
            ingress_policies=[gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyArgs(
                ingress_from=gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromArgs(
                    identities=["string"],
                    identity_type="string",
                    sources=[gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressFromSourceArgs(
                        access_level="string",
                        resource="string",
                    )],
                ),
                ingress_to=gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToArgs(
                    operations=[gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationArgs(
                        method_selectors=[gcp.accesscontextmanager.ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs(
                            method="string",
                            permission="string",
                        )],
                        service_name="string",
                    )],
                    resources=["string"],
                ),
            )],
            resources=["string"],
            restricted_services=["string"],
            vpc_accessible_services=gcp.accesscontextmanager.ServicePerimeterStatusVpcAccessibleServicesArgs(
                allowed_services=["string"],
                enable_restriction=False,
            ),
        ),
        use_explicit_dry_run_spec=False)
    
    const servicePerimeterResource = new gcp.accesscontextmanager.ServicePerimeter("servicePerimeterResource", {
        parent: "string",
        title: "string",
        description: "string",
        name: "string",
        perimeterType: "string",
        spec: {
            accessLevels: ["string"],
            egressPolicies: [{
                egressFrom: {
                    identities: ["string"],
                    identityType: "string",
                    sourceRestriction: "string",
                    sources: [{
                        accessLevel: "string",
                    }],
                },
                egressTo: {
                    externalResources: ["string"],
                    operations: [{
                        methodSelectors: [{
                            method: "string",
                            permission: "string",
                        }],
                        serviceName: "string",
                    }],
                    resources: ["string"],
                },
            }],
            ingressPolicies: [{
                ingressFrom: {
                    identities: ["string"],
                    identityType: "string",
                    sources: [{
                        accessLevel: "string",
                        resource: "string",
                    }],
                },
                ingressTo: {
                    operations: [{
                        methodSelectors: [{
                            method: "string",
                            permission: "string",
                        }],
                        serviceName: "string",
                    }],
                    resources: ["string"],
                },
            }],
            resources: ["string"],
            restrictedServices: ["string"],
            vpcAccessibleServices: {
                allowedServices: ["string"],
                enableRestriction: false,
            },
        },
        status: {
            accessLevels: ["string"],
            egressPolicies: [{
                egressFrom: {
                    identities: ["string"],
                    identityType: "string",
                    sourceRestriction: "string",
                    sources: [{
                        accessLevel: "string",
                    }],
                },
                egressTo: {
                    externalResources: ["string"],
                    operations: [{
                        methodSelectors: [{
                            method: "string",
                            permission: "string",
                        }],
                        serviceName: "string",
                    }],
                    resources: ["string"],
                },
            }],
            ingressPolicies: [{
                ingressFrom: {
                    identities: ["string"],
                    identityType: "string",
                    sources: [{
                        accessLevel: "string",
                        resource: "string",
                    }],
                },
                ingressTo: {
                    operations: [{
                        methodSelectors: [{
                            method: "string",
                            permission: "string",
                        }],
                        serviceName: "string",
                    }],
                    resources: ["string"],
                },
            }],
            resources: ["string"],
            restrictedServices: ["string"],
            vpcAccessibleServices: {
                allowedServices: ["string"],
                enableRestriction: false,
            },
        },
        useExplicitDryRunSpec: false,
    });
    
    type: gcp:accesscontextmanager:ServicePerimeter
    properties:
        description: string
        name: string
        parent: string
        perimeterType: string
        spec:
            accessLevels:
                - string
            egressPolicies:
                - egressFrom:
                    identities:
                        - string
                    identityType: string
                    sourceRestriction: string
                    sources:
                        - accessLevel: string
                  egressTo:
                    externalResources:
                        - string
                    operations:
                        - methodSelectors:
                            - method: string
                              permission: string
                          serviceName: string
                    resources:
                        - string
            ingressPolicies:
                - ingressFrom:
                    identities:
                        - string
                    identityType: string
                    sources:
                        - accessLevel: string
                          resource: string
                  ingressTo:
                    operations:
                        - methodSelectors:
                            - method: string
                              permission: string
                          serviceName: string
                    resources:
                        - string
            resources:
                - string
            restrictedServices:
                - string
            vpcAccessibleServices:
                allowedServices:
                    - string
                enableRestriction: false
        status:
            accessLevels:
                - string
            egressPolicies:
                - egressFrom:
                    identities:
                        - string
                    identityType: string
                    sourceRestriction: string
                    sources:
                        - accessLevel: string
                  egressTo:
                    externalResources:
                        - string
                    operations:
                        - methodSelectors:
                            - method: string
                              permission: string
                          serviceName: string
                    resources:
                        - string
            ingressPolicies:
                - ingressFrom:
                    identities:
                        - string
                    identityType: string
                    sources:
                        - accessLevel: string
                          resource: string
                  ingressTo:
                    operations:
                        - methodSelectors:
                            - method: string
                              permission: string
                          serviceName: string
                    resources:
                        - string
            resources:
                - string
            restrictedServices:
                - string
            vpcAccessibleServices:
                allowedServices:
                    - string
                enableRestriction: false
        title: string
        useExplicitDryRunSpec: false
    

    ServicePerimeter Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ServicePerimeter resource accepts the following input properties:

    Parent string
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    Title string
    Human readable title. Must be unique within the Policy.
    Description string
    Description of the ServicePerimeter and its use. Does not affect behavior.
    Name string
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    PerimeterType string
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    Spec ServicePerimeterSpec
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    Status ServicePerimeterStatus
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    UseExplicitDryRunSpec bool
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    Parent string
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    Title string
    Human readable title. Must be unique within the Policy.
    Description string
    Description of the ServicePerimeter and its use. Does not affect behavior.
    Name string
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    PerimeterType string
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    Spec ServicePerimeterSpecArgs
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    Status ServicePerimeterStatusArgs
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    UseExplicitDryRunSpec bool
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    parent String
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    title String
    Human readable title. Must be unique within the Policy.
    description String
    Description of the ServicePerimeter and its use. Does not affect behavior.
    name String
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    perimeterType String
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    spec ServicePerimeterSpec
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    status ServicePerimeterStatus
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    useExplicitDryRunSpec Boolean
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    parent string
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    title string
    Human readable title. Must be unique within the Policy.
    description string
    Description of the ServicePerimeter and its use. Does not affect behavior.
    name string
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    perimeterType string
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    spec ServicePerimeterSpec
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    status ServicePerimeterStatus
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    useExplicitDryRunSpec boolean
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    parent str
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    title str
    Human readable title. Must be unique within the Policy.
    description str
    Description of the ServicePerimeter and its use. Does not affect behavior.
    name str
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    perimeter_type str
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    spec ServicePerimeterSpecArgs
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    status ServicePerimeterStatusArgs
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    use_explicit_dry_run_spec bool
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    parent String
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    title String
    Human readable title. Must be unique within the Policy.
    description String
    Description of the ServicePerimeter and its use. Does not affect behavior.
    name String
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    perimeterType String
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    spec Property Map
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    status Property Map
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    useExplicitDryRunSpec Boolean
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServicePerimeter resource produces the following output properties:

    CreateTime string
    Time the AccessPolicy was created in UTC.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdateTime string
    Time the AccessPolicy was updated in UTC.
    CreateTime string
    Time the AccessPolicy was created in UTC.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdateTime string
    Time the AccessPolicy was updated in UTC.
    createTime String
    Time the AccessPolicy was created in UTC.
    id String
    The provider-assigned unique ID for this managed resource.
    updateTime String
    Time the AccessPolicy was updated in UTC.
    createTime string
    Time the AccessPolicy was created in UTC.
    id string
    The provider-assigned unique ID for this managed resource.
    updateTime string
    Time the AccessPolicy was updated in UTC.
    create_time str
    Time the AccessPolicy was created in UTC.
    id str
    The provider-assigned unique ID for this managed resource.
    update_time str
    Time the AccessPolicy was updated in UTC.
    createTime String
    Time the AccessPolicy was created in UTC.
    id String
    The provider-assigned unique ID for this managed resource.
    updateTime String
    Time the AccessPolicy was updated in UTC.

    Look up Existing ServicePerimeter Resource

    Get an existing ServicePerimeter 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?: ServicePerimeterState, opts?: CustomResourceOptions): ServicePerimeter
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            description: Optional[str] = None,
            name: Optional[str] = None,
            parent: Optional[str] = None,
            perimeter_type: Optional[str] = None,
            spec: Optional[ServicePerimeterSpecArgs] = None,
            status: Optional[ServicePerimeterStatusArgs] = None,
            title: Optional[str] = None,
            update_time: Optional[str] = None,
            use_explicit_dry_run_spec: Optional[bool] = None) -> ServicePerimeter
    func GetServicePerimeter(ctx *Context, name string, id IDInput, state *ServicePerimeterState, opts ...ResourceOption) (*ServicePerimeter, error)
    public static ServicePerimeter Get(string name, Input<string> id, ServicePerimeterState? state, CustomResourceOptions? opts = null)
    public static ServicePerimeter get(String name, Output<String> id, ServicePerimeterState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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.
    The following state arguments are supported:
    CreateTime string
    Time the AccessPolicy was created in UTC.
    Description string
    Description of the ServicePerimeter and its use. Does not affect behavior.
    Name string
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    Parent string
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    PerimeterType string
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    Spec ServicePerimeterSpec
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    Status ServicePerimeterStatus
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    Title string
    Human readable title. Must be unique within the Policy.
    UpdateTime string
    Time the AccessPolicy was updated in UTC.
    UseExplicitDryRunSpec bool
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    CreateTime string
    Time the AccessPolicy was created in UTC.
    Description string
    Description of the ServicePerimeter and its use. Does not affect behavior.
    Name string
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    Parent string
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    PerimeterType string
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    Spec ServicePerimeterSpecArgs
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    Status ServicePerimeterStatusArgs
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    Title string
    Human readable title. Must be unique within the Policy.
    UpdateTime string
    Time the AccessPolicy was updated in UTC.
    UseExplicitDryRunSpec bool
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    createTime String
    Time the AccessPolicy was created in UTC.
    description String
    Description of the ServicePerimeter and its use. Does not affect behavior.
    name String
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    parent String
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    perimeterType String
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    spec ServicePerimeterSpec
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    status ServicePerimeterStatus
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    title String
    Human readable title. Must be unique within the Policy.
    updateTime String
    Time the AccessPolicy was updated in UTC.
    useExplicitDryRunSpec Boolean
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    createTime string
    Time the AccessPolicy was created in UTC.
    description string
    Description of the ServicePerimeter and its use. Does not affect behavior.
    name string
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    parent string
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    perimeterType string
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    spec ServicePerimeterSpec
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    status ServicePerimeterStatus
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    title string
    Human readable title. Must be unique within the Policy.
    updateTime string
    Time the AccessPolicy was updated in UTC.
    useExplicitDryRunSpec boolean
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    create_time str
    Time the AccessPolicy was created in UTC.
    description str
    Description of the ServicePerimeter and its use. Does not affect behavior.
    name str
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    parent str
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    perimeter_type str
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    spec ServicePerimeterSpecArgs
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    status ServicePerimeterStatusArgs
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    title str
    Human readable title. Must be unique within the Policy.
    update_time str
    Time the AccessPolicy was updated in UTC.
    use_explicit_dry_run_spec bool
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.
    createTime String
    Time the AccessPolicy was created in UTC.
    description String
    Description of the ServicePerimeter and its use. Does not affect behavior.
    name String
    Resource name for the ServicePerimeter. The short_name component must begin with a letter and only include alphanumeric and '_'. Format: accessPolicies/{policy_id}/servicePerimeters/{short_name}


    parent String
    The AccessPolicy this ServicePerimeter lives in. Format: accessPolicies/{policy_id}
    perimeterType String
    Specifies the type of the Perimeter. There are two types: regular and bridge. Regular Service Perimeter contains resources, access levels, and restricted services. Every resource can be in at most ONE regular Service Perimeter. In addition to being in a regular service perimeter, a resource can also be in zero or more perimeter bridges. A perimeter bridge only contains resources. Cross project operations are permitted if all effected resources share some perimeter (whether bridge or regular). Perimeter Bridge does not contain access levels or services: those are governed entirely by the regular perimeter that resource is in. Perimeter Bridges are typically useful when building more complex topologies with many independent perimeters that need to share some data with a common perimeter, but should not be able to share data among themselves. Default value is PERIMETER_TYPE_REGULAR. Possible values are: PERIMETER_TYPE_REGULAR, PERIMETER_TYPE_BRIDGE.
    spec Property Map
    Proposed (or dry run) ServicePerimeter configuration. This configuration allows to specify and test ServicePerimeter configuration without enforcing actual access restrictions. Only allowed to be set when the useExplicitDryRunSpec flag is set. Structure is documented below.
    status Property Map
    ServicePerimeter configuration. Specifies sets of resources, restricted services and access levels that determine perimeter content and boundaries. Structure is documented below.
    title String
    Human readable title. Must be unique within the Policy.
    updateTime String
    Time the AccessPolicy was updated in UTC.
    useExplicitDryRunSpec Boolean
    Use explicit dry run spec flag. Ordinarily, a dry-run spec implicitly exists for all Service Perimeters, and that spec is identical to the status for those Service Perimeters. When this flag is set, it inhibits the generation of the implicit spec, thereby allowing the user to explicitly provide a configuration ("spec") to use in a dry-run version of the Service Perimeter. This allows the user to test changes to the enforced config ("status") without actually enforcing them. This testing is done through analyzing the differences between currently enforced and suggested restrictions. useExplicitDryRunSpec must bet set to True if any of the fields in the spec are set to non-default values.

    Supporting Types

    ServicePerimeterSpec, ServicePerimeterSpecArgs

    AccessLevels List<string>
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    EgressPolicies List<ServicePerimeterSpecEgressPolicy>
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    IngressPolicies List<ServicePerimeterSpecIngressPolicy>
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    Resources List<string>
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    RestrictedServices List<string>
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    VpcAccessibleServices ServicePerimeterSpecVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    AccessLevels []string
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    EgressPolicies []ServicePerimeterSpecEgressPolicy
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    IngressPolicies []ServicePerimeterSpecIngressPolicy
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    Resources []string
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    RestrictedServices []string
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    VpcAccessibleServices ServicePerimeterSpecVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    accessLevels List<String>
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    egressPolicies List<ServicePerimeterSpecEgressPolicy>
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    ingressPolicies List<ServicePerimeterSpecIngressPolicy>
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    resources List<String>
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    restrictedServices List<String>
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    vpcAccessibleServices ServicePerimeterSpecVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    accessLevels string[]
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    egressPolicies ServicePerimeterSpecEgressPolicy[]
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    ingressPolicies ServicePerimeterSpecIngressPolicy[]
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    resources string[]
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    restrictedServices string[]
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    vpcAccessibleServices ServicePerimeterSpecVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    access_levels Sequence[str]
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    egress_policies Sequence[ServicePerimeterSpecEgressPolicy]
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    ingress_policies Sequence[ServicePerimeterSpecIngressPolicy]
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    resources Sequence[str]
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    restricted_services Sequence[str]
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    vpc_accessible_services ServicePerimeterSpecVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    accessLevels List<String>
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    egressPolicies List<Property Map>
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    ingressPolicies List<Property Map>
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    resources List<String>
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    restrictedServices List<String>
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    vpcAccessibleServices Property Map
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.

    ServicePerimeterSpecEgressPolicy, ServicePerimeterSpecEgressPolicyArgs

    EgressFrom ServicePerimeterSpecEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    EgressTo ServicePerimeterSpecEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    EgressFrom ServicePerimeterSpecEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    EgressTo ServicePerimeterSpecEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    egressFrom ServicePerimeterSpecEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    egressTo ServicePerimeterSpecEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    egressFrom ServicePerimeterSpecEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    egressTo ServicePerimeterSpecEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    egress_from ServicePerimeterSpecEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    egress_to ServicePerimeterSpecEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    egressFrom Property Map
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    egressTo Property Map
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.

    ServicePerimeterSpecEgressPolicyEgressFrom, ServicePerimeterSpecEgressPolicyEgressFromArgs

    Identities List<string>
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    IdentityType string
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    SourceRestriction string
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    Sources List<ServicePerimeterSpecEgressPolicyEgressFromSource>
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    Identities []string
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    IdentityType string
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    SourceRestriction string
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    Sources []ServicePerimeterSpecEgressPolicyEgressFromSource
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    identities List<String>
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType String
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sourceRestriction String
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    sources List<ServicePerimeterSpecEgressPolicyEgressFromSource>
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    identities string[]
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType string
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sourceRestriction string
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    sources ServicePerimeterSpecEgressPolicyEgressFromSource[]
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    identities Sequence[str]
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identity_type str
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    source_restriction str
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    sources Sequence[ServicePerimeterSpecEgressPolicyEgressFromSource]
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    identities List<String>
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType String
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sourceRestriction String
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    sources List<Property Map>
    Sources that this EgressPolicy authorizes access from. Structure is documented below.

    ServicePerimeterSpecEgressPolicyEgressFromSource, ServicePerimeterSpecEgressPolicyEgressFromSourceArgs

    AccessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    AccessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    accessLevel String
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    accessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    access_level str
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    accessLevel String
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.

    ServicePerimeterSpecEgressPolicyEgressTo, ServicePerimeterSpecEgressPolicyEgressToArgs

    ExternalResources List<string>
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    Operations List<ServicePerimeterSpecEgressPolicyEgressToOperation>
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    Resources List<string>
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    ExternalResources []string
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    Operations []ServicePerimeterSpecEgressPolicyEgressToOperation
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    Resources []string
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    externalResources List<String>
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    operations List<ServicePerimeterSpecEgressPolicyEgressToOperation>
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    resources List<String>
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    externalResources string[]
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    operations ServicePerimeterSpecEgressPolicyEgressToOperation[]
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    resources string[]
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    external_resources Sequence[str]
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    operations Sequence[ServicePerimeterSpecEgressPolicyEgressToOperation]
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    resources Sequence[str]
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    externalResources List<String>
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    operations List<Property Map>
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    resources List<String>
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.

    ServicePerimeterSpecEgressPolicyEgressToOperation, ServicePerimeterSpecEgressPolicyEgressToOperationArgs

    MethodSelectors List<ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelector>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    ServiceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    MethodSelectors []ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelector
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    ServiceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors List<ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelector>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName String
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelector[]
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    method_selectors Sequence[ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelector]
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    service_name str
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors List<Property Map>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName String
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.

    ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelector, ServicePerimeterSpecEgressPolicyEgressToOperationMethodSelectorArgs

    Method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    Permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    Method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    Permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method String
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission String
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method str
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission str
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method String
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission String
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.

    ServicePerimeterSpecIngressPolicy, ServicePerimeterSpecIngressPolicyArgs

    IngressFrom ServicePerimeterSpecIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    IngressTo ServicePerimeterSpecIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    IngressFrom ServicePerimeterSpecIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    IngressTo ServicePerimeterSpecIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    ingressFrom ServicePerimeterSpecIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    ingressTo ServicePerimeterSpecIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    ingressFrom ServicePerimeterSpecIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    ingressTo ServicePerimeterSpecIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    ingress_from ServicePerimeterSpecIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    ingress_to ServicePerimeterSpecIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    ingressFrom Property Map
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    ingressTo Property Map
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.

    ServicePerimeterSpecIngressPolicyIngressFrom, ServicePerimeterSpecIngressPolicyIngressFromArgs

    Identities List<string>
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    IdentityType string
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    Sources List<ServicePerimeterSpecIngressPolicyIngressFromSource>
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    Identities []string
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    IdentityType string
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    Sources []ServicePerimeterSpecIngressPolicyIngressFromSource
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    identities List<String>
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType String
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sources List<ServicePerimeterSpecIngressPolicyIngressFromSource>
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    identities string[]
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType string
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sources ServicePerimeterSpecIngressPolicyIngressFromSource[]
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    identities Sequence[str]
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identity_type str
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sources Sequence[ServicePerimeterSpecIngressPolicyIngressFromSource]
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    identities List<String>
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType String
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sources List<Property Map>
    Sources that this IngressPolicy authorizes access from. Structure is documented below.

    ServicePerimeterSpecIngressPolicyIngressFromSource, ServicePerimeterSpecIngressPolicyIngressFromSourceArgs

    AccessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    Resource string
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    AccessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    Resource string
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    accessLevel String
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    resource String
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    accessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    resource string
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    access_level str
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    resource str
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    accessLevel String
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    resource String
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.

    ServicePerimeterSpecIngressPolicyIngressTo, ServicePerimeterSpecIngressPolicyIngressToArgs

    Operations List<ServicePerimeterSpecIngressPolicyIngressToOperation>
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    Resources List<string>
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    Operations []ServicePerimeterSpecIngressPolicyIngressToOperation
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    Resources []string
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    operations List<ServicePerimeterSpecIngressPolicyIngressToOperation>
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    resources List<String>
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    operations ServicePerimeterSpecIngressPolicyIngressToOperation[]
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    resources string[]
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    operations Sequence[ServicePerimeterSpecIngressPolicyIngressToOperation]
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    resources Sequence[str]
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    operations List<Property Map>
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    resources List<String>
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.

    ServicePerimeterSpecIngressPolicyIngressToOperation, ServicePerimeterSpecIngressPolicyIngressToOperationArgs

    MethodSelectors List<ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelector>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    ServiceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    MethodSelectors []ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelector
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    ServiceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors List<ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelector>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName String
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelector[]
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    method_selectors Sequence[ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelector]
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    service_name str
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors List<Property Map>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName String
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.

    ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelector, ServicePerimeterSpecIngressPolicyIngressToOperationMethodSelectorArgs

    Method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    Permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    Method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    Permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method String
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission String
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method str
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission str
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method String
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission String
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.

    ServicePerimeterSpecVpcAccessibleServices, ServicePerimeterSpecVpcAccessibleServicesArgs

    AllowedServices List<string>
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    EnableRestriction bool
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    AllowedServices []string
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    EnableRestriction bool
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    allowedServices List<String>
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    enableRestriction Boolean
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    allowedServices string[]
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    enableRestriction boolean
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    allowed_services Sequence[str]
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    enable_restriction bool
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    allowedServices List<String>
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    enableRestriction Boolean
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.

    ServicePerimeterStatus, ServicePerimeterStatusArgs

    AccessLevels List<string>
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    EgressPolicies List<ServicePerimeterStatusEgressPolicy>
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    IngressPolicies List<ServicePerimeterStatusIngressPolicy>
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    Resources List<string>
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    RestrictedServices List<string>
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    VpcAccessibleServices ServicePerimeterStatusVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    AccessLevels []string
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    EgressPolicies []ServicePerimeterStatusEgressPolicy
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    IngressPolicies []ServicePerimeterStatusIngressPolicy
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    Resources []string
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    RestrictedServices []string
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    VpcAccessibleServices ServicePerimeterStatusVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    accessLevels List<String>
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    egressPolicies List<ServicePerimeterStatusEgressPolicy>
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    ingressPolicies List<ServicePerimeterStatusIngressPolicy>
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    resources List<String>
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    restrictedServices List<String>
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    vpcAccessibleServices ServicePerimeterStatusVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    accessLevels string[]
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    egressPolicies ServicePerimeterStatusEgressPolicy[]
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    ingressPolicies ServicePerimeterStatusIngressPolicy[]
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    resources string[]
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    restrictedServices string[]
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    vpcAccessibleServices ServicePerimeterStatusVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    access_levels Sequence[str]
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    egress_policies Sequence[ServicePerimeterStatusEgressPolicy]
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    ingress_policies Sequence[ServicePerimeterStatusIngressPolicy]
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    resources Sequence[str]
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    restricted_services Sequence[str]
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    vpc_accessible_services ServicePerimeterStatusVpcAccessibleServices
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.
    accessLevels List<String>
    A list of AccessLevel resource names that allow resources within the ServicePerimeter to be accessed from the internet. AccessLevels listed must be in the same policy as this ServicePerimeter. Referencing a nonexistent AccessLevel is a syntax error. If no AccessLevel names are listed, resources within the perimeter can only be accessed via GCP calls with request origins within the perimeter. For Service Perimeter Bridge, must be empty. Format: accessPolicies/{policy_id}/accessLevels/{access_level_name}
    egressPolicies List<Property Map>
    List of EgressPolicies to apply to the perimeter. A perimeter may have multiple EgressPolicies, each of which is evaluated separately. Access is granted if any EgressPolicy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    ingressPolicies List<Property Map>
    List of IngressPolicies to apply to the perimeter. A perimeter may have multiple IngressPolicies, each of which is evaluated separately. Access is granted if any Ingress Policy grants it. Must be empty for a perimeter bridge. Structure is documented below.
    resources List<String>
    A list of GCP resources that are inside of the service perimeter. Currently only projects are allowed. Format: projects/{project_number}
    restrictedServices List<String>
    GCP services that are subject to the Service Perimeter restrictions. Must contain a list of services. For example, if storage.googleapis.com is specified, access to the storage buckets inside the perimeter must meet the perimeter's access restrictions.
    vpcAccessibleServices Property Map
    Specifies how APIs are allowed to communicate within the Service Perimeter. Structure is documented below.

    ServicePerimeterStatusEgressPolicy, ServicePerimeterStatusEgressPolicyArgs

    EgressFrom ServicePerimeterStatusEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    EgressTo ServicePerimeterStatusEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    EgressFrom ServicePerimeterStatusEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    EgressTo ServicePerimeterStatusEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    egressFrom ServicePerimeterStatusEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    egressTo ServicePerimeterStatusEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    egressFrom ServicePerimeterStatusEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    egressTo ServicePerimeterStatusEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    egress_from ServicePerimeterStatusEgressPolicyEgressFrom
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    egress_to ServicePerimeterStatusEgressPolicyEgressTo
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.
    egressFrom Property Map
    Defines conditions on the source of a request causing this EgressPolicy to apply. Structure is documented below.
    egressTo Property Map
    Defines the conditions on the ApiOperation and destination resources that cause this EgressPolicy to apply. Structure is documented below.

    ServicePerimeterStatusEgressPolicyEgressFrom, ServicePerimeterStatusEgressPolicyEgressFromArgs

    Identities List<string>
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    IdentityType string
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    SourceRestriction string
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    Sources List<ServicePerimeterStatusEgressPolicyEgressFromSource>
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    Identities []string
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    IdentityType string
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    SourceRestriction string
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    Sources []ServicePerimeterStatusEgressPolicyEgressFromSource
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    identities List<String>
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType String
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sourceRestriction String
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    sources List<ServicePerimeterStatusEgressPolicyEgressFromSource>
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    identities string[]
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType string
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sourceRestriction string
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    sources ServicePerimeterStatusEgressPolicyEgressFromSource[]
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    identities Sequence[str]
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identity_type str
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    source_restriction str
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    sources Sequence[ServicePerimeterStatusEgressPolicyEgressFromSource]
    Sources that this EgressPolicy authorizes access from. Structure is documented below.
    identities List<String>
    'A list of identities that are allowed access through this EgressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType String
    Specifies the type of identities that are allowed access to outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sourceRestriction String
    Whether to enforce traffic restrictions based on sources field. If the sources field is non-empty, then this field must be set to SOURCE_RESTRICTION_ENABLED. Possible values are: SOURCE_RESTRICTION_UNSPECIFIED, SOURCE_RESTRICTION_ENABLED, SOURCE_RESTRICTION_DISABLED.
    sources List<Property Map>
    Sources that this EgressPolicy authorizes access from. Structure is documented below.

    ServicePerimeterStatusEgressPolicyEgressFromSource, ServicePerimeterStatusEgressPolicyEgressFromSourceArgs

    AccessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    AccessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    accessLevel String
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    accessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    access_level str
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    accessLevel String
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.

    ServicePerimeterStatusEgressPolicyEgressTo, ServicePerimeterStatusEgressPolicyEgressToArgs

    ExternalResources List<string>
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    Operations List<ServicePerimeterStatusEgressPolicyEgressToOperation>
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    Resources List<string>
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    ExternalResources []string
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    Operations []ServicePerimeterStatusEgressPolicyEgressToOperation
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    Resources []string
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    externalResources List<String>
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    operations List<ServicePerimeterStatusEgressPolicyEgressToOperation>
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    resources List<String>
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    externalResources string[]
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    operations ServicePerimeterStatusEgressPolicyEgressToOperation[]
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    resources string[]
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    external_resources Sequence[str]
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    operations Sequence[ServicePerimeterStatusEgressPolicyEgressToOperation]
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    resources Sequence[str]
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.
    externalResources List<String>
    A list of external resources that are allowed to be accessed. A request matches if it contains an external resource in this list (Example: s3://bucket/path). Currently '*' is not allowed.
    operations List<Property Map>
    A list of ApiOperations that this egress rule applies to. A request matches if it contains an operation/service in this list. Structure is documented below.
    resources List<String>
    A list of resources, currently only projects in the form projects/<projectnumber>, that match this to stanza. A request matches if it contains a resource in this list. If * is specified for resources, then this EgressTo rule will authorize access to all resources outside the perimeter.

    ServicePerimeterStatusEgressPolicyEgressToOperation, ServicePerimeterStatusEgressPolicyEgressToOperationArgs

    MethodSelectors List<ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelector>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    ServiceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    MethodSelectors []ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelector
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    ServiceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors List<ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelector>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName String
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelector[]
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    method_selectors Sequence[ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelector]
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    service_name str
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors List<Property Map>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName String
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.

    ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelector, ServicePerimeterStatusEgressPolicyEgressToOperationMethodSelectorArgs

    Method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    Permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    Method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    Permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method String
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission String
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method str
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission str
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method String
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission String
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.

    ServicePerimeterStatusIngressPolicy, ServicePerimeterStatusIngressPolicyArgs

    IngressFrom ServicePerimeterStatusIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    IngressTo ServicePerimeterStatusIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    IngressFrom ServicePerimeterStatusIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    IngressTo ServicePerimeterStatusIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    ingressFrom ServicePerimeterStatusIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    ingressTo ServicePerimeterStatusIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    ingressFrom ServicePerimeterStatusIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    ingressTo ServicePerimeterStatusIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    ingress_from ServicePerimeterStatusIngressPolicyIngressFrom
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    ingress_to ServicePerimeterStatusIngressPolicyIngressTo
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.
    ingressFrom Property Map
    Defines the conditions on the source of a request causing this IngressPolicy to apply. Structure is documented below.
    ingressTo Property Map
    Defines the conditions on the ApiOperation and request destination that cause this IngressPolicy to apply. Structure is documented below.

    ServicePerimeterStatusIngressPolicyIngressFrom, ServicePerimeterStatusIngressPolicyIngressFromArgs

    Identities List<string>
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    IdentityType string
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    Sources List<ServicePerimeterStatusIngressPolicyIngressFromSource>
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    Identities []string
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    IdentityType string
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    Sources []ServicePerimeterStatusIngressPolicyIngressFromSource
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    identities List<String>
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType String
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sources List<ServicePerimeterStatusIngressPolicyIngressFromSource>
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    identities string[]
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType string
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sources ServicePerimeterStatusIngressPolicyIngressFromSource[]
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    identities Sequence[str]
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identity_type str
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sources Sequence[ServicePerimeterStatusIngressPolicyIngressFromSource]
    Sources that this IngressPolicy authorizes access from. Structure is documented below.
    identities List<String>
    'A list of identities that are allowed access through this IngressPolicy. To specify an identity or identity group, use the IAM v1 format specified here. The following prefixes are supprted: user, group, serviceAccount, principal, and principalSet.'
    identityType String
    Specifies the type of identities that are allowed access from outside the perimeter. If left unspecified, then members of identities field will be allowed access. Possible values are: IDENTITY_TYPE_UNSPECIFIED, ANY_IDENTITY, ANY_USER_ACCOUNT, ANY_SERVICE_ACCOUNT.
    sources List<Property Map>
    Sources that this IngressPolicy authorizes access from. Structure is documented below.

    ServicePerimeterStatusIngressPolicyIngressFromSource, ServicePerimeterStatusIngressPolicyIngressFromSourceArgs

    AccessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    Resource string
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    AccessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    Resource string
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    accessLevel String
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    resource String
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    accessLevel string
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    resource string
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    access_level str
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    resource str
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.
    accessLevel String
    An AccessLevel resource name that allows resources outside the ServicePerimeter to be accessed from the inside.
    resource String
    A Google Cloud resource that is allowed to ingress the perimeter. Requests from these resources will be allowed to access perimeter data. Currently only projects are allowed. Format projects/{project_number} The project may be in any Google Cloud organization, not just the organization that the perimeter is defined in. * is not allowed, the case of allowing all Google Cloud resources only is not supported.

    ServicePerimeterStatusIngressPolicyIngressTo, ServicePerimeterStatusIngressPolicyIngressToArgs

    Operations List<ServicePerimeterStatusIngressPolicyIngressToOperation>
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    Resources List<string>
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    Operations []ServicePerimeterStatusIngressPolicyIngressToOperation
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    Resources []string
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    operations List<ServicePerimeterStatusIngressPolicyIngressToOperation>
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    resources List<String>
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    operations ServicePerimeterStatusIngressPolicyIngressToOperation[]
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    resources string[]
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    operations Sequence[ServicePerimeterStatusIngressPolicyIngressToOperation]
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    resources Sequence[str]
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.
    operations List<Property Map>
    A list of ApiOperations the sources specified in corresponding IngressFrom are allowed to perform in this ServicePerimeter. Structure is documented below.
    resources List<String>
    A list of resources, currently only projects in the form projects/<projectnumber>, protected by this ServicePerimeter that are allowed to be accessed by sources defined in the corresponding IngressFrom. A request matches if it contains a resource in this list. If * is specified for resources, then this IngressTo rule will authorize access to all resources inside the perimeter, provided that the request also matches the operations field.

    ServicePerimeterStatusIngressPolicyIngressToOperation, ServicePerimeterStatusIngressPolicyIngressToOperationArgs

    MethodSelectors List<ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelector>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    ServiceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    MethodSelectors []ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelector
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    ServiceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors List<ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelector>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName String
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelector[]
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName string
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    method_selectors Sequence[ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelector]
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    service_name str
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.
    methodSelectors List<Property Map>
    API methods or permissions to allow. Method or permission must belong to the service specified by serviceName field. A single MethodSelector entry with * specified for the method field will allow all methods AND permissions for the service specified in serviceName. Structure is documented below.
    serviceName String
    The name of the API whose methods or permissions the IngressPolicy or EgressPolicy want to allow. A single ApiOperation with serviceName field set to * will allow all methods AND permissions for all services.

    ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelector, ServicePerimeterStatusIngressPolicyIngressToOperationMethodSelectorArgs

    Method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    Permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    Method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    Permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method String
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission String
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method string
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission string
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method str
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission str
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.
    method String
    Value for method should be a valid method name for the corresponding serviceName in ApiOperation. If * used as value for method, then ALL methods and permissions are allowed.
    permission String
    Value for permission should be a valid Cloud IAM permission for the corresponding serviceName in ApiOperation.

    ServicePerimeterStatusVpcAccessibleServices, ServicePerimeterStatusVpcAccessibleServicesArgs

    AllowedServices List<string>
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    EnableRestriction bool
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    AllowedServices []string
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    EnableRestriction bool
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    allowedServices List<String>
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    enableRestriction Boolean
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    allowedServices string[]
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    enableRestriction boolean
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    allowed_services Sequence[str]
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    enable_restriction bool
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.
    allowedServices List<String>
    The list of APIs usable within the Service Perimeter. Must be empty unless enableRestriction is True.
    enableRestriction Boolean
    Whether to restrict API calls within the Service Perimeter to the list of APIs specified in 'allowedServices'.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.19.0 published on Thursday, Apr 18, 2024 by Pulumi