1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. apigee
  5. SecurityProfileV2
Google Cloud v8.31.0 published on Thursday, May 15, 2025 by Pulumi

gcp.apigee.SecurityProfileV2

Explore with Pulumi AI

gcp logo
Google Cloud v8.31.0 published on Thursday, May 15, 2025 by Pulumi

    Security profile for risk assessment version 2 in Apigee.

    To get more information about SecurityProfileV2, see:

    Example Usage

    Apigee Security Profile V2 Basic

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const current = gcp.organizations.getClientConfig({});
    const apigeeNetwork = new gcp.compute.Network("apigee_network", {name: "apigee-network"});
    const apigeeRange = new gcp.compute.GlobalAddress("apigee_range", {
        name: "apigee-range",
        purpose: "VPC_PEERING",
        addressType: "INTERNAL",
        prefixLength: 16,
        network: apigeeNetwork.id,
    });
    const apigeeVpcConnection = new gcp.servicenetworking.Connection("apigee_vpc_connection", {
        network: apigeeNetwork.id,
        service: "servicenetworking.googleapis.com",
        reservedPeeringRanges: [apigeeRange.name],
    });
    const apigeeOrg = new gcp.apigee.Organization("apigee_org", {
        analyticsRegion: "us-central1",
        projectId: current.then(current => current.project),
        authorizedNetwork: apigeeNetwork.id,
    }, {
        dependsOn: [apigeeVpcConnection],
    });
    const apigeeOrgSecurityAddonsConfig = new gcp.apigee.AddonsConfig("apigee_org_security_addons_config", {
        org: apigeeOrg.name,
        addonsConfig: {
            apiSecurityConfig: {
                enabled: true,
            },
        },
    });
    const securityProfileV2 = new gcp.apigee.SecurityProfileV2("security_profile_v2", {
        profileId: "my-profile",
        orgId: apigeeOrg.id,
        description: "terraform test description",
        profileAssessmentConfigs: [
            {
                assessment: "auth-policies-check",
                weight: "MAJOR",
            },
            {
                assessment: "mediation-policies-check",
                weight: "MODERATE",
            },
            {
                assessment: "threat-policies-check",
                weight: "MINOR",
            },
        ],
    }, {
        dependsOn: [apigeeOrgSecurityAddonsConfig],
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    current = gcp.organizations.get_client_config()
    apigee_network = gcp.compute.Network("apigee_network", name="apigee-network")
    apigee_range = gcp.compute.GlobalAddress("apigee_range",
        name="apigee-range",
        purpose="VPC_PEERING",
        address_type="INTERNAL",
        prefix_length=16,
        network=apigee_network.id)
    apigee_vpc_connection = gcp.servicenetworking.Connection("apigee_vpc_connection",
        network=apigee_network.id,
        service="servicenetworking.googleapis.com",
        reserved_peering_ranges=[apigee_range.name])
    apigee_org = gcp.apigee.Organization("apigee_org",
        analytics_region="us-central1",
        project_id=current.project,
        authorized_network=apigee_network.id,
        opts = pulumi.ResourceOptions(depends_on=[apigee_vpc_connection]))
    apigee_org_security_addons_config = gcp.apigee.AddonsConfig("apigee_org_security_addons_config",
        org=apigee_org.name,
        addons_config={
            "api_security_config": {
                "enabled": True,
            },
        })
    security_profile_v2 = gcp.apigee.SecurityProfileV2("security_profile_v2",
        profile_id="my-profile",
        org_id=apigee_org.id,
        description="terraform test description",
        profile_assessment_configs=[
            {
                "assessment": "auth-policies-check",
                "weight": "MAJOR",
            },
            {
                "assessment": "mediation-policies-check",
                "weight": "MODERATE",
            },
            {
                "assessment": "threat-policies-check",
                "weight": "MINOR",
            },
        ],
        opts = pulumi.ResourceOptions(depends_on=[apigee_org_security_addons_config]))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/apigee"
    	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
    	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/organizations"
    	"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/servicenetworking"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		current, err := organizations.GetClientConfig(ctx, map[string]interface{}{}, nil)
    		if err != nil {
    			return err
    		}
    		apigeeNetwork, err := compute.NewNetwork(ctx, "apigee_network", &compute.NetworkArgs{
    			Name: pulumi.String("apigee-network"),
    		})
    		if err != nil {
    			return err
    		}
    		apigeeRange, err := compute.NewGlobalAddress(ctx, "apigee_range", &compute.GlobalAddressArgs{
    			Name:         pulumi.String("apigee-range"),
    			Purpose:      pulumi.String("VPC_PEERING"),
    			AddressType:  pulumi.String("INTERNAL"),
    			PrefixLength: pulumi.Int(16),
    			Network:      apigeeNetwork.ID(),
    		})
    		if err != nil {
    			return err
    		}
    		apigeeVpcConnection, err := servicenetworking.NewConnection(ctx, "apigee_vpc_connection", &servicenetworking.ConnectionArgs{
    			Network: apigeeNetwork.ID(),
    			Service: pulumi.String("servicenetworking.googleapis.com"),
    			ReservedPeeringRanges: pulumi.StringArray{
    				apigeeRange.Name,
    			},
    		})
    		if err != nil {
    			return err
    		}
    		apigeeOrg, err := apigee.NewOrganization(ctx, "apigee_org", &apigee.OrganizationArgs{
    			AnalyticsRegion:   pulumi.String("us-central1"),
    			ProjectId:         pulumi.String(current.Project),
    			AuthorizedNetwork: apigeeNetwork.ID(),
    		}, pulumi.DependsOn([]pulumi.Resource{
    			apigeeVpcConnection,
    		}))
    		if err != nil {
    			return err
    		}
    		apigeeOrgSecurityAddonsConfig, err := apigee.NewAddonsConfig(ctx, "apigee_org_security_addons_config", &apigee.AddonsConfigArgs{
    			Org: apigeeOrg.Name,
    			AddonsConfig: &apigee.AddonsConfigAddonsConfigArgs{
    				ApiSecurityConfig: &apigee.AddonsConfigAddonsConfigApiSecurityConfigArgs{
    					Enabled: pulumi.Bool(true),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = apigee.NewSecurityProfileV2(ctx, "security_profile_v2", &apigee.SecurityProfileV2Args{
    			ProfileId:   pulumi.String("my-profile"),
    			OrgId:       apigeeOrg.ID(),
    			Description: pulumi.String("terraform test description"),
    			ProfileAssessmentConfigs: apigee.SecurityProfileV2ProfileAssessmentConfigArray{
    				&apigee.SecurityProfileV2ProfileAssessmentConfigArgs{
    					Assessment: pulumi.String("auth-policies-check"),
    					Weight:     pulumi.String("MAJOR"),
    				},
    				&apigee.SecurityProfileV2ProfileAssessmentConfigArgs{
    					Assessment: pulumi.String("mediation-policies-check"),
    					Weight:     pulumi.String("MODERATE"),
    				},
    				&apigee.SecurityProfileV2ProfileAssessmentConfigArgs{
    					Assessment: pulumi.String("threat-policies-check"),
    					Weight:     pulumi.String("MINOR"),
    				},
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			apigeeOrgSecurityAddonsConfig,
    		}))
    		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 current = Gcp.Organizations.GetClientConfig.Invoke();
    
        var apigeeNetwork = new Gcp.Compute.Network("apigee_network", new()
        {
            Name = "apigee-network",
        });
    
        var apigeeRange = new Gcp.Compute.GlobalAddress("apigee_range", new()
        {
            Name = "apigee-range",
            Purpose = "VPC_PEERING",
            AddressType = "INTERNAL",
            PrefixLength = 16,
            Network = apigeeNetwork.Id,
        });
    
        var apigeeVpcConnection = new Gcp.ServiceNetworking.Connection("apigee_vpc_connection", new()
        {
            Network = apigeeNetwork.Id,
            Service = "servicenetworking.googleapis.com",
            ReservedPeeringRanges = new[]
            {
                apigeeRange.Name,
            },
        });
    
        var apigeeOrg = new Gcp.Apigee.Organization("apigee_org", new()
        {
            AnalyticsRegion = "us-central1",
            ProjectId = current.Apply(getClientConfigResult => getClientConfigResult.Project),
            AuthorizedNetwork = apigeeNetwork.Id,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                apigeeVpcConnection,
            },
        });
    
        var apigeeOrgSecurityAddonsConfig = new Gcp.Apigee.AddonsConfig("apigee_org_security_addons_config", new()
        {
            Org = apigeeOrg.Name,
            AddonsConfigDetails = new Gcp.Apigee.Inputs.AddonsConfigAddonsConfigArgs
            {
                ApiSecurityConfig = new Gcp.Apigee.Inputs.AddonsConfigAddonsConfigApiSecurityConfigArgs
                {
                    Enabled = true,
                },
            },
        });
    
        var securityProfileV2 = new Gcp.Apigee.SecurityProfileV2("security_profile_v2", new()
        {
            ProfileId = "my-profile",
            OrgId = apigeeOrg.Id,
            Description = "terraform test description",
            ProfileAssessmentConfigs = new[]
            {
                new Gcp.Apigee.Inputs.SecurityProfileV2ProfileAssessmentConfigArgs
                {
                    Assessment = "auth-policies-check",
                    Weight = "MAJOR",
                },
                new Gcp.Apigee.Inputs.SecurityProfileV2ProfileAssessmentConfigArgs
                {
                    Assessment = "mediation-policies-check",
                    Weight = "MODERATE",
                },
                new Gcp.Apigee.Inputs.SecurityProfileV2ProfileAssessmentConfigArgs
                {
                    Assessment = "threat-policies-check",
                    Weight = "MINOR",
                },
            },
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                apigeeOrgSecurityAddonsConfig,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.organizations.OrganizationsFunctions;
    import com.pulumi.gcp.compute.Network;
    import com.pulumi.gcp.compute.NetworkArgs;
    import com.pulumi.gcp.compute.GlobalAddress;
    import com.pulumi.gcp.compute.GlobalAddressArgs;
    import com.pulumi.gcp.servicenetworking.Connection;
    import com.pulumi.gcp.servicenetworking.ConnectionArgs;
    import com.pulumi.gcp.apigee.Organization;
    import com.pulumi.gcp.apigee.OrganizationArgs;
    import com.pulumi.gcp.apigee.AddonsConfig;
    import com.pulumi.gcp.apigee.AddonsConfigArgs;
    import com.pulumi.gcp.apigee.inputs.AddonsConfigAddonsConfigArgs;
    import com.pulumi.gcp.apigee.inputs.AddonsConfigAddonsConfigApiSecurityConfigArgs;
    import com.pulumi.gcp.apigee.SecurityProfileV2;
    import com.pulumi.gcp.apigee.SecurityProfileV2Args;
    import com.pulumi.gcp.apigee.inputs.SecurityProfileV2ProfileAssessmentConfigArgs;
    import com.pulumi.resources.CustomResourceOptions;
    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) {
            final var current = OrganizationsFunctions.getClientConfig(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference);
    
            var apigeeNetwork = new Network("apigeeNetwork", NetworkArgs.builder()
                .name("apigee-network")
                .build());
    
            var apigeeRange = new GlobalAddress("apigeeRange", GlobalAddressArgs.builder()
                .name("apigee-range")
                .purpose("VPC_PEERING")
                .addressType("INTERNAL")
                .prefixLength(16)
                .network(apigeeNetwork.id())
                .build());
    
            var apigeeVpcConnection = new Connection("apigeeVpcConnection", ConnectionArgs.builder()
                .network(apigeeNetwork.id())
                .service("servicenetworking.googleapis.com")
                .reservedPeeringRanges(apigeeRange.name())
                .build());
    
            var apigeeOrg = new Organization("apigeeOrg", OrganizationArgs.builder()
                .analyticsRegion("us-central1")
                .projectId(current.project())
                .authorizedNetwork(apigeeNetwork.id())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(apigeeVpcConnection)
                    .build());
    
            var apigeeOrgSecurityAddonsConfig = new AddonsConfig("apigeeOrgSecurityAddonsConfig", AddonsConfigArgs.builder()
                .org(apigeeOrg.name())
                .addonsConfig(AddonsConfigAddonsConfigArgs.builder()
                    .apiSecurityConfig(AddonsConfigAddonsConfigApiSecurityConfigArgs.builder()
                        .enabled(true)
                        .build())
                    .build())
                .build());
    
            var securityProfileV2 = new SecurityProfileV2("securityProfileV2", SecurityProfileV2Args.builder()
                .profileId("my-profile")
                .orgId(apigeeOrg.id())
                .description("terraform test description")
                .profileAssessmentConfigs(            
                    SecurityProfileV2ProfileAssessmentConfigArgs.builder()
                        .assessment("auth-policies-check")
                        .weight("MAJOR")
                        .build(),
                    SecurityProfileV2ProfileAssessmentConfigArgs.builder()
                        .assessment("mediation-policies-check")
                        .weight("MODERATE")
                        .build(),
                    SecurityProfileV2ProfileAssessmentConfigArgs.builder()
                        .assessment("threat-policies-check")
                        .weight("MINOR")
                        .build())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(apigeeOrgSecurityAddonsConfig)
                    .build());
    
        }
    }
    
    resources:
      apigeeNetwork:
        type: gcp:compute:Network
        name: apigee_network
        properties:
          name: apigee-network
      apigeeRange:
        type: gcp:compute:GlobalAddress
        name: apigee_range
        properties:
          name: apigee-range
          purpose: VPC_PEERING
          addressType: INTERNAL
          prefixLength: 16
          network: ${apigeeNetwork.id}
      apigeeVpcConnection:
        type: gcp:servicenetworking:Connection
        name: apigee_vpc_connection
        properties:
          network: ${apigeeNetwork.id}
          service: servicenetworking.googleapis.com
          reservedPeeringRanges:
            - ${apigeeRange.name}
      apigeeOrg:
        type: gcp:apigee:Organization
        name: apigee_org
        properties:
          analyticsRegion: us-central1
          projectId: ${current.project}
          authorizedNetwork: ${apigeeNetwork.id}
        options:
          dependsOn:
            - ${apigeeVpcConnection}
      apigeeOrgSecurityAddonsConfig:
        type: gcp:apigee:AddonsConfig
        name: apigee_org_security_addons_config
        properties:
          org: ${apigeeOrg.name}
          addonsConfig:
            apiSecurityConfig:
              enabled: true
      securityProfileV2:
        type: gcp:apigee:SecurityProfileV2
        name: security_profile_v2
        properties:
          profileId: my-profile
          orgId: ${apigeeOrg.id}
          description: terraform test description
          profileAssessmentConfigs:
            - assessment: auth-policies-check
              weight: MAJOR
            - assessment: mediation-policies-check
              weight: MODERATE
            - assessment: threat-policies-check
              weight: MINOR
        options:
          dependsOn:
            - ${apigeeOrgSecurityAddonsConfig}
    variables:
      current:
        fn::invoke:
          function: gcp:organizations:getClientConfig
          arguments: {}
    

    Create SecurityProfileV2 Resource

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

    Constructor syntax

    new SecurityProfileV2(name: string, args: SecurityProfileV2Args, opts?: CustomResourceOptions);
    @overload
    def SecurityProfileV2(resource_name: str,
                          args: SecurityProfileV2Args,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def SecurityProfileV2(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          org_id: Optional[str] = None,
                          profile_assessment_configs: Optional[Sequence[SecurityProfileV2ProfileAssessmentConfigArgs]] = None,
                          profile_id: Optional[str] = None,
                          description: Optional[str] = None)
    func NewSecurityProfileV2(ctx *Context, name string, args SecurityProfileV2Args, opts ...ResourceOption) (*SecurityProfileV2, error)
    public SecurityProfileV2(string name, SecurityProfileV2Args args, CustomResourceOptions? opts = null)
    public SecurityProfileV2(String name, SecurityProfileV2Args args)
    public SecurityProfileV2(String name, SecurityProfileV2Args args, CustomResourceOptions options)
    
    type: gcp:apigee:SecurityProfileV2
    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 SecurityProfileV2Args
    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 SecurityProfileV2Args
    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 SecurityProfileV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityProfileV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityProfileV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var securityProfileV2Resource = new Gcp.Apigee.SecurityProfileV2("securityProfileV2Resource", new()
    {
        OrgId = "string",
        ProfileAssessmentConfigs = new[]
        {
            new Gcp.Apigee.Inputs.SecurityProfileV2ProfileAssessmentConfigArgs
            {
                Assessment = "string",
                Weight = "string",
            },
        },
        ProfileId = "string",
        Description = "string",
    });
    
    example, err := apigee.NewSecurityProfileV2(ctx, "securityProfileV2Resource", &apigee.SecurityProfileV2Args{
    	OrgId: pulumi.String("string"),
    	ProfileAssessmentConfigs: apigee.SecurityProfileV2ProfileAssessmentConfigArray{
    		&apigee.SecurityProfileV2ProfileAssessmentConfigArgs{
    			Assessment: pulumi.String("string"),
    			Weight:     pulumi.String("string"),
    		},
    	},
    	ProfileId:   pulumi.String("string"),
    	Description: pulumi.String("string"),
    })
    
    var securityProfileV2Resource = new SecurityProfileV2("securityProfileV2Resource", SecurityProfileV2Args.builder()
        .orgId("string")
        .profileAssessmentConfigs(SecurityProfileV2ProfileAssessmentConfigArgs.builder()
            .assessment("string")
            .weight("string")
            .build())
        .profileId("string")
        .description("string")
        .build());
    
    security_profile_v2_resource = gcp.apigee.SecurityProfileV2("securityProfileV2Resource",
        org_id="string",
        profile_assessment_configs=[{
            "assessment": "string",
            "weight": "string",
        }],
        profile_id="string",
        description="string")
    
    const securityProfileV2Resource = new gcp.apigee.SecurityProfileV2("securityProfileV2Resource", {
        orgId: "string",
        profileAssessmentConfigs: [{
            assessment: "string",
            weight: "string",
        }],
        profileId: "string",
        description: "string",
    });
    
    type: gcp:apigee:SecurityProfileV2
    properties:
        description: string
        orgId: string
        profileAssessmentConfigs:
            - assessment: string
              weight: string
        profileId: string
    

    SecurityProfileV2 Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SecurityProfileV2 resource accepts the following input properties:

    OrgId string
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    ProfileAssessmentConfigs List<SecurityProfileV2ProfileAssessmentConfig>
    A map of the assessment name and the assessment config. Structure is documented below.
    ProfileId string
    Resource ID of the security profile.
    Description string
    Description of the security profile.
    OrgId string
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    ProfileAssessmentConfigs []SecurityProfileV2ProfileAssessmentConfigArgs
    A map of the assessment name and the assessment config. Structure is documented below.
    ProfileId string
    Resource ID of the security profile.
    Description string
    Description of the security profile.
    orgId String
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    profileAssessmentConfigs List<SecurityProfileV2ProfileAssessmentConfig>
    A map of the assessment name and the assessment config. Structure is documented below.
    profileId String
    Resource ID of the security profile.
    description String
    Description of the security profile.
    orgId string
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    profileAssessmentConfigs SecurityProfileV2ProfileAssessmentConfig[]
    A map of the assessment name and the assessment config. Structure is documented below.
    profileId string
    Resource ID of the security profile.
    description string
    Description of the security profile.
    org_id str
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    profile_assessment_configs Sequence[SecurityProfileV2ProfileAssessmentConfigArgs]
    A map of the assessment name and the assessment config. Structure is documented below.
    profile_id str
    Resource ID of the security profile.
    description str
    Description of the security profile.
    orgId String
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    profileAssessmentConfigs List<Property Map>
    A map of the assessment name and the assessment config. Structure is documented below.
    profileId String
    Resource ID of the security profile.
    description String
    Description of the security profile.

    Outputs

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

    CreateTime string
    The timestamp at which this profile was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    UpdateTime string
    The timestamp at which this profile was most recently updated.
    CreateTime string
    The timestamp at which this profile was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    UpdateTime string
    The timestamp at which this profile was most recently updated.
    createTime String
    The timestamp at which this profile was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    updateTime String
    The timestamp at which this profile was most recently updated.
    createTime string
    The timestamp at which this profile was created.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    updateTime string
    The timestamp at which this profile was most recently updated.
    create_time str
    The timestamp at which this profile was created.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    update_time str
    The timestamp at which this profile was most recently updated.
    createTime String
    The timestamp at which this profile was created.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    updateTime String
    The timestamp at which this profile was most recently updated.

    Look up Existing SecurityProfileV2 Resource

    Get an existing SecurityProfileV2 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?: SecurityProfileV2State, opts?: CustomResourceOptions): SecurityProfileV2
    @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,
            org_id: Optional[str] = None,
            profile_assessment_configs: Optional[Sequence[SecurityProfileV2ProfileAssessmentConfigArgs]] = None,
            profile_id: Optional[str] = None,
            update_time: Optional[str] = None) -> SecurityProfileV2
    func GetSecurityProfileV2(ctx *Context, name string, id IDInput, state *SecurityProfileV2State, opts ...ResourceOption) (*SecurityProfileV2, error)
    public static SecurityProfileV2 Get(string name, Input<string> id, SecurityProfileV2State? state, CustomResourceOptions? opts = null)
    public static SecurityProfileV2 get(String name, Output<String> id, SecurityProfileV2State state, CustomResourceOptions options)
    resources:  _:    type: gcp:apigee:SecurityProfileV2    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CreateTime string
    The timestamp at which this profile was created.
    Description string
    Description of the security profile.
    Name string
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    OrgId string
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    ProfileAssessmentConfigs List<SecurityProfileV2ProfileAssessmentConfig>
    A map of the assessment name and the assessment config. Structure is documented below.
    ProfileId string
    Resource ID of the security profile.
    UpdateTime string
    The timestamp at which this profile was most recently updated.
    CreateTime string
    The timestamp at which this profile was created.
    Description string
    Description of the security profile.
    Name string
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    OrgId string
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    ProfileAssessmentConfigs []SecurityProfileV2ProfileAssessmentConfigArgs
    A map of the assessment name and the assessment config. Structure is documented below.
    ProfileId string
    Resource ID of the security profile.
    UpdateTime string
    The timestamp at which this profile was most recently updated.
    createTime String
    The timestamp at which this profile was created.
    description String
    Description of the security profile.
    name String
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    orgId String
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    profileAssessmentConfigs List<SecurityProfileV2ProfileAssessmentConfig>
    A map of the assessment name and the assessment config. Structure is documented below.
    profileId String
    Resource ID of the security profile.
    updateTime String
    The timestamp at which this profile was most recently updated.
    createTime string
    The timestamp at which this profile was created.
    description string
    Description of the security profile.
    name string
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    orgId string
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    profileAssessmentConfigs SecurityProfileV2ProfileAssessmentConfig[]
    A map of the assessment name and the assessment config. Structure is documented below.
    profileId string
    Resource ID of the security profile.
    updateTime string
    The timestamp at which this profile was most recently updated.
    create_time str
    The timestamp at which this profile was created.
    description str
    Description of the security profile.
    name str
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    org_id str
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    profile_assessment_configs Sequence[SecurityProfileV2ProfileAssessmentConfigArgs]
    A map of the assessment name and the assessment config. Structure is documented below.
    profile_id str
    Resource ID of the security profile.
    update_time str
    The timestamp at which this profile was most recently updated.
    createTime String
    The timestamp at which this profile was created.
    description String
    Description of the security profile.
    name String
    Name of the security profile v2 resource, in the format organizations/{{org_name}}/securityProfilesV2/{{profile_id}}.
    orgId String
    The Apigee Organization associated with the Apigee Security Profile V2, in the format organizations/{{org_name}}.
    profileAssessmentConfigs List<Property Map>
    A map of the assessment name and the assessment config. Structure is documented below.
    profileId String
    Resource ID of the security profile.
    updateTime String
    The timestamp at which this profile was most recently updated.

    Supporting Types

    SecurityProfileV2ProfileAssessmentConfig, SecurityProfileV2ProfileAssessmentConfigArgs

    Assessment string
    The identifier for this object. Format specified above.
    Weight string
    The weight of the assessment. Possible values are: MINOR, MODERATE, MAJOR.


    Assessment string
    The identifier for this object. Format specified above.
    Weight string
    The weight of the assessment. Possible values are: MINOR, MODERATE, MAJOR.


    assessment String
    The identifier for this object. Format specified above.
    weight String
    The weight of the assessment. Possible values are: MINOR, MODERATE, MAJOR.


    assessment string
    The identifier for this object. Format specified above.
    weight string
    The weight of the assessment. Possible values are: MINOR, MODERATE, MAJOR.


    assessment str
    The identifier for this object. Format specified above.
    weight str
    The weight of the assessment. Possible values are: MINOR, MODERATE, MAJOR.


    assessment String
    The identifier for this object. Format specified above.
    weight String
    The weight of the assessment. Possible values are: MINOR, MODERATE, MAJOR.


    Import

    SecurityProfileV2 can be imported using any of these accepted formats:

    • {{org_id}}/securityProfilesV2/{{profile_id}}

    • {{org_id}}/{{profile_id}}

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

    $ pulumi import gcp:apigee/securityProfileV2:SecurityProfileV2 default {{org_id}}/securityProfilesV2/{{profile_id}}
    
    $ pulumi import gcp:apigee/securityProfileV2:SecurityProfileV2 default {{org_id}}/{{profile_id}}
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud v8.31.0 published on Thursday, May 15, 2025 by Pulumi