published on Wednesday, Aug 5, 2026 by Pulumi
published on Wednesday, Aug 5, 2026 by Pulumi
Concrete proxy resource types can be created by aliasing this type using a specific property type.
Uses Azure REST API version 2026-01-15-preview.
Other available API versions: 2026-03-01, 2026-03-15-preview, 2026-05-01, 2026-05-15-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native cognitiveservices [ApiVersion]. See the version guide for details.
Example Usage
Put ManagedNetworkSettings
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var managedNetworkSetting = new AzureNative.CognitiveServices.ManagedNetworkSetting("managedNetworkSetting", new()
{
AccountName = "cognitive-account-name",
ManagedNetworkName = "default",
Properties = new AzureNative.CognitiveServices.Inputs.ManagedNetworkSettingsPropertiesArgs
{
ManagedNetwork = new AzureNative.CognitiveServices.Inputs.ManagedNetworkSettingsExArgs
{
FirewallSku = AzureNative.CognitiveServices.FirewallSku.Standard,
IsolationMode = AzureNative.CognitiveServices.IsolationMode.AllowOnlyApprovedOutbound,
OutboundRules =
{
{ "rule_name_1", new AzureNative.CognitiveServices.Inputs.FqdnOutboundRuleArgs
{
Category = AzureNative.CognitiveServices.RuleCategory.UserDefined,
Destination = "destination_endpoint",
Type = "FQDN",
} },
},
},
},
ResourceGroupName = "test-rg",
});
});
package main
import (
cognitiveservices "github.com/pulumi/pulumi-azure-native-sdk/cognitiveservices/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cognitiveservices.NewManagedNetworkSetting(ctx, "managedNetworkSetting", &cognitiveservices.ManagedNetworkSettingArgs{
AccountName: pulumi.String("cognitive-account-name"),
ManagedNetworkName: pulumi.String("default"),
Properties: &cognitiveservices.ManagedNetworkSettingsPropertiesArgs{
ManagedNetwork: &cognitiveservices.ManagedNetworkSettingsExArgs{
FirewallSku: pulumi.String(cognitiveservices.FirewallSkuStandard),
IsolationMode: pulumi.String(cognitiveservices.IsolationModeAllowOnlyApprovedOutbound),
OutboundRules: pulumi.Map{
"rule_name_1": cognitiveservices.FqdnOutboundRule{
Category: cognitiveservices.RuleCategoryUserDefined,
Destination: "destination_endpoint",
Type: "FQDN",
},
},
},
},
ResourceGroupName: pulumi.String("test-rg"),
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_cognitiveservices_managednetworksetting" "managedNetworkSetting" {
account_name = "cognitive-account-name"
managed_network_name = "default"
properties = {
managed_network = {
firewall_sku = "Standard"
isolation_mode = "AllowOnlyApprovedOutbound"
outbound_rules = {
"rule_name_1" = {
"category" = "UserDefined"
"destination" = "destination_endpoint"
"type" = "FQDN"
}
}
}
}
resource_group_name = "test-rg"
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.cognitiveservices.ManagedNetworkSetting;
import com.pulumi.azurenative.cognitiveservices.ManagedNetworkSettingArgs;
import com.pulumi.azurenative.cognitiveservices.inputs.ManagedNetworkSettingsPropertiesArgs;
import com.pulumi.azurenative.cognitiveservices.inputs.ManagedNetworkSettingsExArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 managedNetworkSetting = new ManagedNetworkSetting("managedNetworkSetting", ManagedNetworkSettingArgs.builder()
.accountName("cognitive-account-name")
.managedNetworkName("default")
.properties(ManagedNetworkSettingsPropertiesArgs.builder()
.managedNetwork(ManagedNetworkSettingsExArgs.builder()
.firewallSku("Standard")
.isolationMode("AllowOnlyApprovedOutbound")
.outboundRules(Map.of("rule_name_1", FqdnOutboundRuleArgs.builder()
.category("UserDefined")
.destination("destination_endpoint")
.type("FQDN")
.build()))
.build())
.build())
.resourceGroupName("test-rg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const managedNetworkSetting = new azure_native.cognitiveservices.ManagedNetworkSetting("managedNetworkSetting", {
accountName: "cognitive-account-name",
managedNetworkName: "default",
properties: {
managedNetwork: {
firewallSku: azure_native.cognitiveservices.FirewallSku.Standard,
isolationMode: azure_native.cognitiveservices.IsolationMode.AllowOnlyApprovedOutbound,
outboundRules: {
rule_name_1: {
category: azure_native.cognitiveservices.RuleCategory.UserDefined,
destination: "destination_endpoint",
type: "FQDN",
},
},
},
},
resourceGroupName: "test-rg",
});
import pulumi
import pulumi_azure_native as azure_native
managed_network_setting = azure_native.cognitiveservices.ManagedNetworkSetting("managedNetworkSetting",
account_name="cognitive-account-name",
managed_network_name="default",
properties={
"managed_network": {
"firewall_sku": azure_native.cognitiveservices.FirewallSku.STANDARD,
"isolation_mode": azure_native.cognitiveservices.IsolationMode.ALLOW_ONLY_APPROVED_OUTBOUND,
"outbound_rules": {
"rule_name_1": {
"category": azure_native.cognitiveservices.RuleCategory.USER_DEFINED,
"destination": "destination_endpoint",
"type": "FQDN",
},
},
},
},
resource_group_name="test-rg")
resources:
managedNetworkSetting:
type: azure-native:cognitiveservices:ManagedNetworkSetting
properties:
accountName: cognitive-account-name
managedNetworkName: default
properties:
managedNetwork:
firewallSku: Standard
isolationMode: AllowOnlyApprovedOutbound
outboundRules:
rule_name_1:
category: UserDefined
destination: destination_endpoint
type: FQDN
resourceGroupName: test-rg
Create ManagedNetworkSetting Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ManagedNetworkSetting(name: string, args: ManagedNetworkSettingArgs, opts?: CustomResourceOptions);@overload
def ManagedNetworkSetting(resource_name: str,
args: ManagedNetworkSettingArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ManagedNetworkSetting(resource_name: str,
opts: Optional[ResourceOptions] = None,
account_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
managed_network_name: Optional[str] = None,
properties: Optional[ManagedNetworkSettingsPropertiesArgs] = None)func NewManagedNetworkSetting(ctx *Context, name string, args ManagedNetworkSettingArgs, opts ...ResourceOption) (*ManagedNetworkSetting, error)public ManagedNetworkSetting(string name, ManagedNetworkSettingArgs args, CustomResourceOptions? opts = null)
public ManagedNetworkSetting(String name, ManagedNetworkSettingArgs args)
public ManagedNetworkSetting(String name, ManagedNetworkSettingArgs args, CustomResourceOptions options)
type: azure-native:cognitiveservices:ManagedNetworkSetting
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_cognitiveservices_managed_network_setting" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args ManagedNetworkSettingArgs
- 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 ManagedNetworkSettingArgs
- 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 ManagedNetworkSettingArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ManagedNetworkSettingArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ManagedNetworkSettingArgs
- 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 managedNetworkSettingResource = new AzureNative.CognitiveServices.ManagedNetworkSetting("managedNetworkSettingResource", new()
{
AccountName = "string",
ResourceGroupName = "string",
ManagedNetworkName = "string",
Properties = new AzureNative.CognitiveServices.Inputs.ManagedNetworkSettingsPropertiesArgs
{
ManagedNetwork = new AzureNative.CognitiveServices.Inputs.ManagedNetworkSettingsExArgs
{
FirewallSku = "string",
IsolationMode = "string",
ManagedNetworkKind = "string",
OutboundRules =
{
{ "string", new AzureNative.CognitiveServices.Inputs.FqdnOutboundRuleArgs
{
Type = "FQDN",
Category = "string",
Destination = "string",
Status = "string",
} },
},
Status = new AzureNative.CognitiveServices.Inputs.ManagedNetworkProvisionStatusArgs
{
Status = "string",
},
},
},
});
example, err := cognitiveservices.NewManagedNetworkSetting(ctx, "managedNetworkSettingResource", &cognitiveservices.ManagedNetworkSettingArgs{
AccountName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ManagedNetworkName: pulumi.String("string"),
Properties: &cognitiveservices.ManagedNetworkSettingsPropertiesArgs{
ManagedNetwork: &cognitiveservices.ManagedNetworkSettingsExArgs{
FirewallSku: pulumi.String("string"),
IsolationMode: pulumi.String("string"),
ManagedNetworkKind: pulumi.String("string"),
OutboundRules: pulumi.Map{
"string": &cognitiveservices.FqdnOutboundRuleArgs{
Type: pulumi.String("FQDN"),
Category: pulumi.String("string"),
Destination: pulumi.String("string"),
Status: pulumi.String("string"),
},
},
Status: &cognitiveservices.ManagedNetworkProvisionStatusArgs{
Status: pulumi.String("string"),
},
},
},
})
resource "azure-native_cognitiveservices_managed_network_setting" "managedNetworkSettingResource" {
lifecycle {
create_before_destroy = true
}
account_name = "string"
resource_group_name = "string"
managed_network_name = "string"
properties = {
managed_network = {
firewall_sku = "string"
isolation_mode = "string"
managed_network_kind = "string"
outbound_rules = {
"string" = {
type = "FQDN"
category = "string"
destination = "string"
status = "string"
}
}
status = {
status = "string"
}
}
}
}
var managedNetworkSettingResource = new ManagedNetworkSetting("managedNetworkSettingResource", ManagedNetworkSettingArgs.builder()
.accountName("string")
.resourceGroupName("string")
.managedNetworkName("string")
.properties(ManagedNetworkSettingsPropertiesArgs.builder()
.managedNetwork(Map.ofEntries(
Map.entry("firewallSku", "string"),
Map.entry("isolationMode", "string"),
Map.entry("managedNetworkKind", "string"),
Map.entry("outboundRules", Map.of("string", com.pulumi.azurenative.cognitiveservices.inputs.FqdnOutboundRuleArgs.builder()
.type("FQDN")
.category("string")
.destination("string")
.status("string")
.build())),
Map.entry("status", com.pulumi.azurenative.cognitiveservices.inputs.ManagedNetworkProvisionStatusArgs.builder()
.status("string")
.build())
))
.build())
.build());
managed_network_setting_resource = azure_native.cognitiveservices.ManagedNetworkSetting("managedNetworkSettingResource",
account_name="string",
resource_group_name="string",
managed_network_name="string",
properties={
"managed_network": {
"firewall_sku": "string",
"isolation_mode": "string",
"managed_network_kind": "string",
"outbound_rules": {
"string": {
"type": "FQDN",
"category": "string",
"destination": "string",
"status": "string",
},
},
"status": {
"status": "string",
},
},
})
const managedNetworkSettingResource = new azure_native.cognitiveservices.ManagedNetworkSetting("managedNetworkSettingResource", {
accountName: "string",
resourceGroupName: "string",
managedNetworkName: "string",
properties: {
managedNetwork: {
firewallSku: "string",
isolationMode: "string",
managedNetworkKind: "string",
outboundRules: {
string: {
type: "FQDN",
category: "string",
destination: "string",
status: "string",
},
},
status: {
status: "string",
},
},
},
});
type: azure-native:cognitiveservices:ManagedNetworkSetting
properties:
accountName: string
managedNetworkName: string
properties:
managedNetwork:
firewallSku: string
isolationMode: string
managedNetworkKind: string
outboundRules:
string:
category: string
destination: string
status: string
type: FQDN
status:
status: string
resourceGroupName: string
ManagedNetworkSetting 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 ManagedNetworkSetting resource accepts the following input properties:
- Account
Name string - The name of Cognitive Services account.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Managed
Network stringName - Name of the managedNetwork associated with the cognitive services account. Only 'default' is supported.
- Properties
Pulumi.
Azure Native. Cognitive Services. Inputs. Managed Network Settings Properties - The properties of the managed network settings of a cognitive services account.
- Account
Name string - The name of Cognitive Services account.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Managed
Network stringName - Name of the managedNetwork associated with the cognitive services account. Only 'default' is supported.
- Properties
Managed
Network Settings Properties Args - The properties of the managed network settings of a cognitive services account.
- account_
name string - The name of Cognitive Services account.
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- managed_
network_ stringname - Name of the managedNetwork associated with the cognitive services account. Only 'default' is supported.
- properties object
- The properties of the managed network settings of a cognitive services account.
- account
Name String - The name of Cognitive Services account.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- managed
Network StringName - Name of the managedNetwork associated with the cognitive services account. Only 'default' is supported.
- properties
Managed
Network Settings Properties - The properties of the managed network settings of a cognitive services account.
- account
Name string - The name of Cognitive Services account.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- managed
Network stringName - Name of the managedNetwork associated with the cognitive services account. Only 'default' is supported.
- properties
Managed
Network Settings Properties - The properties of the managed network settings of a cognitive services account.
- account_
name str - The name of Cognitive Services account.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- managed_
network_ strname - Name of the managedNetwork associated with the cognitive services account. Only 'default' is supported.
- properties
Managed
Network Settings Properties Args - The properties of the managed network settings of a cognitive services account.
- account
Name String - The name of Cognitive Services account.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- managed
Network StringName - Name of the managedNetwork associated with the cognitive services account. Only 'default' is supported.
- properties Property Map
- The properties of the managed network settings of a cognitive services account.
Outputs
All input properties are implicitly available as output properties. Additionally, the ManagedNetworkSetting resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Cognitive Services. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ stringversion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system_
data object - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
FirewallSku, FirewallSkuArgs
- Standard
Standard- Basic
Basic
- Firewall
Sku Standard Standard- Firewall
Sku Basic Basic
- "Standard"
Standard- "Basic"
Basic
- Standard
Standard- Basic
Basic
- Standard
Standard- Basic
Basic
- STANDARD
Standard- BASIC
Basic
- "Standard"
Standard- "Basic"
Basic
FqdnOutboundRule, FqdnOutboundRuleArgs
FQDN Outbound Rule for the managed network of a cognitive services account.- Category
string | Pulumi.
Azure Native. Cognitive Services. Rule Category - Category of a managed network Outbound Rule of a cognitive services account.
- Destination string
- Status
string | Pulumi.
Azure Native. Cognitive Services. Rule Status - Type of a managed network Outbound Rule of a cognitive services account.
- Category
string | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- Destination string
- Status
string | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
string | "Required" | "Recommended" | "User
Defined" | "Dependency" - Category of a managed network Outbound Rule of a cognitive services account.
- destination string
- status string | "Inactive" | "Active" | "Provisioning" | "Deleting" | "Failed"
- Type of a managed network Outbound Rule of a cognitive services account.
- category
String | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- destination String
- status
String | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
string | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- destination string
- status
string | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
str | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- destination str
- status
str | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
String | "Required" | "Recommended" | "User
Defined" | "Dependency" - Category of a managed network Outbound Rule of a cognitive services account.
- destination String
- status String | "Inactive" | "Active" | "Provisioning" | "Deleting" | "Failed"
- Type of a managed network Outbound Rule of a cognitive services account.
FqdnOutboundRuleResponse, FqdnOutboundRuleResponseArgs
FQDN Outbound Rule for the managed network of a cognitive services account.- Error
Information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- Parent
Rule List<string>Names - Category string
- Category of a managed network Outbound Rule of a cognitive services account.
- Destination string
- Status string
- Type of a managed network Outbound Rule of a cognitive services account.
- Error
Information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- Parent
Rule []stringNames - Category string
- Category of a managed network Outbound Rule of a cognitive services account.
- Destination string
- Status string
- Type of a managed network Outbound Rule of a cognitive services account.
- error_
information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent_
rule_ list(string)names - category string
- Category of a managed network Outbound Rule of a cognitive services account.
- destination string
- status string
- Type of a managed network Outbound Rule of a cognitive services account.
- error
Information String - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent
Rule List<String>Names - category String
- Category of a managed network Outbound Rule of a cognitive services account.
- destination String
- status String
- Type of a managed network Outbound Rule of a cognitive services account.
- error
Information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent
Rule string[]Names - category string
- Category of a managed network Outbound Rule of a cognitive services account.
- destination string
- status string
- Type of a managed network Outbound Rule of a cognitive services account.
- error_
information str - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent_
rule_ Sequence[str]names - category str
- Category of a managed network Outbound Rule of a cognitive services account.
- destination str
- status str
- Type of a managed network Outbound Rule of a cognitive services account.
- error
Information String - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent
Rule List<String>Names - category String
- Category of a managed network Outbound Rule of a cognitive services account.
- destination String
- status String
- Type of a managed network Outbound Rule of a cognitive services account.
IsolationMode, IsolationModeArgs
- Disabled
Disabled- Allow
Internet Outbound AllowInternetOutbound- Allow
Only Approved Outbound AllowOnlyApprovedOutbound
- Isolation
Mode Disabled Disabled- Isolation
Mode Allow Internet Outbound AllowInternetOutbound- Isolation
Mode Allow Only Approved Outbound AllowOnlyApprovedOutbound
- "Disabled"
Disabled- "Allow
Internet Outbound" AllowInternetOutbound- "Allow
Only Approved Outbound" AllowOnlyApprovedOutbound
- Disabled
Disabled- Allow
Internet Outbound AllowInternetOutbound- Allow
Only Approved Outbound AllowOnlyApprovedOutbound
- Disabled
Disabled- Allow
Internet Outbound AllowInternetOutbound- Allow
Only Approved Outbound AllowOnlyApprovedOutbound
- DISABLED
Disabled- ALLOW_INTERNET_OUTBOUND
AllowInternetOutbound- ALLOW_ONLY_APPROVED_OUTBOUND
AllowOnlyApprovedOutbound
- "Disabled"
Disabled- "Allow
Internet Outbound" AllowInternetOutbound- "Allow
Only Approved Outbound" AllowOnlyApprovedOutbound
ManagedNetworkKind, ManagedNetworkKindArgs
- V1
V1- V2
V2
- Managed
Network Kind V1 V1- Managed
Network Kind V2 V2
- "V1"
V1- "V2"
V2
- V1
V1- V2
V2
- V1
V1- V2
V2
- V1
V1- V2
V2
- "V1"
V1- "V2"
V2
ManagedNetworkProvisionStatus, ManagedNetworkProvisionStatusArgs
Status of the Provisioning for the managed network of a cognitive services account.- Status
string | Pulumi.
Azure Native. Cognitive Services. Managed Network Status - Status for the managed network of a cognitive services account.
- Status
string | Managed
Network Status - Status for the managed network of a cognitive services account.
- status string | "Inactive" | "Active"
- Status for the managed network of a cognitive services account.
- status
String | Managed
Network Status - Status for the managed network of a cognitive services account.
- status
string | Managed
Network Status - Status for the managed network of a cognitive services account.
- status
str | Managed
Network Status - Status for the managed network of a cognitive services account.
- status String | "Inactive" | "Active"
- Status for the managed network of a cognitive services account.
ManagedNetworkProvisionStatusResponse, ManagedNetworkProvisionStatusResponseArgs
Status of the Provisioning for the managed network of a cognitive services account.- Status string
- Status for the managed network of a cognitive services account.
- Status string
- Status for the managed network of a cognitive services account.
- status string
- Status for the managed network of a cognitive services account.
- status String
- Status for the managed network of a cognitive services account.
- status string
- Status for the managed network of a cognitive services account.
- status str
- Status for the managed network of a cognitive services account.
- status String
- Status for the managed network of a cognitive services account.
ManagedNetworkSettingsEx, ManagedNetworkSettingsExArgs
- Firewall
Sku string | Pulumi.Azure Native. Cognitive Services. Firewall Sku - Firewall Sku used for FQDN Rules
- Isolation
Mode string | Pulumi.Azure Native. Cognitive Services. Isolation Mode - Isolation mode for the managed network of a cognitive services account.
- Managed
Network string | Pulumi.Kind Azure Native. Cognitive Services. Managed Network Kind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- Outbound
Rules Dictionary<string, object> - Dictionary of
- Status
Pulumi.
Azure Native. Cognitive Services. Inputs. Managed Network Provision Status - Status of the Provisioning for the managed network of a cognitive services account.
- Firewall
Sku string | FirewallSku - Firewall Sku used for FQDN Rules
- Isolation
Mode string | IsolationMode - Isolation mode for the managed network of a cognitive services account.
- Managed
Network string | ManagedKind Network Kind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- Outbound
Rules map[string]interface{} - Dictionary of
- Status
Managed
Network Provision Status - Status of the Provisioning for the managed network of a cognitive services account.
- firewall_
sku string | "Standard" | "Basic" - Firewall Sku used for FQDN Rules
- isolation_
mode string | "Disabled" | "AllowInternet Outbound" | "Allow Only Approved Outbound" - Isolation mode for the managed network of a cognitive services account.
- managed_
network_ string | "V1" | "V2"kind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound_
rules map(object | object | object) - Dictionary of
- status object
- Status of the Provisioning for the managed network of a cognitive services account.
- firewall
Sku String | FirewallSku - Firewall Sku used for FQDN Rules
- isolation
Mode String | IsolationMode - Isolation mode for the managed network of a cognitive services account.
- managed
Network String | ManagedKind Network Kind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound
Rules Map<String,Object> - Dictionary of
- status
Managed
Network Provision Status - Status of the Provisioning for the managed network of a cognitive services account.
- firewall
Sku string | FirewallSku - Firewall Sku used for FQDN Rules
- isolation
Mode string | IsolationMode - Isolation mode for the managed network of a cognitive services account.
- managed
Network string | ManagedKind Network Kind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound
Rules {[key: string]: FqdnOutbound Rule | Private Endpoint Outbound Rule | Service Tag Outbound Rule} - Dictionary of
- status
Managed
Network Provision Status - Status of the Provisioning for the managed network of a cognitive services account.
- firewall_
sku str | FirewallSku - Firewall Sku used for FQDN Rules
- isolation_
mode str | IsolationMode - Isolation mode for the managed network of a cognitive services account.
- managed_
network_ str | Managedkind Network Kind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound_
rules Mapping[str, Union[FqdnOutbound Rule, Private Endpoint Outbound Rule, Service Tag Outbound Rule]] - Dictionary of
- status
Managed
Network Provision Status - Status of the Provisioning for the managed network of a cognitive services account.
- firewall
Sku String | "Standard" | "Basic" - Firewall Sku used for FQDN Rules
- isolation
Mode String | "Disabled" | "AllowInternet Outbound" | "Allow Only Approved Outbound" - Isolation mode for the managed network of a cognitive services account.
- managed
Network String | "V1" | "V2"Kind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound
Rules Map<Property Map | Property Map | Property Map> - Dictionary of
- status Property Map
- Status of the Provisioning for the managed network of a cognitive services account.
ManagedNetworkSettingsExResponse, ManagedNetworkSettingsExResponseArgs
- Changeable
Isolation List<string>Modes - Firewall
Public stringIp Address - Public IP address assigned to the Azure Firewall.
- Network
Id string - Provisioning
State string - The provisioning state of the managed network settings.
- Firewall
Sku string - Firewall Sku used for FQDN Rules
- Isolation
Mode string - Isolation mode for the managed network of a cognitive services account.
- Managed
Network stringKind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- Outbound
Rules Dictionary<string, object> - Dictionary of
- Status
Pulumi.
Azure Native. Cognitive Services. Inputs. Managed Network Provision Status Response - Status of the Provisioning for the managed network of a cognitive services account.
- Changeable
Isolation []stringModes - Firewall
Public stringIp Address - Public IP address assigned to the Azure Firewall.
- Network
Id string - Provisioning
State string - The provisioning state of the managed network settings.
- Firewall
Sku string - Firewall Sku used for FQDN Rules
- Isolation
Mode string - Isolation mode for the managed network of a cognitive services account.
- Managed
Network stringKind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- Outbound
Rules map[string]interface{} - Dictionary of
- Status
Managed
Network Provision Status Response - Status of the Provisioning for the managed network of a cognitive services account.
- changeable_
isolation_ list(string)modes - firewall_
public_ stringip_ address - Public IP address assigned to the Azure Firewall.
- network_
id string - provisioning_
state string - The provisioning state of the managed network settings.
- firewall_
sku string - Firewall Sku used for FQDN Rules
- isolation_
mode string - Isolation mode for the managed network of a cognitive services account.
- managed_
network_ stringkind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound_
rules map(object | object | object) - Dictionary of
- status object
- Status of the Provisioning for the managed network of a cognitive services account.
- changeable
Isolation List<String>Modes - firewall
Public StringIp Address - Public IP address assigned to the Azure Firewall.
- network
Id String - provisioning
State String - The provisioning state of the managed network settings.
- firewall
Sku String - Firewall Sku used for FQDN Rules
- isolation
Mode String - Isolation mode for the managed network of a cognitive services account.
- managed
Network StringKind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound
Rules Map<String,Object> - Dictionary of
- status
Managed
Network Provision Status Response - Status of the Provisioning for the managed network of a cognitive services account.
- changeable
Isolation string[]Modes - firewall
Public stringIp Address - Public IP address assigned to the Azure Firewall.
- network
Id string - provisioning
State string - The provisioning state of the managed network settings.
- firewall
Sku string - Firewall Sku used for FQDN Rules
- isolation
Mode string - Isolation mode for the managed network of a cognitive services account.
- managed
Network stringKind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound
Rules {[key: string]: FqdnOutbound Rule Response | Private Endpoint Outbound Rule Response | Service Tag Outbound Rule Response} - Dictionary of
- status
Managed
Network Provision Status Response - Status of the Provisioning for the managed network of a cognitive services account.
- changeable_
isolation_ Sequence[str]modes - firewall_
public_ strip_ address - Public IP address assigned to the Azure Firewall.
- network_
id str - provisioning_
state str - The provisioning state of the managed network settings.
- firewall_
sku str - Firewall Sku used for FQDN Rules
- isolation_
mode str - Isolation mode for the managed network of a cognitive services account.
- managed_
network_ strkind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound_
rules Mapping[str, Union[FqdnOutbound Rule Response, Private Endpoint Outbound Rule Response, Service Tag Outbound Rule Response]] - Dictionary of
- status
Managed
Network Provision Status Response - Status of the Provisioning for the managed network of a cognitive services account.
- changeable
Isolation List<String>Modes - firewall
Public StringIp Address - Public IP address assigned to the Azure Firewall.
- network
Id String - provisioning
State String - The provisioning state of the managed network settings.
- firewall
Sku String - Firewall Sku used for FQDN Rules
- isolation
Mode String - Isolation mode for the managed network of a cognitive services account.
- managed
Network StringKind - The Kind of the managed network. Users can switch from V1 to V2 for granular access controls, but cannot switch back to V1 once V2 is enabled.
- outbound
Rules Map<Property Map | Property Map | Property Map> - Dictionary of
- status Property Map
- Status of the Provisioning for the managed network of a cognitive services account.
ManagedNetworkSettingsProperties, ManagedNetworkSettingsPropertiesArgs
The properties of the managed network settings of a cognitive services account.- Managed
Network Pulumi.Azure Native. Cognitive Services. Inputs. Managed Network Settings Ex - Managed Network settings for a cognitive services account.
- Managed
Network ManagedNetwork Settings Ex - Managed Network settings for a cognitive services account.
- managed_
network object - Managed Network settings for a cognitive services account.
- managed
Network ManagedNetwork Settings Ex - Managed Network settings for a cognitive services account.
- managed
Network ManagedNetwork Settings Ex - Managed Network settings for a cognitive services account.
- managed_
network ManagedNetwork Settings Ex - Managed Network settings for a cognitive services account.
- managed
Network Property Map - Managed Network settings for a cognitive services account.
ManagedNetworkSettingsPropertiesResponse, ManagedNetworkSettingsPropertiesResponseArgs
The properties of the managed network settings of a cognitive services account.- Provisioning
State string - The current deployment state of the managed network resource. The provisioningState is to indicate states for resource provisioning.
- Managed
Network Pulumi.Azure Native. Cognitive Services. Inputs. Managed Network Settings Ex Response - Managed Network settings for a cognitive services account.
- Provisioning
State string - The current deployment state of the managed network resource. The provisioningState is to indicate states for resource provisioning.
- Managed
Network ManagedNetwork Settings Ex Response - Managed Network settings for a cognitive services account.
- provisioning_
state string - The current deployment state of the managed network resource. The provisioningState is to indicate states for resource provisioning.
- managed_
network object - Managed Network settings for a cognitive services account.
- provisioning
State String - The current deployment state of the managed network resource. The provisioningState is to indicate states for resource provisioning.
- managed
Network ManagedNetwork Settings Ex Response - Managed Network settings for a cognitive services account.
- provisioning
State string - The current deployment state of the managed network resource. The provisioningState is to indicate states for resource provisioning.
- managed
Network ManagedNetwork Settings Ex Response - Managed Network settings for a cognitive services account.
- provisioning_
state str - The current deployment state of the managed network resource. The provisioningState is to indicate states for resource provisioning.
- managed_
network ManagedNetwork Settings Ex Response - Managed Network settings for a cognitive services account.
- provisioning
State String - The current deployment state of the managed network resource. The provisioningState is to indicate states for resource provisioning.
- managed
Network Property Map - Managed Network settings for a cognitive services account.
ManagedNetworkStatus, ManagedNetworkStatusArgs
- Inactive
Inactive- Active
Active
- Managed
Network Status Inactive Inactive- Managed
Network Status Active Active
- "Inactive"
Inactive- "Active"
Active
- Inactive
Inactive- Active
Active
- Inactive
Inactive- Active
Active
- INACTIVE
Inactive- ACTIVE
Active
- "Inactive"
Inactive- "Active"
Active
PrivateEndpointOutboundRule, PrivateEndpointOutboundRuleArgs
Private Endpoint outbound rule for the managed network of a cognitive services account.- Category
string | Pulumi.
Azure Native. Cognitive Services. Rule Category - Category of a managed network Outbound Rule of a cognitive services account.
- Destination
Pulumi.
Azure Native. Cognitive Services. Inputs. Private Endpoint Outbound Rule Destination - Private Endpoint destination.
- Fqdns List<string>
- List of FQDNs associated with the private endpoint outbound rule.
- Status
string | Pulumi.
Azure Native. Cognitive Services. Rule Status - Type of a managed network Outbound Rule of a cognitive services account.
- Category
string | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- Destination
Private
Endpoint Outbound Rule Destination - Private Endpoint destination.
- Fqdns []string
- List of FQDNs associated with the private endpoint outbound rule.
- Status
string | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
string | "Required" | "Recommended" | "User
Defined" | "Dependency" - Category of a managed network Outbound Rule of a cognitive services account.
- destination object
- Private Endpoint destination.
- fqdns list(string)
- List of FQDNs associated with the private endpoint outbound rule.
- status string | "Inactive" | "Active" | "Provisioning" | "Deleting" | "Failed"
- Type of a managed network Outbound Rule of a cognitive services account.
- category
String | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- destination
Private
Endpoint Outbound Rule Destination - Private Endpoint destination.
- fqdns List<String>
- List of FQDNs associated with the private endpoint outbound rule.
- status
String | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
string | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- destination
Private
Endpoint Outbound Rule Destination - Private Endpoint destination.
- fqdns string[]
- List of FQDNs associated with the private endpoint outbound rule.
- status
string | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
str | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- destination
Private
Endpoint Outbound Rule Destination - Private Endpoint destination.
- fqdns Sequence[str]
- List of FQDNs associated with the private endpoint outbound rule.
- status
str | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
String | "Required" | "Recommended" | "User
Defined" | "Dependency" - Category of a managed network Outbound Rule of a cognitive services account.
- destination Property Map
- Private Endpoint destination.
- fqdns List<String>
- List of FQDNs associated with the private endpoint outbound rule.
- status String | "Inactive" | "Active" | "Provisioning" | "Deleting" | "Failed"
- Type of a managed network Outbound Rule of a cognitive services account.
PrivateEndpointOutboundRuleDestination, PrivateEndpointOutboundRuleDestinationArgs
Private Endpoint destination for an outbound rule.- Service
Resource stringId - The Azure resource ID of the target private endpoint service.
- Subresource
Target string - The subresource of the target service to connect to.
- Service
Resource stringId - The Azure resource ID of the target private endpoint service.
- Subresource
Target string - The subresource of the target service to connect to.
- service_
resource_ stringid - The Azure resource ID of the target private endpoint service.
- subresource_
target string - The subresource of the target service to connect to.
- service
Resource StringId - The Azure resource ID of the target private endpoint service.
- subresource
Target String - The subresource of the target service to connect to.
- service
Resource stringId - The Azure resource ID of the target private endpoint service.
- subresource
Target string - The subresource of the target service to connect to.
- service_
resource_ strid - The Azure resource ID of the target private endpoint service.
- subresource_
target str - The subresource of the target service to connect to.
- service
Resource StringId - The Azure resource ID of the target private endpoint service.
- subresource
Target String - The subresource of the target service to connect to.
PrivateEndpointOutboundRuleDestinationResponse, PrivateEndpointOutboundRuleDestinationResponseArgs
Private Endpoint destination for an outbound rule.- Service
Resource stringId - The Azure resource ID of the target private endpoint service.
- Subresource
Target string - The subresource of the target service to connect to.
- Service
Resource stringId - The Azure resource ID of the target private endpoint service.
- Subresource
Target string - The subresource of the target service to connect to.
- service_
resource_ stringid - The Azure resource ID of the target private endpoint service.
- subresource_
target string - The subresource of the target service to connect to.
- service
Resource StringId - The Azure resource ID of the target private endpoint service.
- subresource
Target String - The subresource of the target service to connect to.
- service
Resource stringId - The Azure resource ID of the target private endpoint service.
- subresource
Target string - The subresource of the target service to connect to.
- service_
resource_ strid - The Azure resource ID of the target private endpoint service.
- subresource_
target str - The subresource of the target service to connect to.
- service
Resource StringId - The Azure resource ID of the target private endpoint service.
- subresource
Target String - The subresource of the target service to connect to.
PrivateEndpointOutboundRuleResponse, PrivateEndpointOutboundRuleResponseArgs
Private Endpoint outbound rule for the managed network of a cognitive services account.- Error
Information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- Parent
Rule List<string>Names - Category string
- Category of a managed network Outbound Rule of a cognitive services account.
- Destination
Pulumi.
Azure Native. Cognitive Services. Inputs. Private Endpoint Outbound Rule Destination Response - Private Endpoint destination.
- Fqdns List<string>
- List of FQDNs associated with the private endpoint outbound rule.
- Status string
- Type of a managed network Outbound Rule of a cognitive services account.
- Error
Information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- Parent
Rule []stringNames - Category string
- Category of a managed network Outbound Rule of a cognitive services account.
- Destination
Private
Endpoint Outbound Rule Destination Response - Private Endpoint destination.
- Fqdns []string
- List of FQDNs associated with the private endpoint outbound rule.
- Status string
- Type of a managed network Outbound Rule of a cognitive services account.
- error_
information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent_
rule_ list(string)names - category string
- Category of a managed network Outbound Rule of a cognitive services account.
- destination object
- Private Endpoint destination.
- fqdns list(string)
- List of FQDNs associated with the private endpoint outbound rule.
- status string
- Type of a managed network Outbound Rule of a cognitive services account.
- error
Information String - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent
Rule List<String>Names - category String
- Category of a managed network Outbound Rule of a cognitive services account.
- destination
Private
Endpoint Outbound Rule Destination Response - Private Endpoint destination.
- fqdns List<String>
- List of FQDNs associated with the private endpoint outbound rule.
- status String
- Type of a managed network Outbound Rule of a cognitive services account.
- error
Information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent
Rule string[]Names - category string
- Category of a managed network Outbound Rule of a cognitive services account.
- destination
Private
Endpoint Outbound Rule Destination Response - Private Endpoint destination.
- fqdns string[]
- List of FQDNs associated with the private endpoint outbound rule.
- status string
- Type of a managed network Outbound Rule of a cognitive services account.
- error_
information str - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent_
rule_ Sequence[str]names - category str
- Category of a managed network Outbound Rule of a cognitive services account.
- destination
Private
Endpoint Outbound Rule Destination Response - Private Endpoint destination.
- fqdns Sequence[str]
- List of FQDNs associated with the private endpoint outbound rule.
- status str
- Type of a managed network Outbound Rule of a cognitive services account.
- error
Information String - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent
Rule List<String>Names - category String
- Category of a managed network Outbound Rule of a cognitive services account.
- destination Property Map
- Private Endpoint destination.
- fqdns List<String>
- List of FQDNs associated with the private endpoint outbound rule.
- status String
- Type of a managed network Outbound Rule of a cognitive services account.
RuleAction, RuleActionArgs
- Allow
Allow- Deny
Deny
- Rule
Action Allow Allow- Rule
Action Deny Deny
- "Allow"
Allow- "Deny"
Deny
- Allow
Allow- Deny
Deny
- Allow
Allow- Deny
Deny
- ALLOW
Allow- DENY
Deny
- "Allow"
Allow- "Deny"
Deny
RuleCategory, RuleCategoryArgs
- Required
Required- Recommended
Recommended- User
Defined UserDefined- Dependency
Dependency
- Rule
Category Required Required- Rule
Category Recommended Recommended- Rule
Category User Defined UserDefined- Rule
Category Dependency Dependency
- "Required"
Required- "Recommended"
Recommended- "User
Defined" UserDefined- "Dependency"
Dependency
- Required
Required- Recommended
Recommended- User
Defined UserDefined- Dependency
Dependency
- Required
Required- Recommended
Recommended- User
Defined UserDefined- Dependency
Dependency
- REQUIRED
Required- RECOMMENDED
Recommended- USER_DEFINED
UserDefined- DEPENDENCY
Dependency
- "Required"
Required- "Recommended"
Recommended- "User
Defined" UserDefined- "Dependency"
Dependency
RuleStatus, RuleStatusArgs
- Inactive
Inactive- Active
Active- Provisioning
Provisioning- Deleting
Deleting- Failed
Failed
- Rule
Status Inactive Inactive- Rule
Status Active Active- Rule
Status Provisioning Provisioning- Rule
Status Deleting Deleting- Rule
Status Failed Failed
- "Inactive"
Inactive- "Active"
Active- "Provisioning"
Provisioning- "Deleting"
Deleting- "Failed"
Failed
- Inactive
Inactive- Active
Active- Provisioning
Provisioning- Deleting
Deleting- Failed
Failed
- Inactive
Inactive- Active
Active- Provisioning
Provisioning- Deleting
Deleting- Failed
Failed
- INACTIVE
Inactive- ACTIVE
Active- PROVISIONING
Provisioning- DELETING
Deleting- FAILED
Failed
- "Inactive"
Inactive- "Active"
Active- "Provisioning"
Provisioning- "Deleting"
Deleting- "Failed"
Failed
ServiceTagOutboundRule, ServiceTagOutboundRuleArgs
Service Tag outbound rule for the managed network of a cognitive services account.- Category
string | Pulumi.
Azure Native. Cognitive Services. Rule Category - Category of a managed network Outbound Rule of a cognitive services account.
- Destination
Pulumi.
Azure Native. Cognitive Services. Inputs. Service Tag Outbound Rule Destination - Service Tag destination.
- Status
string | Pulumi.
Azure Native. Cognitive Services. Rule Status - Type of a managed network Outbound Rule of a cognitive services account.
- Category
string | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- Destination
Service
Tag Outbound Rule Destination - Service Tag destination.
- Status
string | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
string | "Required" | "Recommended" | "User
Defined" | "Dependency" - Category of a managed network Outbound Rule of a cognitive services account.
- destination object
- Service Tag destination.
- status string | "Inactive" | "Active" | "Provisioning" | "Deleting" | "Failed"
- Type of a managed network Outbound Rule of a cognitive services account.
- category
String | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- destination
Service
Tag Outbound Rule Destination - Service Tag destination.
- status
String | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
string | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- destination
Service
Tag Outbound Rule Destination - Service Tag destination.
- status
string | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
str | Rule
Category - Category of a managed network Outbound Rule of a cognitive services account.
- destination
Service
Tag Outbound Rule Destination - Service Tag destination.
- status
str | Rule
Status - Type of a managed network Outbound Rule of a cognitive services account.
- category
String | "Required" | "Recommended" | "User
Defined" | "Dependency" - Category of a managed network Outbound Rule of a cognitive services account.
- destination Property Map
- Service Tag destination.
- status String | "Inactive" | "Active" | "Provisioning" | "Deleting" | "Failed"
- Type of a managed network Outbound Rule of a cognitive services account.
ServiceTagOutboundRuleDestination, ServiceTagOutboundRuleDestinationArgs
Service Tag destination for an outbound rule.- Action
string | Pulumi.
Azure Native. Cognitive Services. Rule Action - The action for the service tag outbound rule.
- Address
Prefixes List<string> - Optional address prefixes. If provided, the serviceTag property will be ignored.
- Port
Ranges string - Destination port ranges.
- Protocol string
- Network protocol used by the service tag rule.
- Service
Tag string - Name of the Azure service tag to target.
- Action
string | Rule
Action - The action for the service tag outbound rule.
- Address
Prefixes []string - Optional address prefixes. If provided, the serviceTag property will be ignored.
- Port
Ranges string - Destination port ranges.
- Protocol string
- Network protocol used by the service tag rule.
- Service
Tag string - Name of the Azure service tag to target.
- action string | "Allow" | "Deny"
- The action for the service tag outbound rule.
- address_
prefixes list(string) - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port_
ranges string - Destination port ranges.
- protocol string
- Network protocol used by the service tag rule.
- service_
tag string - Name of the Azure service tag to target.
- action
String | Rule
Action - The action for the service tag outbound rule.
- address
Prefixes List<String> - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port
Ranges String - Destination port ranges.
- protocol String
- Network protocol used by the service tag rule.
- service
Tag String - Name of the Azure service tag to target.
- action
string | Rule
Action - The action for the service tag outbound rule.
- address
Prefixes string[] - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port
Ranges string - Destination port ranges.
- protocol string
- Network protocol used by the service tag rule.
- service
Tag string - Name of the Azure service tag to target.
- action
str | Rule
Action - The action for the service tag outbound rule.
- address_
prefixes Sequence[str] - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port_
ranges str - Destination port ranges.
- protocol str
- Network protocol used by the service tag rule.
- service_
tag str - Name of the Azure service tag to target.
- action String | "Allow" | "Deny"
- The action for the service tag outbound rule.
- address
Prefixes List<String> - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port
Ranges String - Destination port ranges.
- protocol String
- Network protocol used by the service tag rule.
- service
Tag String - Name of the Azure service tag to target.
ServiceTagOutboundRuleDestinationResponse, ServiceTagOutboundRuleDestinationResponseArgs
Service Tag destination for an outbound rule.- Action string
- The action for the service tag outbound rule.
- Address
Prefixes List<string> - Optional address prefixes. If provided, the serviceTag property will be ignored.
- Port
Ranges string - Destination port ranges.
- Protocol string
- Network protocol used by the service tag rule.
- Service
Tag string - Name of the Azure service tag to target.
- Action string
- The action for the service tag outbound rule.
- Address
Prefixes []string - Optional address prefixes. If provided, the serviceTag property will be ignored.
- Port
Ranges string - Destination port ranges.
- Protocol string
- Network protocol used by the service tag rule.
- Service
Tag string - Name of the Azure service tag to target.
- action string
- The action for the service tag outbound rule.
- address_
prefixes list(string) - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port_
ranges string - Destination port ranges.
- protocol string
- Network protocol used by the service tag rule.
- service_
tag string - Name of the Azure service tag to target.
- action String
- The action for the service tag outbound rule.
- address
Prefixes List<String> - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port
Ranges String - Destination port ranges.
- protocol String
- Network protocol used by the service tag rule.
- service
Tag String - Name of the Azure service tag to target.
- action string
- The action for the service tag outbound rule.
- address
Prefixes string[] - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port
Ranges string - Destination port ranges.
- protocol string
- Network protocol used by the service tag rule.
- service
Tag string - Name of the Azure service tag to target.
- action str
- The action for the service tag outbound rule.
- address_
prefixes Sequence[str] - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port_
ranges str - Destination port ranges.
- protocol str
- Network protocol used by the service tag rule.
- service_
tag str - Name of the Azure service tag to target.
- action String
- The action for the service tag outbound rule.
- address
Prefixes List<String> - Optional address prefixes. If provided, the serviceTag property will be ignored.
- port
Ranges String - Destination port ranges.
- protocol String
- Network protocol used by the service tag rule.
- service
Tag String - Name of the Azure service tag to target.
ServiceTagOutboundRuleResponse, ServiceTagOutboundRuleResponseArgs
Service Tag outbound rule for the managed network of a cognitive services account.- Error
Information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- Parent
Rule List<string>Names - Category string
- Category of a managed network Outbound Rule of a cognitive services account.
- Destination
Pulumi.
Azure Native. Cognitive Services. Inputs. Service Tag Outbound Rule Destination Response - Service Tag destination.
- Status string
- Type of a managed network Outbound Rule of a cognitive services account.
- Error
Information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- Parent
Rule []stringNames - Category string
- Category of a managed network Outbound Rule of a cognitive services account.
- Destination
Service
Tag Outbound Rule Destination Response - Service Tag destination.
- Status string
- Type of a managed network Outbound Rule of a cognitive services account.
- error_
information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent_
rule_ list(string)names - category string
- Category of a managed network Outbound Rule of a cognitive services account.
- destination object
- Service Tag destination.
- status string
- Type of a managed network Outbound Rule of a cognitive services account.
- error
Information String - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent
Rule List<String>Names - category String
- Category of a managed network Outbound Rule of a cognitive services account.
- destination
Service
Tag Outbound Rule Destination Response - Service Tag destination.
- status String
- Type of a managed network Outbound Rule of a cognitive services account.
- error
Information string - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent
Rule string[]Names - category string
- Category of a managed network Outbound Rule of a cognitive services account.
- destination
Service
Tag Outbound Rule Destination Response - Service Tag destination.
- status string
- Type of a managed network Outbound Rule of a cognitive services account.
- error_
information str - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent_
rule_ Sequence[str]names - category str
- Category of a managed network Outbound Rule of a cognitive services account.
- destination
Service
Tag Outbound Rule Destination Response - Service Tag destination.
- status str
- Type of a managed network Outbound Rule of a cognitive services account.
- error
Information String - Error information about an outbound rule of a cognitive services account if RuleStatus is failed.
- parent
Rule List<String>Names - category String
- Category of a managed network Outbound Rule of a cognitive services account.
- destination Property Map
- Service Tag destination.
- status String
- Type of a managed network Outbound Rule of a cognitive services account.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at string - The timestamp of resource creation (UTC).
- created_
by string - The identity that created the resource.
- created_
by_ stringtype - The type of identity that created the resource.
- last_
modified_ stringat - The timestamp of resource last modification (UTC)
- last_
modified_ stringby - The identity that last modified the resource.
- last_
modified_ stringby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:cognitiveservices:ManagedNetworkSetting default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.CognitiveServices/accounts/{accountName}/managedNetworks/{managedNetworkName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Wednesday, Aug 5, 2026 by Pulumi