1. Packages
  2. Konnect Provider
  3. API Docs
  4. GatewayPluginAiAzureContentSafety
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

konnect.GatewayPluginAiAzureContentSafety

Explore with Pulumi AI

konnect logo
konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong

    GatewayPluginAiAzureContentSafety Resource

    Example Usage

    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    Coming soon!
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.konnect.GatewayPluginAiAzureContentSafety;
    import com.pulumi.konnect.GatewayPluginAiAzureContentSafetyArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiAzureContentSafetyConfigArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiAzureContentSafetyOrderingArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiAzureContentSafetyOrderingAfterArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiAzureContentSafetyOrderingBeforeArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiAzureContentSafetyRouteArgs;
    import com.pulumi.konnect.inputs.GatewayPluginAiAzureContentSafetyServiceArgs;
    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 myGatewaypluginaiazurecontentsafety = new GatewayPluginAiAzureContentSafety("myGatewaypluginaiazurecontentsafety", GatewayPluginAiAzureContentSafetyArgs.builder()
                .config(GatewayPluginAiAzureContentSafetyConfigArgs.builder()
                    .azure_api_version("...my_azure_api_version...")
                    .azure_client_id("...my_azure_client_id...")
                    .azure_client_secret("...my_azure_client_secret...")
                    .azure_tenant_id("...my_azure_tenant_id...")
                    .azure_use_managed_identity(true)
                    .blocklist_names("...")
                    .categories(GatewayPluginAiAzureContentSafetyConfigCategoryArgs.builder()
                        .name("...my_name...")
                        .rejectionLevel(9)
                        .build())
                    .content_safety_key("...my_content_safety_key...")
                    .content_safety_url("...my_content_safety_url...")
                    .halt_on_blocklist_hit(false)
                    .output_type("FourSeverityLevels")
                    .reveal_failure_reason(false)
                    .text_source("concatenate_user_content")
                    .build())
                .controlPlaneId("9524ec7d-36d9-465d-a8c5-83a3c9390458")
                .enabled(true)
                .gatewayPluginAiAzureContentSafetyId("...my_id...")
                .instanceName("...my_instance_name...")
                .ordering(GatewayPluginAiAzureContentSafetyOrderingArgs.builder()
                    .after(GatewayPluginAiAzureContentSafetyOrderingAfterArgs.builder()
                        .access("...")
                        .build())
                    .before(GatewayPluginAiAzureContentSafetyOrderingBeforeArgs.builder()
                        .access("...")
                        .build())
                    .build())
                .protocols("https")
                .route(GatewayPluginAiAzureContentSafetyRouteArgs.builder()
                    .id("...my_id...")
                    .build())
                .service(GatewayPluginAiAzureContentSafetyServiceArgs.builder()
                    .id("...my_id...")
                    .build())
                .tags("...")
                .build());
    
        }
    }
    
    resources:
      myGatewaypluginaiazurecontentsafety:
        type: konnect:GatewayPluginAiAzureContentSafety
        properties:
          config:
            azure_api_version: '...my_azure_api_version...'
            azure_client_id: '...my_azure_client_id...'
            azure_client_secret: '...my_azure_client_secret...'
            azure_tenant_id: '...my_azure_tenant_id...'
            azure_use_managed_identity: true
            blocklist_names:
              - '...'
            categories:
              - name: '...my_name...'
                rejectionLevel: 9
            content_safety_key: '...my_content_safety_key...'
            content_safety_url: '...my_content_safety_url...'
            halt_on_blocklist_hit: false
            output_type: FourSeverityLevels
            reveal_failure_reason: false
            text_source: concatenate_user_content
          controlPlaneId: 9524ec7d-36d9-465d-a8c5-83a3c9390458
          enabled: true
          gatewayPluginAiAzureContentSafetyId: '...my_id...'
          instanceName: '...my_instance_name...'
          ordering:
            after:
              access:
                - '...'
            before:
              access:
                - '...'
          protocols:
            - https
          route:
            id: '...my_id...'
          service:
            id: '...my_id...'
          tags:
            - '...'
    

    Create GatewayPluginAiAzureContentSafety Resource

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

    Constructor syntax

    new GatewayPluginAiAzureContentSafety(name: string, args: GatewayPluginAiAzureContentSafetyArgs, opts?: CustomResourceOptions);
    @overload
    def GatewayPluginAiAzureContentSafety(resource_name: str,
                                          args: GatewayPluginAiAzureContentSafetyArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def GatewayPluginAiAzureContentSafety(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          config: Optional[GatewayPluginAiAzureContentSafetyConfigArgs] = None,
                                          control_plane_id: Optional[str] = None,
                                          enabled: Optional[bool] = None,
                                          gateway_plugin_ai_azure_content_safety_id: Optional[str] = None,
                                          instance_name: Optional[str] = None,
                                          ordering: Optional[GatewayPluginAiAzureContentSafetyOrderingArgs] = None,
                                          protocols: Optional[Sequence[str]] = None,
                                          route: Optional[GatewayPluginAiAzureContentSafetyRouteArgs] = None,
                                          service: Optional[GatewayPluginAiAzureContentSafetyServiceArgs] = None,
                                          tags: Optional[Sequence[str]] = None)
    func NewGatewayPluginAiAzureContentSafety(ctx *Context, name string, args GatewayPluginAiAzureContentSafetyArgs, opts ...ResourceOption) (*GatewayPluginAiAzureContentSafety, error)
    public GatewayPluginAiAzureContentSafety(string name, GatewayPluginAiAzureContentSafetyArgs args, CustomResourceOptions? opts = null)
    public GatewayPluginAiAzureContentSafety(String name, GatewayPluginAiAzureContentSafetyArgs args)
    public GatewayPluginAiAzureContentSafety(String name, GatewayPluginAiAzureContentSafetyArgs args, CustomResourceOptions options)
    
    type: konnect:GatewayPluginAiAzureContentSafety
    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 GatewayPluginAiAzureContentSafetyArgs
    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 GatewayPluginAiAzureContentSafetyArgs
    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 GatewayPluginAiAzureContentSafetyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GatewayPluginAiAzureContentSafetyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GatewayPluginAiAzureContentSafetyArgs
    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 gatewayPluginAiAzureContentSafetyResource = new Konnect.GatewayPluginAiAzureContentSafety("gatewayPluginAiAzureContentSafetyResource", new()
    {
        Config = new Konnect.Inputs.GatewayPluginAiAzureContentSafetyConfigArgs
        {
            AzureApiVersion = "string",
            AzureClientId = "string",
            AzureClientSecret = "string",
            AzureTenantId = "string",
            AzureUseManagedIdentity = false,
            BlocklistNames = new[]
            {
                "string",
            },
            Categories = new[]
            {
                new Konnect.Inputs.GatewayPluginAiAzureContentSafetyConfigCategoryArgs
                {
                    Name = "string",
                    RejectionLevel = 0,
                },
            },
            ContentSafetyKey = "string",
            ContentSafetyUrl = "string",
            HaltOnBlocklistHit = false,
            OutputType = "string",
            RevealFailureReason = false,
            TextSource = "string",
        },
        ControlPlaneId = "string",
        Enabled = false,
        GatewayPluginAiAzureContentSafetyId = "string",
        InstanceName = "string",
        Ordering = new Konnect.Inputs.GatewayPluginAiAzureContentSafetyOrderingArgs
        {
            After = new Konnect.Inputs.GatewayPluginAiAzureContentSafetyOrderingAfterArgs
            {
                Accesses = new[]
                {
                    "string",
                },
            },
            Before = new Konnect.Inputs.GatewayPluginAiAzureContentSafetyOrderingBeforeArgs
            {
                Accesses = new[]
                {
                    "string",
                },
            },
        },
        Protocols = new[]
        {
            "string",
        },
        Route = new Konnect.Inputs.GatewayPluginAiAzureContentSafetyRouteArgs
        {
            Id = "string",
        },
        Service = new Konnect.Inputs.GatewayPluginAiAzureContentSafetyServiceArgs
        {
            Id = "string",
        },
        Tags = new[]
        {
            "string",
        },
    });
    
    example, err := konnect.NewGatewayPluginAiAzureContentSafety(ctx, "gatewayPluginAiAzureContentSafetyResource", &konnect.GatewayPluginAiAzureContentSafetyArgs{
    Config: &.GatewayPluginAiAzureContentSafetyConfigArgs{
    AzureApiVersion: pulumi.String("string"),
    AzureClientId: pulumi.String("string"),
    AzureClientSecret: pulumi.String("string"),
    AzureTenantId: pulumi.String("string"),
    AzureUseManagedIdentity: pulumi.Bool(false),
    BlocklistNames: pulumi.StringArray{
    pulumi.String("string"),
    },
    Categories: .GatewayPluginAiAzureContentSafetyConfigCategoryArray{
    &.GatewayPluginAiAzureContentSafetyConfigCategoryArgs{
    Name: pulumi.String("string"),
    RejectionLevel: pulumi.Float64(0),
    },
    },
    ContentSafetyKey: pulumi.String("string"),
    ContentSafetyUrl: pulumi.String("string"),
    HaltOnBlocklistHit: pulumi.Bool(false),
    OutputType: pulumi.String("string"),
    RevealFailureReason: pulumi.Bool(false),
    TextSource: pulumi.String("string"),
    },
    ControlPlaneId: pulumi.String("string"),
    Enabled: pulumi.Bool(false),
    GatewayPluginAiAzureContentSafetyId: pulumi.String("string"),
    InstanceName: pulumi.String("string"),
    Ordering: &.GatewayPluginAiAzureContentSafetyOrderingArgs{
    After: &.GatewayPluginAiAzureContentSafetyOrderingAfterArgs{
    Accesses: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    Before: &.GatewayPluginAiAzureContentSafetyOrderingBeforeArgs{
    Accesses: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    },
    Protocols: pulumi.StringArray{
    pulumi.String("string"),
    },
    Route: &.GatewayPluginAiAzureContentSafetyRouteArgs{
    Id: pulumi.String("string"),
    },
    Service: &.GatewayPluginAiAzureContentSafetyServiceArgs{
    Id: pulumi.String("string"),
    },
    Tags: pulumi.StringArray{
    pulumi.String("string"),
    },
    })
    
    var gatewayPluginAiAzureContentSafetyResource = new GatewayPluginAiAzureContentSafety("gatewayPluginAiAzureContentSafetyResource", GatewayPluginAiAzureContentSafetyArgs.builder()
        .config(GatewayPluginAiAzureContentSafetyConfigArgs.builder()
            .azureApiVersion("string")
            .azureClientId("string")
            .azureClientSecret("string")
            .azureTenantId("string")
            .azureUseManagedIdentity(false)
            .blocklistNames("string")
            .categories(GatewayPluginAiAzureContentSafetyConfigCategoryArgs.builder()
                .name("string")
                .rejectionLevel(0)
                .build())
            .contentSafetyKey("string")
            .contentSafetyUrl("string")
            .haltOnBlocklistHit(false)
            .outputType("string")
            .revealFailureReason(false)
            .textSource("string")
            .build())
        .controlPlaneId("string")
        .enabled(false)
        .gatewayPluginAiAzureContentSafetyId("string")
        .instanceName("string")
        .ordering(GatewayPluginAiAzureContentSafetyOrderingArgs.builder()
            .after(GatewayPluginAiAzureContentSafetyOrderingAfterArgs.builder()
                .accesses("string")
                .build())
            .before(GatewayPluginAiAzureContentSafetyOrderingBeforeArgs.builder()
                .accesses("string")
                .build())
            .build())
        .protocols("string")
        .route(GatewayPluginAiAzureContentSafetyRouteArgs.builder()
            .id("string")
            .build())
        .service(GatewayPluginAiAzureContentSafetyServiceArgs.builder()
            .id("string")
            .build())
        .tags("string")
        .build());
    
    gateway_plugin_ai_azure_content_safety_resource = konnect.GatewayPluginAiAzureContentSafety("gatewayPluginAiAzureContentSafetyResource",
        config={
            "azure_api_version": "string",
            "azure_client_id": "string",
            "azure_client_secret": "string",
            "azure_tenant_id": "string",
            "azure_use_managed_identity": False,
            "blocklist_names": ["string"],
            "categories": [{
                "name": "string",
                "rejection_level": 0,
            }],
            "content_safety_key": "string",
            "content_safety_url": "string",
            "halt_on_blocklist_hit": False,
            "output_type": "string",
            "reveal_failure_reason": False,
            "text_source": "string",
        },
        control_plane_id="string",
        enabled=False,
        gateway_plugin_ai_azure_content_safety_id="string",
        instance_name="string",
        ordering={
            "after": {
                "accesses": ["string"],
            },
            "before": {
                "accesses": ["string"],
            },
        },
        protocols=["string"],
        route={
            "id": "string",
        },
        service={
            "id": "string",
        },
        tags=["string"])
    
    const gatewayPluginAiAzureContentSafetyResource = new konnect.GatewayPluginAiAzureContentSafety("gatewayPluginAiAzureContentSafetyResource", {
        config: {
            azureApiVersion: "string",
            azureClientId: "string",
            azureClientSecret: "string",
            azureTenantId: "string",
            azureUseManagedIdentity: false,
            blocklistNames: ["string"],
            categories: [{
                name: "string",
                rejectionLevel: 0,
            }],
            contentSafetyKey: "string",
            contentSafetyUrl: "string",
            haltOnBlocklistHit: false,
            outputType: "string",
            revealFailureReason: false,
            textSource: "string",
        },
        controlPlaneId: "string",
        enabled: false,
        gatewayPluginAiAzureContentSafetyId: "string",
        instanceName: "string",
        ordering: {
            after: {
                accesses: ["string"],
            },
            before: {
                accesses: ["string"],
            },
        },
        protocols: ["string"],
        route: {
            id: "string",
        },
        service: {
            id: "string",
        },
        tags: ["string"],
    });
    
    type: konnect:GatewayPluginAiAzureContentSafety
    properties:
        config:
            azureApiVersion: string
            azureClientId: string
            azureClientSecret: string
            azureTenantId: string
            azureUseManagedIdentity: false
            blocklistNames:
                - string
            categories:
                - name: string
                  rejectionLevel: 0
            contentSafetyKey: string
            contentSafetyUrl: string
            haltOnBlocklistHit: false
            outputType: string
            revealFailureReason: false
            textSource: string
        controlPlaneId: string
        enabled: false
        gatewayPluginAiAzureContentSafetyId: string
        instanceName: string
        ordering:
            after:
                accesses:
                    - string
            before:
                accesses:
                    - string
        protocols:
            - string
        route:
            id: string
        service:
            id: string
        tags:
            - string
    

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

    Config GatewayPluginAiAzureContentSafetyConfig
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginAiAzureContentSafetyId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginAiAzureContentSafetyOrdering
    Protocols List<string>
    A set of strings representing HTTP protocols.
    Route GatewayPluginAiAzureContentSafetyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginAiAzureContentSafetyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    Config GatewayPluginAiAzureContentSafetyConfigArgs
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginAiAzureContentSafetyId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginAiAzureContentSafetyOrderingArgs
    Protocols []string
    A set of strings representing HTTP protocols.
    Route GatewayPluginAiAzureContentSafetyRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginAiAzureContentSafetyServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    config GatewayPluginAiAzureContentSafetyConfig
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginAiAzureContentSafetyId String
    The ID of this resource.
    instanceName String
    ordering GatewayPluginAiAzureContentSafetyOrdering
    protocols List<String>
    A set of strings representing HTTP protocols.
    route GatewayPluginAiAzureContentSafetyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiAzureContentSafetyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    config GatewayPluginAiAzureContentSafetyConfig
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    enabled boolean
    Whether the plugin is applied.
    gatewayPluginAiAzureContentSafetyId string
    The ID of this resource.
    instanceName string
    ordering GatewayPluginAiAzureContentSafetyOrdering
    protocols string[]
    A set of strings representing HTTP protocols.
    route GatewayPluginAiAzureContentSafetyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiAzureContentSafetyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    config GatewayPluginAiAzureContentSafetyConfigArgs
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    enabled bool
    Whether the plugin is applied.
    gateway_plugin_ai_azure_content_safety_id str
    The ID of this resource.
    instance_name str
    ordering GatewayPluginAiAzureContentSafetyOrderingArgs
    protocols Sequence[str]
    A set of strings representing HTTP protocols.
    route GatewayPluginAiAzureContentSafetyRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiAzureContentSafetyServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags Sequence[str]
    An optional set of strings associated with the Plugin for grouping and filtering.
    config Property Map
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginAiAzureContentSafetyId String
    The ID of this resource.
    instanceName String
    ordering Property Map
    protocols List<String>
    A set of strings representing HTTP protocols.
    route Property Map
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service Property Map
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.

    Outputs

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

    CreatedAt double
    Unix epoch when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    CreatedAt float64
    Unix epoch when the resource was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    createdAt Double
    Unix epoch when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt Double
    Unix epoch when the resource was last updated.
    createdAt number
    Unix epoch when the resource was created.
    id string
    The provider-assigned unique ID for this managed resource.
    updatedAt number
    Unix epoch when the resource was last updated.
    created_at float
    Unix epoch when the resource was created.
    id str
    The provider-assigned unique ID for this managed resource.
    updated_at float
    Unix epoch when the resource was last updated.
    createdAt Number
    Unix epoch when the resource was created.
    id String
    The provider-assigned unique ID for this managed resource.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Look up Existing GatewayPluginAiAzureContentSafety Resource

    Get an existing GatewayPluginAiAzureContentSafety 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?: GatewayPluginAiAzureContentSafetyState, opts?: CustomResourceOptions): GatewayPluginAiAzureContentSafety
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            config: Optional[GatewayPluginAiAzureContentSafetyConfigArgs] = None,
            control_plane_id: Optional[str] = None,
            created_at: Optional[float] = None,
            enabled: Optional[bool] = None,
            gateway_plugin_ai_azure_content_safety_id: Optional[str] = None,
            instance_name: Optional[str] = None,
            ordering: Optional[GatewayPluginAiAzureContentSafetyOrderingArgs] = None,
            protocols: Optional[Sequence[str]] = None,
            route: Optional[GatewayPluginAiAzureContentSafetyRouteArgs] = None,
            service: Optional[GatewayPluginAiAzureContentSafetyServiceArgs] = None,
            tags: Optional[Sequence[str]] = None,
            updated_at: Optional[float] = None) -> GatewayPluginAiAzureContentSafety
    func GetGatewayPluginAiAzureContentSafety(ctx *Context, name string, id IDInput, state *GatewayPluginAiAzureContentSafetyState, opts ...ResourceOption) (*GatewayPluginAiAzureContentSafety, error)
    public static GatewayPluginAiAzureContentSafety Get(string name, Input<string> id, GatewayPluginAiAzureContentSafetyState? state, CustomResourceOptions? opts = null)
    public static GatewayPluginAiAzureContentSafety get(String name, Output<String> id, GatewayPluginAiAzureContentSafetyState state, CustomResourceOptions options)
    resources:  _:    type: konnect:GatewayPluginAiAzureContentSafety    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:
    Config GatewayPluginAiAzureContentSafetyConfig
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt double
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginAiAzureContentSafetyId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginAiAzureContentSafetyOrdering
    Protocols List<string>
    A set of strings representing HTTP protocols.
    Route GatewayPluginAiAzureContentSafetyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginAiAzureContentSafetyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags List<string>
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt double
    Unix epoch when the resource was last updated.
    Config GatewayPluginAiAzureContentSafetyConfigArgs
    ControlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    CreatedAt float64
    Unix epoch when the resource was created.
    Enabled bool
    Whether the plugin is applied.
    GatewayPluginAiAzureContentSafetyId string
    The ID of this resource.
    InstanceName string
    Ordering GatewayPluginAiAzureContentSafetyOrderingArgs
    Protocols []string
    A set of strings representing HTTP protocols.
    Route GatewayPluginAiAzureContentSafetyRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    Service GatewayPluginAiAzureContentSafetyServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    Tags []string
    An optional set of strings associated with the Plugin for grouping and filtering.
    UpdatedAt float64
    Unix epoch when the resource was last updated.
    config GatewayPluginAiAzureContentSafetyConfig
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Double
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginAiAzureContentSafetyId String
    The ID of this resource.
    instanceName String
    ordering GatewayPluginAiAzureContentSafetyOrdering
    protocols List<String>
    A set of strings representing HTTP protocols.
    route GatewayPluginAiAzureContentSafetyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiAzureContentSafetyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Double
    Unix epoch when the resource was last updated.
    config GatewayPluginAiAzureContentSafetyConfig
    controlPlaneId string
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt number
    Unix epoch when the resource was created.
    enabled boolean
    Whether the plugin is applied.
    gatewayPluginAiAzureContentSafetyId string
    The ID of this resource.
    instanceName string
    ordering GatewayPluginAiAzureContentSafetyOrdering
    protocols string[]
    A set of strings representing HTTP protocols.
    route GatewayPluginAiAzureContentSafetyRoute
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiAzureContentSafetyService
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags string[]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt number
    Unix epoch when the resource was last updated.
    config GatewayPluginAiAzureContentSafetyConfigArgs
    control_plane_id str
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    created_at float
    Unix epoch when the resource was created.
    enabled bool
    Whether the plugin is applied.
    gateway_plugin_ai_azure_content_safety_id str
    The ID of this resource.
    instance_name str
    ordering GatewayPluginAiAzureContentSafetyOrderingArgs
    protocols Sequence[str]
    A set of strings representing HTTP protocols.
    route GatewayPluginAiAzureContentSafetyRouteArgs
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service GatewayPluginAiAzureContentSafetyServiceArgs
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags Sequence[str]
    An optional set of strings associated with the Plugin for grouping and filtering.
    updated_at float
    Unix epoch when the resource was last updated.
    config Property Map
    controlPlaneId String
    The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
    createdAt Number
    Unix epoch when the resource was created.
    enabled Boolean
    Whether the plugin is applied.
    gatewayPluginAiAzureContentSafetyId String
    The ID of this resource.
    instanceName String
    ordering Property Map
    protocols List<String>
    A set of strings representing HTTP protocols.
    route Property Map
    If set, the plugin will only activate when receiving requests via the specified route. Leave unset for the plugin to activate regardless of the route being used.
    service Property Map
    If set, the plugin will only activate when receiving requests via one of the routes belonging to the specified Service. Leave unset for the plugin to activate regardless of the Service being matched.
    tags List<String>
    An optional set of strings associated with the Plugin for grouping and filtering.
    updatedAt Number
    Unix epoch when the resource was last updated.

    Supporting Types

    GatewayPluginAiAzureContentSafetyConfig, GatewayPluginAiAzureContentSafetyConfigArgs

    AzureApiVersion string
    Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
    AzureClientId string
    If azure_use_managed_identity is true, set the client ID if required.
    AzureClientSecret string
    If azure_use_managed_identity is true, set the client secret if required.
    AzureTenantId string
    If azure_use_managed_identity is true, set the tenant ID if required.
    AzureUseManagedIdentity bool
    If checked, uses (if set) azure_client_id, azure_client_secret, and/or azure_tenant_id for Azure authentication, via Managed or User-assigned identity
    BlocklistNames List<string>
    Use these configured blocklists (in Azure Content Services) when inspecting content.
    Categories List<GatewayPluginAiAzureContentSafetyConfigCategory>
    Array of categories, and their thresholds, to measure on.
    ContentSafetyKey string
    If azure_use_managed_identity is true, set the API key to call Content Safety.
    ContentSafetyUrl string
    Full URL, inc protocol, of the Azure Content Safety instance.
    HaltOnBlocklistHit bool
    Tells Azure to reject the request if any blocklist filter is hit.
    OutputType string
    See https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/content-filter#content-filtering-categories. must be one of ["EightSeverityLevels", "FourSeverityLevels"]
    RevealFailureReason bool
    Set true to tell the caller why their request was rejected, if so.
    TextSource string
    Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]
    AzureApiVersion string
    Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
    AzureClientId string
    If azure_use_managed_identity is true, set the client ID if required.
    AzureClientSecret string
    If azure_use_managed_identity is true, set the client secret if required.
    AzureTenantId string
    If azure_use_managed_identity is true, set the tenant ID if required.
    AzureUseManagedIdentity bool
    If checked, uses (if set) azure_client_id, azure_client_secret, and/or azure_tenant_id for Azure authentication, via Managed or User-assigned identity
    BlocklistNames []string
    Use these configured blocklists (in Azure Content Services) when inspecting content.
    Categories []GatewayPluginAiAzureContentSafetyConfigCategory
    Array of categories, and their thresholds, to measure on.
    ContentSafetyKey string
    If azure_use_managed_identity is true, set the API key to call Content Safety.
    ContentSafetyUrl string
    Full URL, inc protocol, of the Azure Content Safety instance.
    HaltOnBlocklistHit bool
    Tells Azure to reject the request if any blocklist filter is hit.
    OutputType string
    See https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/content-filter#content-filtering-categories. must be one of ["EightSeverityLevels", "FourSeverityLevels"]
    RevealFailureReason bool
    Set true to tell the caller why their request was rejected, if so.
    TextSource string
    Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]
    azureApiVersion String
    Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
    azureClientId String
    If azure_use_managed_identity is true, set the client ID if required.
    azureClientSecret String
    If azure_use_managed_identity is true, set the client secret if required.
    azureTenantId String
    If azure_use_managed_identity is true, set the tenant ID if required.
    azureUseManagedIdentity Boolean
    If checked, uses (if set) azure_client_id, azure_client_secret, and/or azure_tenant_id for Azure authentication, via Managed or User-assigned identity
    blocklistNames List<String>
    Use these configured blocklists (in Azure Content Services) when inspecting content.
    categories List<GatewayPluginAiAzureContentSafetyConfigCategory>
    Array of categories, and their thresholds, to measure on.
    contentSafetyKey String
    If azure_use_managed_identity is true, set the API key to call Content Safety.
    contentSafetyUrl String
    Full URL, inc protocol, of the Azure Content Safety instance.
    haltOnBlocklistHit Boolean
    Tells Azure to reject the request if any blocklist filter is hit.
    outputType String
    See https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/content-filter#content-filtering-categories. must be one of ["EightSeverityLevels", "FourSeverityLevels"]
    revealFailureReason Boolean
    Set true to tell the caller why their request was rejected, if so.
    textSource String
    Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]
    azureApiVersion string
    Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
    azureClientId string
    If azure_use_managed_identity is true, set the client ID if required.
    azureClientSecret string
    If azure_use_managed_identity is true, set the client secret if required.
    azureTenantId string
    If azure_use_managed_identity is true, set the tenant ID if required.
    azureUseManagedIdentity boolean
    If checked, uses (if set) azure_client_id, azure_client_secret, and/or azure_tenant_id for Azure authentication, via Managed or User-assigned identity
    blocklistNames string[]
    Use these configured blocklists (in Azure Content Services) when inspecting content.
    categories GatewayPluginAiAzureContentSafetyConfigCategory[]
    Array of categories, and their thresholds, to measure on.
    contentSafetyKey string
    If azure_use_managed_identity is true, set the API key to call Content Safety.
    contentSafetyUrl string
    Full URL, inc protocol, of the Azure Content Safety instance.
    haltOnBlocklistHit boolean
    Tells Azure to reject the request if any blocklist filter is hit.
    outputType string
    See https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/content-filter#content-filtering-categories. must be one of ["EightSeverityLevels", "FourSeverityLevels"]
    revealFailureReason boolean
    Set true to tell the caller why their request was rejected, if so.
    textSource string
    Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]
    azure_api_version str
    Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
    azure_client_id str
    If azure_use_managed_identity is true, set the client ID if required.
    azure_client_secret str
    If azure_use_managed_identity is true, set the client secret if required.
    azure_tenant_id str
    If azure_use_managed_identity is true, set the tenant ID if required.
    azure_use_managed_identity bool
    If checked, uses (if set) azure_client_id, azure_client_secret, and/or azure_tenant_id for Azure authentication, via Managed or User-assigned identity
    blocklist_names Sequence[str]
    Use these configured blocklists (in Azure Content Services) when inspecting content.
    categories Sequence[GatewayPluginAiAzureContentSafetyConfigCategory]
    Array of categories, and their thresholds, to measure on.
    content_safety_key str
    If azure_use_managed_identity is true, set the API key to call Content Safety.
    content_safety_url str
    Full URL, inc protocol, of the Azure Content Safety instance.
    halt_on_blocklist_hit bool
    Tells Azure to reject the request if any blocklist filter is hit.
    output_type str
    See https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/content-filter#content-filtering-categories. must be one of ["EightSeverityLevels", "FourSeverityLevels"]
    reveal_failure_reason bool
    Set true to tell the caller why their request was rejected, if so.
    text_source str
    Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]
    azureApiVersion String
    Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
    azureClientId String
    If azure_use_managed_identity is true, set the client ID if required.
    azureClientSecret String
    If azure_use_managed_identity is true, set the client secret if required.
    azureTenantId String
    If azure_use_managed_identity is true, set the tenant ID if required.
    azureUseManagedIdentity Boolean
    If checked, uses (if set) azure_client_id, azure_client_secret, and/or azure_tenant_id for Azure authentication, via Managed or User-assigned identity
    blocklistNames List<String>
    Use these configured blocklists (in Azure Content Services) when inspecting content.
    categories List<Property Map>
    Array of categories, and their thresholds, to measure on.
    contentSafetyKey String
    If azure_use_managed_identity is true, set the API key to call Content Safety.
    contentSafetyUrl String
    Full URL, inc protocol, of the Azure Content Safety instance.
    haltOnBlocklistHit Boolean
    Tells Azure to reject the request if any blocklist filter is hit.
    outputType String
    See https://learn.microsoft.com/en-us/azure/ai-services/openai/concepts/content-filter#content-filtering-categories. must be one of ["EightSeverityLevels", "FourSeverityLevels"]
    revealFailureReason Boolean
    Set true to tell the caller why their request was rejected, if so.
    textSource String
    Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]

    GatewayPluginAiAzureContentSafetyConfigCategory, GatewayPluginAiAzureContentSafetyConfigCategoryArgs

    Name string
    Not Null
    RejectionLevel double
    Not Null
    Name string
    Not Null
    RejectionLevel float64
    Not Null
    name String
    Not Null
    rejectionLevel Double
    Not Null
    name string
    Not Null
    rejectionLevel number
    Not Null
    name str
    Not Null
    rejection_level float
    Not Null
    name String
    Not Null
    rejectionLevel Number
    Not Null

    GatewayPluginAiAzureContentSafetyOrdering, GatewayPluginAiAzureContentSafetyOrderingArgs

    GatewayPluginAiAzureContentSafetyOrderingAfter, GatewayPluginAiAzureContentSafetyOrderingAfterArgs

    Accesses List<string>
    Accesses []string
    accesses List<String>
    accesses string[]
    accesses Sequence[str]
    accesses List<String>

    GatewayPluginAiAzureContentSafetyOrderingBefore, GatewayPluginAiAzureContentSafetyOrderingBeforeArgs

    Accesses List<string>
    Accesses []string
    accesses List<String>
    accesses string[]
    accesses Sequence[str]
    accesses List<String>

    GatewayPluginAiAzureContentSafetyRoute, GatewayPluginAiAzureContentSafetyRouteArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    GatewayPluginAiAzureContentSafetyService, GatewayPluginAiAzureContentSafetyServiceArgs

    Id string
    Id string
    id String
    id string
    id str
    id String

    Import

    $ pulumi import konnect:index/gatewayPluginAiAzureContentSafety:GatewayPluginAiAzureContentSafety my_konnect_gateway_plugin_ai_azure_content_safety "{ \"control_plane_id\": \"9524ec7d-36d9-465d-a8c5-83a3c9390458\", \"plugin_id\": \"3473c251-5b6c-4f45-b1ff-7ede735a366d\"}"
    

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

    Package Details

    Repository
    konnect kong/terraform-provider-konnect
    License
    Notes
    This Pulumi package is based on the konnect Terraform Provider.
    konnect logo
    konnect 2.4.1 published on Thursday, Mar 13, 2025 by kong