konnect.GatewayPluginAiAzureContentSafety
Explore with Pulumi AI
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
Gateway
Plugin Ai Azure Content Safety Config - Control
Plane stringId - 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 stringAi Azure Content Safety Id - The ID of this resource.
- Instance
Name string - Ordering
Gateway
Plugin Ai Azure Content Safety Ordering - Protocols List<string>
- A set of strings representing HTTP protocols.
- Route
Gateway
Plugin Ai Azure Content Safety Route - 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
Gateway
Plugin Ai Azure Content Safety Service - 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.
- List<string>
- An optional set of strings associated with the Plugin for grouping and filtering.
- Config
Gateway
Plugin Ai Azure Content Safety Config Args - Control
Plane stringId - 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 stringAi Azure Content Safety Id - The ID of this resource.
- Instance
Name string - Ordering
Gateway
Plugin Ai Azure Content Safety Ordering Args - Protocols []string
- A set of strings representing HTTP protocols.
- Route
Gateway
Plugin Ai Azure Content Safety Route Args - 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
Gateway
Plugin Ai Azure Content Safety Service Args - 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.
- []string
- An optional set of strings associated with the Plugin for grouping and filtering.
- config
Gateway
Plugin Ai Azure Content Safety Config - control
Plane StringId - 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.
- gateway
Plugin StringAi Azure Content Safety Id - The ID of this resource.
- instance
Name String - ordering
Gateway
Plugin Ai Azure Content Safety Ordering - protocols List<String>
- A set of strings representing HTTP protocols.
- route
Gateway
Plugin Ai Azure Content Safety Route - 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
Gateway
Plugin Ai Azure Content Safety Service - 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.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- config
Gateway
Plugin Ai Azure Content Safety Config - control
Plane stringId - 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.
- gateway
Plugin stringAi Azure Content Safety Id - The ID of this resource.
- instance
Name string - ordering
Gateway
Plugin Ai Azure Content Safety Ordering - protocols string[]
- A set of strings representing HTTP protocols.
- route
Gateway
Plugin Ai Azure Content Safety Route - 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
Gateway
Plugin Ai Azure Content Safety Service - 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.
- string[]
- An optional set of strings associated with the Plugin for grouping and filtering.
- config
Gateway
Plugin Ai Azure Content Safety Config Args - control_
plane_ strid - 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_ strai_ azure_ content_ safety_ id - The ID of this resource.
- instance_
name str - ordering
Gateway
Plugin Ai Azure Content Safety Ordering Args - protocols Sequence[str]
- A set of strings representing HTTP protocols.
- route
Gateway
Plugin Ai Azure Content Safety Route Args - 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
Gateway
Plugin Ai Azure Content Safety Service Args - 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.
- Sequence[str]
- An optional set of strings associated with the Plugin for grouping and filtering.
- config Property Map
- control
Plane StringId - 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.
- gateway
Plugin StringAi Azure Content Safety Id - The ID of this resource.
- instance
Name 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.
- 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:
- 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.
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.
- Config
Gateway
Plugin Ai Azure Content Safety Config - Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At double - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied.
- Gateway
Plugin stringAi Azure Content Safety Id - The ID of this resource.
- Instance
Name string - Ordering
Gateway
Plugin Ai Azure Content Safety Ordering - Protocols List<string>
- A set of strings representing HTTP protocols.
- Route
Gateway
Plugin Ai Azure Content Safety Route - 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
Gateway
Plugin Ai Azure Content Safety Service - 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.
- List<string>
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At double - Unix epoch when the resource was last updated.
- Config
Gateway
Plugin Ai Azure Content Safety Config Args - Control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- Created
At float64 - Unix epoch when the resource was created.
- Enabled bool
- Whether the plugin is applied.
- Gateway
Plugin stringAi Azure Content Safety Id - The ID of this resource.
- Instance
Name string - Ordering
Gateway
Plugin Ai Azure Content Safety Ordering Args - Protocols []string
- A set of strings representing HTTP protocols.
- Route
Gateway
Plugin Ai Azure Content Safety Route Args - 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
Gateway
Plugin Ai Azure Content Safety Service Args - 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.
- []string
- An optional set of strings associated with the Plugin for grouping and filtering.
- Updated
At float64 - Unix epoch when the resource was last updated.
- config
Gateway
Plugin Ai Azure Content Safety Config - control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Double - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied.
- gateway
Plugin StringAi Azure Content Safety Id - The ID of this resource.
- instance
Name String - ordering
Gateway
Plugin Ai Azure Content Safety Ordering - protocols List<String>
- A set of strings representing HTTP protocols.
- route
Gateway
Plugin Ai Azure Content Safety Route - 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
Gateway
Plugin Ai Azure Content Safety Service - 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.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Double - Unix epoch when the resource was last updated.
- config
Gateway
Plugin Ai Azure Content Safety Config - control
Plane stringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At number - Unix epoch when the resource was created.
- enabled boolean
- Whether the plugin is applied.
- gateway
Plugin stringAi Azure Content Safety Id - The ID of this resource.
- instance
Name string - ordering
Gateway
Plugin Ai Azure Content Safety Ordering - protocols string[]
- A set of strings representing HTTP protocols.
- route
Gateway
Plugin Ai Azure Content Safety Route - 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
Gateway
Plugin Ai Azure Content Safety Service - 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.
- string[]
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At number - Unix epoch when the resource was last updated.
- config
Gateway
Plugin Ai Azure Content Safety Config Args - control_
plane_ strid - 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_ strai_ azure_ content_ safety_ id - The ID of this resource.
- instance_
name str - ordering
Gateway
Plugin Ai Azure Content Safety Ordering Args - protocols Sequence[str]
- A set of strings representing HTTP protocols.
- route
Gateway
Plugin Ai Azure Content Safety Route Args - 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
Gateway
Plugin Ai Azure Content Safety Service Args - 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.
- 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
- control
Plane StringId - The UUID of your control plane. This variable is available in the Konnect manager. Requires replacement if changed.
- created
At Number - Unix epoch when the resource was created.
- enabled Boolean
- Whether the plugin is applied.
- gateway
Plugin StringAi Azure Content Safety Id - The ID of this resource.
- instance
Name 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.
- List<String>
- An optional set of strings associated with the Plugin for grouping and filtering.
- updated
At Number - Unix epoch when the resource was last updated.
Supporting Types
GatewayPluginAiAzureContentSafetyConfig, GatewayPluginAiAzureContentSafetyConfigArgs
- Azure
Api stringVersion - Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
- Azure
Client stringId - If
azure_use_managed_identity
is true, set the client ID if required. - Azure
Client stringSecret - If
azure_use_managed_identity
is true, set the client secret if required. - Azure
Tenant stringId - If
azure_use_managed_identity
is true, set the tenant ID if required. - Azure
Use boolManaged Identity - If checked, uses (if set)
azure_client_id
,azure_client_secret
, and/orazure_tenant_id
for Azure authentication, via Managed or User-assigned identity - Blocklist
Names List<string> - Use these configured blocklists (in Azure Content Services) when inspecting content.
- Categories
List<Gateway
Plugin Ai Azure Content Safety Config Category> - Array of categories, and their thresholds, to measure on.
- Content
Safety stringKey - If
azure_use_managed_identity
is true, set the API key to call Content Safety. - Content
Safety stringUrl - Full URL, inc protocol, of the Azure Content Safety instance.
- Halt
On boolBlocklist Hit - Tells Azure to reject the request if any blocklist filter is hit.
- Output
Type string - 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 boolReason - Set true to tell the caller why their request was rejected, if so.
- Text
Source string - Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]
- Azure
Api stringVersion - Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
- Azure
Client stringId - If
azure_use_managed_identity
is true, set the client ID if required. - Azure
Client stringSecret - If
azure_use_managed_identity
is true, set the client secret if required. - Azure
Tenant stringId - If
azure_use_managed_identity
is true, set the tenant ID if required. - Azure
Use boolManaged Identity - If checked, uses (if set)
azure_client_id
,azure_client_secret
, and/orazure_tenant_id
for Azure authentication, via Managed or User-assigned identity - Blocklist
Names []string - Use these configured blocklists (in Azure Content Services) when inspecting content.
- Categories
[]Gateway
Plugin Ai Azure Content Safety Config Category - Array of categories, and their thresholds, to measure on.
- Content
Safety stringKey - If
azure_use_managed_identity
is true, set the API key to call Content Safety. - Content
Safety stringUrl - Full URL, inc protocol, of the Azure Content Safety instance.
- Halt
On boolBlocklist Hit - Tells Azure to reject the request if any blocklist filter is hit.
- Output
Type string - 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 boolReason - Set true to tell the caller why their request was rejected, if so.
- Text
Source string - Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]
- azure
Api StringVersion - Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
- azure
Client StringId - If
azure_use_managed_identity
is true, set the client ID if required. - azure
Client StringSecret - If
azure_use_managed_identity
is true, set the client secret if required. - azure
Tenant StringId - If
azure_use_managed_identity
is true, set the tenant ID if required. - azure
Use BooleanManaged Identity - If checked, uses (if set)
azure_client_id
,azure_client_secret
, and/orazure_tenant_id
for Azure authentication, via Managed or User-assigned identity - blocklist
Names List<String> - Use these configured blocklists (in Azure Content Services) when inspecting content.
- categories
List<Gateway
Plugin Ai Azure Content Safety Config Category> - Array of categories, and their thresholds, to measure on.
- content
Safety StringKey - If
azure_use_managed_identity
is true, set the API key to call Content Safety. - content
Safety StringUrl - Full URL, inc protocol, of the Azure Content Safety instance.
- halt
On BooleanBlocklist Hit - Tells Azure to reject the request if any blocklist filter is hit.
- output
Type String - 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 BooleanReason - Set true to tell the caller why their request was rejected, if so.
- text
Source String - Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]
- azure
Api stringVersion - Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
- azure
Client stringId - If
azure_use_managed_identity
is true, set the client ID if required. - azure
Client stringSecret - If
azure_use_managed_identity
is true, set the client secret if required. - azure
Tenant stringId - If
azure_use_managed_identity
is true, set the tenant ID if required. - azure
Use booleanManaged Identity - If checked, uses (if set)
azure_client_id
,azure_client_secret
, and/orazure_tenant_id
for Azure authentication, via Managed or User-assigned identity - blocklist
Names string[] - Use these configured blocklists (in Azure Content Services) when inspecting content.
- categories
Gateway
Plugin Ai Azure Content Safety Config Category[] - Array of categories, and their thresholds, to measure on.
- content
Safety stringKey - If
azure_use_managed_identity
is true, set the API key to call Content Safety. - content
Safety stringUrl - Full URL, inc protocol, of the Azure Content Safety instance.
- halt
On booleanBlocklist Hit - Tells Azure to reject the request if any blocklist filter is hit.
- output
Type string - 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 booleanReason - Set true to tell the caller why their request was rejected, if so.
- text
Source string - Select where to pick the 'text' for the Azure Content Services request. must be one of ["concatenateallcontent", "concatenateusercontent"]
- azure_
api_ strversion - Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
- azure_
client_ strid - If
azure_use_managed_identity
is true, set the client ID if required. - azure_
client_ strsecret - If
azure_use_managed_identity
is true, set the client secret if required. - azure_
tenant_ strid - If
azure_use_managed_identity
is true, set the tenant ID if required. - azure_
use_ boolmanaged_ identity - If checked, uses (if set)
azure_client_id
,azure_client_secret
, and/orazure_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[Gateway
Plugin Ai Azure Content Safety Config Category] - Array of categories, and their thresholds, to measure on.
- content_
safety_ strkey - If
azure_use_managed_identity
is true, set the API key to call Content Safety. - content_
safety_ strurl - Full URL, inc protocol, of the Azure Content Safety instance.
- halt_
on_ boolblocklist_ hit - 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_ boolreason - 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"]
- azure
Api StringVersion - Sets the ?api-version URL parameter, used for defining the Azure Content Services interchange format.
- azure
Client StringId - If
azure_use_managed_identity
is true, set the client ID if required. - azure
Client StringSecret - If
azure_use_managed_identity
is true, set the client secret if required. - azure
Tenant StringId - If
azure_use_managed_identity
is true, set the tenant ID if required. - azure
Use BooleanManaged Identity - If checked, uses (if set)
azure_client_id
,azure_client_secret
, and/orazure_tenant_id
for Azure authentication, via Managed or User-assigned identity - blocklist
Names 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.
- content
Safety StringKey - If
azure_use_managed_identity
is true, set the API key to call Content Safety. - content
Safety StringUrl - Full URL, inc protocol, of the Azure Content Safety instance.
- halt
On BooleanBlocklist Hit - Tells Azure to reject the request if any blocklist filter is hit.
- output
Type String - 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 BooleanReason - Set true to tell the caller why their request was rejected, if so.
- text
Source 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
- Rejection
Level double - Not Null
- Name string
- Not Null
- Rejection
Level float64 - Not Null
- name String
- Not Null
- rejection
Level Double - Not Null
- name string
- Not Null
- rejection
Level number - Not Null
- name str
- Not Null
- rejection_
level float - Not Null
- name String
- Not Null
- rejection
Level 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.