1. Packages
  2. Tencentcloud Provider
  3. API Docs
  4. GaapSecurityPolicy
tencentcloud 1.81.187 published on Monday, Apr 28, 2025 by tencentcloudstack

tencentcloud.GaapSecurityPolicy

Explore with Pulumi AI

Provides a resource to create a security policy of GAAP proxy.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";

const fooGaapProxy = new tencentcloud.GaapProxy("fooGaapProxy", {
    bandwidth: 10,
    concurrent: 2,
    accessRegion: "SouthChina",
    realserverRegion: "NorthChina",
});
const fooGaapSecurityPolicy = new tencentcloud.GaapSecurityPolicy("fooGaapSecurityPolicy", {
    proxyId: fooGaapProxy.gaapProxyId,
    action: "DROP",
});
Copy
import pulumi
import pulumi_tencentcloud as tencentcloud

foo_gaap_proxy = tencentcloud.GaapProxy("fooGaapProxy",
    bandwidth=10,
    concurrent=2,
    access_region="SouthChina",
    realserver_region="NorthChina")
foo_gaap_security_policy = tencentcloud.GaapSecurityPolicy("fooGaapSecurityPolicy",
    proxy_id=foo_gaap_proxy.gaap_proxy_id,
    action="DROP")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		fooGaapProxy, err := tencentcloud.NewGaapProxy(ctx, "fooGaapProxy", &tencentcloud.GaapProxyArgs{
			Bandwidth:        pulumi.Float64(10),
			Concurrent:       pulumi.Float64(2),
			AccessRegion:     pulumi.String("SouthChina"),
			RealserverRegion: pulumi.String("NorthChina"),
		})
		if err != nil {
			return err
		}
		_, err = tencentcloud.NewGaapSecurityPolicy(ctx, "fooGaapSecurityPolicy", &tencentcloud.GaapSecurityPolicyArgs{
			ProxyId: fooGaapProxy.GaapProxyId,
			Action:  pulumi.String("DROP"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;

return await Deployment.RunAsync(() => 
{
    var fooGaapProxy = new Tencentcloud.GaapProxy("fooGaapProxy", new()
    {
        Bandwidth = 10,
        Concurrent = 2,
        AccessRegion = "SouthChina",
        RealserverRegion = "NorthChina",
    });

    var fooGaapSecurityPolicy = new Tencentcloud.GaapSecurityPolicy("fooGaapSecurityPolicy", new()
    {
        ProxyId = fooGaapProxy.GaapProxyId,
        Action = "DROP",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.GaapProxy;
import com.pulumi.tencentcloud.GaapProxyArgs;
import com.pulumi.tencentcloud.GaapSecurityPolicy;
import com.pulumi.tencentcloud.GaapSecurityPolicyArgs;
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 fooGaapProxy = new GaapProxy("fooGaapProxy", GaapProxyArgs.builder()
            .bandwidth(10)
            .concurrent(2)
            .accessRegion("SouthChina")
            .realserverRegion("NorthChina")
            .build());

        var fooGaapSecurityPolicy = new GaapSecurityPolicy("fooGaapSecurityPolicy", GaapSecurityPolicyArgs.builder()
            .proxyId(fooGaapProxy.gaapProxyId())
            .action("DROP")
            .build());

    }
}
Copy
resources:
  fooGaapProxy:
    type: tencentcloud:GaapProxy
    properties:
      bandwidth: 10
      concurrent: 2
      accessRegion: SouthChina
      realserverRegion: NorthChina
  fooGaapSecurityPolicy:
    type: tencentcloud:GaapSecurityPolicy
    properties:
      proxyId: ${fooGaapProxy.gaapProxyId}
      action: DROP
Copy

Create GaapSecurityPolicy Resource

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

Constructor syntax

new GaapSecurityPolicy(name: string, args: GaapSecurityPolicyArgs, opts?: CustomResourceOptions);
@overload
def GaapSecurityPolicy(resource_name: str,
                       args: GaapSecurityPolicyArgs,
                       opts: Optional[ResourceOptions] = None)

@overload
def GaapSecurityPolicy(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       action: Optional[str] = None,
                       proxy_id: Optional[str] = None,
                       enable: Optional[bool] = None,
                       gaap_security_policy_id: Optional[str] = None)
func NewGaapSecurityPolicy(ctx *Context, name string, args GaapSecurityPolicyArgs, opts ...ResourceOption) (*GaapSecurityPolicy, error)
public GaapSecurityPolicy(string name, GaapSecurityPolicyArgs args, CustomResourceOptions? opts = null)
public GaapSecurityPolicy(String name, GaapSecurityPolicyArgs args)
public GaapSecurityPolicy(String name, GaapSecurityPolicyArgs args, CustomResourceOptions options)
type: tencentcloud:GaapSecurityPolicy
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. GaapSecurityPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. GaapSecurityPolicyArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. GaapSecurityPolicyArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. GaapSecurityPolicyArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. GaapSecurityPolicyArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

GaapSecurityPolicy 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 GaapSecurityPolicy resource accepts the following input properties:

Action This property is required. string
Default policy. Valid value: ACCEPT and DROP.
ProxyId This property is required. string
ID of the GAAP proxy.
Enable bool
Indicates whether policy is enable, default value is true.
GaapSecurityPolicyId string
ID of the resource.
Action This property is required. string
Default policy. Valid value: ACCEPT and DROP.
ProxyId This property is required. string
ID of the GAAP proxy.
Enable bool
Indicates whether policy is enable, default value is true.
GaapSecurityPolicyId string
ID of the resource.
action This property is required. String
Default policy. Valid value: ACCEPT and DROP.
proxyId This property is required. String
ID of the GAAP proxy.
enable Boolean
Indicates whether policy is enable, default value is true.
gaapSecurityPolicyId String
ID of the resource.
action This property is required. string
Default policy. Valid value: ACCEPT and DROP.
proxyId This property is required. string
ID of the GAAP proxy.
enable boolean
Indicates whether policy is enable, default value is true.
gaapSecurityPolicyId string
ID of the resource.
action This property is required. str
Default policy. Valid value: ACCEPT and DROP.
proxy_id This property is required. str
ID of the GAAP proxy.
enable bool
Indicates whether policy is enable, default value is true.
gaap_security_policy_id str
ID of the resource.
action This property is required. String
Default policy. Valid value: ACCEPT and DROP.
proxyId This property is required. String
ID of the GAAP proxy.
enable Boolean
Indicates whether policy is enable, default value is true.
gaapSecurityPolicyId String
ID of the resource.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Id string
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.
id string
The provider-assigned unique ID for this managed resource.
id str
The provider-assigned unique ID for this managed resource.
id String
The provider-assigned unique ID for this managed resource.

Look up Existing GaapSecurityPolicy Resource

Get an existing GaapSecurityPolicy 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?: GaapSecurityPolicyState, opts?: CustomResourceOptions): GaapSecurityPolicy
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        action: Optional[str] = None,
        enable: Optional[bool] = None,
        gaap_security_policy_id: Optional[str] = None,
        proxy_id: Optional[str] = None) -> GaapSecurityPolicy
func GetGaapSecurityPolicy(ctx *Context, name string, id IDInput, state *GaapSecurityPolicyState, opts ...ResourceOption) (*GaapSecurityPolicy, error)
public static GaapSecurityPolicy Get(string name, Input<string> id, GaapSecurityPolicyState? state, CustomResourceOptions? opts = null)
public static GaapSecurityPolicy get(String name, Output<String> id, GaapSecurityPolicyState state, CustomResourceOptions options)
resources:  _:    type: tencentcloud:GaapSecurityPolicy    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
Action string
Default policy. Valid value: ACCEPT and DROP.
Enable bool
Indicates whether policy is enable, default value is true.
GaapSecurityPolicyId string
ID of the resource.
ProxyId string
ID of the GAAP proxy.
Action string
Default policy. Valid value: ACCEPT and DROP.
Enable bool
Indicates whether policy is enable, default value is true.
GaapSecurityPolicyId string
ID of the resource.
ProxyId string
ID of the GAAP proxy.
action String
Default policy. Valid value: ACCEPT and DROP.
enable Boolean
Indicates whether policy is enable, default value is true.
gaapSecurityPolicyId String
ID of the resource.
proxyId String
ID of the GAAP proxy.
action string
Default policy. Valid value: ACCEPT and DROP.
enable boolean
Indicates whether policy is enable, default value is true.
gaapSecurityPolicyId string
ID of the resource.
proxyId string
ID of the GAAP proxy.
action str
Default policy. Valid value: ACCEPT and DROP.
enable bool
Indicates whether policy is enable, default value is true.
gaap_security_policy_id str
ID of the resource.
proxy_id str
ID of the GAAP proxy.
action String
Default policy. Valid value: ACCEPT and DROP.
enable Boolean
Indicates whether policy is enable, default value is true.
gaapSecurityPolicyId String
ID of the resource.
proxyId String
ID of the GAAP proxy.

Import

GAAP security policy can be imported using the id, e.g.

$ pulumi import tencentcloud:index/gaapSecurityPolicy:GaapSecurityPolicy  tencentcloud_gaap_security_policy.foo pl-xxxx
Copy

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

Package Details

Repository
tencentcloud tencentcloudstack/terraform-provider-tencentcloud
License
Notes
This Pulumi package is based on the tencentcloud Terraform Provider.