azure-native.machinelearningservices.OutboundRule
Explore with Pulumi AI
Uses Azure REST API version 2025-04-01-preview.
Other available API versions: 2025-07-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native machinelearningservices [ApiVersion]
. See the version guide for details.
Example Usage
CreateOrUpdate OutboundRule
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var outboundRule = new AzureNative.MachineLearningServices.OutboundRule("outboundRule", new()
{
ManagedNetworkName = "default",
Properties = new AzureNative.MachineLearningServices.Inputs.FqdnOutboundRuleArgs
{
Category = AzureNative.MachineLearningServices.RuleCategory.UserDefined,
Destination = "destination_endpoint",
Status = AzureNative.MachineLearningServices.RuleStatus.Active,
Type = "FQDN",
},
ResourceGroupName = "test-rg",
RuleName = "rule_name_1",
WorkspaceName = "aml-workspace-name",
});
});
package main
import (
machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := machinelearningservices.NewOutboundRule(ctx, "outboundRule", &machinelearningservices.OutboundRuleArgs{
ManagedNetworkName: pulumi.String("default"),
Properties: &machinelearningservices.FqdnOutboundRuleArgs{
Category: pulumi.String(machinelearningservices.RuleCategoryUserDefined),
Destination: pulumi.String("destination_endpoint"),
Status: pulumi.String(machinelearningservices.RuleStatusActive),
Type: pulumi.String("FQDN"),
},
ResourceGroupName: pulumi.String("test-rg"),
RuleName: pulumi.String("rule_name_1"),
WorkspaceName: pulumi.String("aml-workspace-name"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.OutboundRule;
import com.pulumi.azurenative.machinelearningservices.OutboundRuleArgs;
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 outboundRule = new OutboundRule("outboundRule", OutboundRuleArgs.builder()
.managedNetworkName("default")
.properties(FqdnOutboundRuleArgs.builder()
.category("UserDefined")
.destination("destination_endpoint")
.status("Active")
.type("FQDN")
.build())
.resourceGroupName("test-rg")
.ruleName("rule_name_1")
.workspaceName("aml-workspace-name")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const outboundRule = new azure_native.machinelearningservices.OutboundRule("outboundRule", {
managedNetworkName: "default",
properties: {
category: azure_native.machinelearningservices.RuleCategory.UserDefined,
destination: "destination_endpoint",
status: azure_native.machinelearningservices.RuleStatus.Active,
type: "FQDN",
},
resourceGroupName: "test-rg",
ruleName: "rule_name_1",
workspaceName: "aml-workspace-name",
});
import pulumi
import pulumi_azure_native as azure_native
outbound_rule = azure_native.machinelearningservices.OutboundRule("outboundRule",
managed_network_name="default",
properties={
"category": azure_native.machinelearningservices.RuleCategory.USER_DEFINED,
"destination": "destination_endpoint",
"status": azure_native.machinelearningservices.RuleStatus.ACTIVE,
"type": "FQDN",
},
resource_group_name="test-rg",
rule_name="rule_name_1",
workspace_name="aml-workspace-name")
resources:
outboundRule:
type: azure-native:machinelearningservices:OutboundRule
properties:
managedNetworkName: default
properties:
category: UserDefined
destination: destination_endpoint
status: Active
type: FQDN
resourceGroupName: test-rg
ruleName: rule_name_1
workspaceName: aml-workspace-name
Create OutboundRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new OutboundRule(name: string, args: OutboundRuleArgs, opts?: CustomResourceOptions);
@overload
def OutboundRule(resource_name: str,
args: OutboundRuleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def OutboundRule(resource_name: str,
opts: Optional[ResourceOptions] = None,
managed_network_name: Optional[str] = None,
properties: Optional[Union[FqdnOutboundRuleArgs, PrivateEndpointOutboundRuleArgs, ServiceTagOutboundRuleArgs]] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
rule_name: Optional[str] = None)
func NewOutboundRule(ctx *Context, name string, args OutboundRuleArgs, opts ...ResourceOption) (*OutboundRule, error)
public OutboundRule(string name, OutboundRuleArgs args, CustomResourceOptions? opts = null)
public OutboundRule(String name, OutboundRuleArgs args)
public OutboundRule(String name, OutboundRuleArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:OutboundRule
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 OutboundRuleArgs
- 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 OutboundRuleArgs
- 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 OutboundRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args OutboundRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args OutboundRuleArgs
- 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 outboundRuleResource = new AzureNative.MachineLearningServices.OutboundRule("outboundRuleResource", new()
{
ManagedNetworkName = "string",
Properties = new AzureNative.MachineLearningServices.Inputs.FqdnOutboundRuleArgs
{
Type = "FQDN",
Category = "string",
Destination = "string",
Status = "string",
},
ResourceGroupName = "string",
WorkspaceName = "string",
RuleName = "string",
});
example, err := machinelearningservices.NewOutboundRule(ctx, "outboundRuleResource", &machinelearningservices.OutboundRuleArgs{
ManagedNetworkName: pulumi.String("string"),
Properties: &machinelearningservices.FqdnOutboundRuleArgs{
Type: pulumi.String("FQDN"),
Category: pulumi.String("string"),
Destination: pulumi.String("string"),
Status: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
WorkspaceName: pulumi.String("string"),
RuleName: pulumi.String("string"),
})
var outboundRuleResource = new OutboundRule("outboundRuleResource", OutboundRuleArgs.builder()
.managedNetworkName("string")
.properties(FqdnOutboundRuleArgs.builder()
.type("FQDN")
.category("string")
.destination("string")
.status("string")
.build())
.resourceGroupName("string")
.workspaceName("string")
.ruleName("string")
.build());
outbound_rule_resource = azure_native.machinelearningservices.OutboundRule("outboundRuleResource",
managed_network_name="string",
properties={
"type": "FQDN",
"category": "string",
"destination": "string",
"status": "string",
},
resource_group_name="string",
workspace_name="string",
rule_name="string")
const outboundRuleResource = new azure_native.machinelearningservices.OutboundRule("outboundRuleResource", {
managedNetworkName: "string",
properties: {
type: "FQDN",
category: "string",
destination: "string",
status: "string",
},
resourceGroupName: "string",
workspaceName: "string",
ruleName: "string",
});
type: azure-native:machinelearningservices:OutboundRule
properties:
managedNetworkName: string
properties:
category: string
destination: string
status: string
type: FQDN
resourceGroupName: string
ruleName: string
workspaceName: string
OutboundRule 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 OutboundRule resource accepts the following input properties:
- Managed
Network stringName - Name of the managedNetwork associated with the workspace. Only 'default' is supported.
- Properties
Pulumi.
Azure | Pulumi.Native. Machine Learning Services. Inputs. Fqdn Outbound Rule Azure | Pulumi.Native. Machine Learning Services. Inputs. Private Endpoint Outbound Rule Azure Native. Machine Learning Services. Inputs. Service Tag Outbound Rule - Outbound Rule for the managed network of a machine learning workspace.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Azure Machine Learning Workspace Name
- Rule
Name string - Name of the workspace managed network outbound rule
- Managed
Network stringName - Name of the managedNetwork associated with the workspace. Only 'default' is supported.
- Properties
Fqdn
Outbound | PrivateRule Args Endpoint | ServiceOutbound Rule Args Tag Outbound Rule Args - Outbound Rule for the managed network of a machine learning workspace.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - Azure Machine Learning Workspace Name
- Rule
Name string - Name of the workspace managed network outbound rule
- managed
Network StringName - Name of the managedNetwork associated with the workspace. Only 'default' is supported.
- properties
Fqdn
Outbound | PrivateRule Endpoint | ServiceOutbound Rule Tag Outbound Rule - Outbound Rule for the managed network of a machine learning workspace.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Azure Machine Learning Workspace Name
- rule
Name String - Name of the workspace managed network outbound rule
- managed
Network stringName - Name of the managedNetwork associated with the workspace. Only 'default' is supported.
- properties
Fqdn
Outbound | PrivateRule Endpoint | ServiceOutbound Rule Tag Outbound Rule - Outbound Rule for the managed network of a machine learning workspace.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- workspace
Name string - Azure Machine Learning Workspace Name
- rule
Name string - Name of the workspace managed network outbound rule
- managed_
network_ strname - Name of the managedNetwork associated with the workspace. Only 'default' is supported.
- properties
Fqdn
Outbound | PrivateRule Args Endpoint | ServiceOutbound Rule Args Tag Outbound Rule Args - Outbound Rule for the managed network of a machine learning workspace.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- workspace_
name str - Azure Machine Learning Workspace Name
- rule_
name str - Name of the workspace managed network outbound rule
- managed
Network StringName - Name of the managedNetwork associated with the workspace. Only 'default' is supported.
- properties Property Map | Property Map | Property Map
- Outbound Rule for the managed network of a machine learning workspace.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - Azure Machine Learning Workspace Name
- rule
Name String - Name of the workspace managed network outbound rule
Outputs
All input properties are implicitly available as output properties. Additionally, the OutboundRule 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. Machine Learning 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 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
FqdnOutboundRule, FqdnOutboundRuleArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Rule Category - Category of a managed network Outbound Rule of a machine learning workspace.
- Destination string
- Status
string | Pulumi.
Azure Native. Machine Learning Services. Rule Status - Type of a managed network Outbound Rule of a machine learning workspace.
- Category
string | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- Destination string
- Status
string | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
String | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- destination String
- status
String | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
string | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- destination string
- status
string | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
str | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- destination str
- status
str | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
String | "Required" | "Recommended" | "User
Defined" | "Dependency" - Category of a managed network Outbound Rule of a machine learning workspace.
- destination String
- status String | "Inactive" | "Active"
- Type of a managed network Outbound Rule of a machine learning workspace.
FqdnOutboundRuleResponse, FqdnOutboundRuleResponseArgs
- Category string
- Category of a managed network Outbound Rule of a machine learning workspace.
- Destination string
- Error
Information string - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- Parent
Rule List<string>Names - Status string
- Type of a managed network Outbound Rule of a machine learning workspace.
- Category string
- Category of a managed network Outbound Rule of a machine learning workspace.
- Destination string
- Error
Information string - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- Parent
Rule []stringNames - Status string
- Type of a managed network Outbound Rule of a machine learning workspace.
- category String
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination String
- error
Information String - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- parent
Rule List<String>Names - status String
- Type of a managed network Outbound Rule of a machine learning workspace.
- category string
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination string
- error
Information string - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- parent
Rule string[]Names - status string
- Type of a managed network Outbound Rule of a machine learning workspace.
- category str
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination str
- error_
information str - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- parent_
rule_ Sequence[str]names - status str
- Type of a managed network Outbound Rule of a machine learning workspace.
- category String
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination String
- error
Information String - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- parent
Rule List<String>Names - status String
- Type of a managed network Outbound Rule of a machine learning workspace.
PrivateEndpointDestination, PrivateEndpointDestinationArgs
- Service
Resource stringId - Spark
Enabled bool - Spark
Status string | Pulumi.Azure Native. Machine Learning Services. Rule Status - Type of a managed network Outbound Rule of a machine learning workspace.
- Subresource
Target string
- Service
Resource stringId - Spark
Enabled bool - Spark
Status string | RuleStatus - Type of a managed network Outbound Rule of a machine learning workspace.
- Subresource
Target string
- service
Resource StringId - spark
Enabled Boolean - spark
Status String | RuleStatus - Type of a managed network Outbound Rule of a machine learning workspace.
- subresource
Target String
- service
Resource stringId - spark
Enabled boolean - spark
Status string | RuleStatus - Type of a managed network Outbound Rule of a machine learning workspace.
- subresource
Target string
- service_
resource_ strid - spark_
enabled bool - spark_
status str | RuleStatus - Type of a managed network Outbound Rule of a machine learning workspace.
- subresource_
target str
- service
Resource StringId - spark
Enabled Boolean - spark
Status String | "Inactive" | "Active" - Type of a managed network Outbound Rule of a machine learning workspace.
- subresource
Target String
PrivateEndpointDestinationResponse, PrivateEndpointDestinationResponseArgs
- Service
Resource stringId - Spark
Enabled bool - Spark
Status string - Type of a managed network Outbound Rule of a machine learning workspace.
- Subresource
Target string
- Service
Resource stringId - Spark
Enabled bool - Spark
Status string - Type of a managed network Outbound Rule of a machine learning workspace.
- Subresource
Target string
- service
Resource StringId - spark
Enabled Boolean - spark
Status String - Type of a managed network Outbound Rule of a machine learning workspace.
- subresource
Target String
- service
Resource stringId - spark
Enabled boolean - spark
Status string - Type of a managed network Outbound Rule of a machine learning workspace.
- subresource
Target string
- service_
resource_ strid - spark_
enabled bool - spark_
status str - Type of a managed network Outbound Rule of a machine learning workspace.
- subresource_
target str
- service
Resource StringId - spark
Enabled Boolean - spark
Status String - Type of a managed network Outbound Rule of a machine learning workspace.
- subresource
Target String
PrivateEndpointOutboundRule, PrivateEndpointOutboundRuleArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Rule Category - Category of a managed network Outbound Rule of a machine learning workspace.
- Destination
Pulumi.
Azure Native. Machine Learning Services. Inputs. Private Endpoint Destination - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- Fqdns List<string>
- Status
string | Pulumi.
Azure Native. Machine Learning Services. Rule Status - Type of a managed network Outbound Rule of a machine learning workspace.
- Category
string | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- Destination
Private
Endpoint Destination - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- Fqdns []string
- Status
string | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
String | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Private
Endpoint Destination - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- fqdns List<String>
- status
String | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
string | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Private
Endpoint Destination - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- fqdns string[]
- status
string | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
str | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Private
Endpoint Destination - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- fqdns Sequence[str]
- status
str | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
String | "Required" | "Recommended" | "User
Defined" | "Dependency" - Category of a managed network Outbound Rule of a machine learning workspace.
- destination Property Map
- Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- fqdns List<String>
- status String | "Inactive" | "Active"
- Type of a managed network Outbound Rule of a machine learning workspace.
PrivateEndpointOutboundRuleResponse, PrivateEndpointOutboundRuleResponseArgs
- Category string
- Category of a managed network Outbound Rule of a machine learning workspace.
- Destination
Pulumi.
Azure Native. Machine Learning Services. Inputs. Private Endpoint Destination Response - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- Error
Information string - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- Fqdns List<string>
- Parent
Rule List<string>Names - Status string
- Type of a managed network Outbound Rule of a machine learning workspace.
- Category string
- Category of a managed network Outbound Rule of a machine learning workspace.
- Destination
Private
Endpoint Destination Response - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- Error
Information string - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- Fqdns []string
- Parent
Rule []stringNames - Status string
- Type of a managed network Outbound Rule of a machine learning workspace.
- category String
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Private
Endpoint Destination Response - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- error
Information String - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- fqdns List<String>
- parent
Rule List<String>Names - status String
- Type of a managed network Outbound Rule of a machine learning workspace.
- category string
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Private
Endpoint Destination Response - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- error
Information string - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- fqdns string[]
- parent
Rule string[]Names - status string
- Type of a managed network Outbound Rule of a machine learning workspace.
- category str
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Private
Endpoint Destination Response - Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- error_
information str - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- fqdns Sequence[str]
- parent_
rule_ Sequence[str]names - status str
- Type of a managed network Outbound Rule of a machine learning workspace.
- category String
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination Property Map
- Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
- error
Information String - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- fqdns List<String>
- parent
Rule List<String>Names - status String
- Type of a managed network Outbound Rule of a machine learning workspace.
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
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
RuleStatus, RuleStatusArgs
- Inactive
- Inactive
- Active
- Active
- Rule
Status Inactive - Inactive
- Rule
Status Active - Active
- Inactive
- Inactive
- Active
- Active
- Inactive
- Inactive
- Active
- Active
- INACTIVE
- Inactive
- ACTIVE
- Active
- "Inactive"
- Inactive
- "Active"
- Active
ServiceTagDestination, ServiceTagDestinationArgs
- Action
string | Pulumi.
Azure Native. Machine Learning Services. Rule Action - The action enum for networking rule.
- Address
Prefixes List<string> - Optional, if provided, the ServiceTag property will be ignored.
- Port
Ranges string - Protocol string
- Service
Tag string
- Action
string | Rule
Action - The action enum for networking rule.
- Address
Prefixes []string - Optional, if provided, the ServiceTag property will be ignored.
- Port
Ranges string - Protocol string
- Service
Tag string
- action
String | Rule
Action - The action enum for networking rule.
- address
Prefixes List<String> - Optional, if provided, the ServiceTag property will be ignored.
- port
Ranges String - protocol String
- service
Tag String
- action
string | Rule
Action - The action enum for networking rule.
- address
Prefixes string[] - Optional, if provided, the ServiceTag property will be ignored.
- port
Ranges string - protocol string
- service
Tag string
- action
str | Rule
Action - The action enum for networking rule.
- address_
prefixes Sequence[str] - Optional, if provided, the ServiceTag property will be ignored.
- port_
ranges str - protocol str
- service_
tag str
- action String | "Allow" | "Deny"
- The action enum for networking rule.
- address
Prefixes List<String> - Optional, if provided, the ServiceTag property will be ignored.
- port
Ranges String - protocol String
- service
Tag String
ServiceTagDestinationResponse, ServiceTagDestinationResponseArgs
- Address
Prefixes List<string> - Optional, if provided, the ServiceTag property will be ignored.
- Action string
- The action enum for networking rule.
- Port
Ranges string - Protocol string
- Service
Tag string
- Address
Prefixes []string - Optional, if provided, the ServiceTag property will be ignored.
- Action string
- The action enum for networking rule.
- Port
Ranges string - Protocol string
- Service
Tag string
- address
Prefixes List<String> - Optional, if provided, the ServiceTag property will be ignored.
- action String
- The action enum for networking rule.
- port
Ranges String - protocol String
- service
Tag String
- address
Prefixes string[] - Optional, if provided, the ServiceTag property will be ignored.
- action string
- The action enum for networking rule.
- port
Ranges string - protocol string
- service
Tag string
- address_
prefixes Sequence[str] - Optional, if provided, the ServiceTag property will be ignored.
- action str
- The action enum for networking rule.
- port_
ranges str - protocol str
- service_
tag str
- address
Prefixes List<String> - Optional, if provided, the ServiceTag property will be ignored.
- action String
- The action enum for networking rule.
- port
Ranges String - protocol String
- service
Tag String
ServiceTagOutboundRule, ServiceTagOutboundRuleArgs
- Category
string | Pulumi.
Azure Native. Machine Learning Services. Rule Category - Category of a managed network Outbound Rule of a machine learning workspace.
- Destination
Pulumi.
Azure Native. Machine Learning Services. Inputs. Service Tag Destination - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- Status
string | Pulumi.
Azure Native. Machine Learning Services. Rule Status - Type of a managed network Outbound Rule of a machine learning workspace.
- Category
string | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- Destination
Service
Tag Destination - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- Status
string | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
String | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Service
Tag Destination - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- status
String | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
string | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Service
Tag Destination - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- status
string | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
str | Rule
Category - Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Service
Tag Destination - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- status
str | Rule
Status - Type of a managed network Outbound Rule of a machine learning workspace.
- category
String | "Required" | "Recommended" | "User
Defined" | "Dependency" - Category of a managed network Outbound Rule of a machine learning workspace.
- destination Property Map
- Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- status String | "Inactive" | "Active"
- Type of a managed network Outbound Rule of a machine learning workspace.
ServiceTagOutboundRuleResponse, ServiceTagOutboundRuleResponseArgs
- Category string
- Category of a managed network Outbound Rule of a machine learning workspace.
- Destination
Pulumi.
Azure Native. Machine Learning Services. Inputs. Service Tag Destination Response - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- Error
Information string - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- Parent
Rule List<string>Names - Status string
- Type of a managed network Outbound Rule of a machine learning workspace.
- Category string
- Category of a managed network Outbound Rule of a machine learning workspace.
- Destination
Service
Tag Destination Response - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- Error
Information string - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- Parent
Rule []stringNames - Status string
- Type of a managed network Outbound Rule of a machine learning workspace.
- category String
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Service
Tag Destination Response - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- error
Information String - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- parent
Rule List<String>Names - status String
- Type of a managed network Outbound Rule of a machine learning workspace.
- category string
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Service
Tag Destination Response - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- error
Information string - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- parent
Rule string[]Names - status string
- Type of a managed network Outbound Rule of a machine learning workspace.
- category str
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination
Service
Tag Destination Response - Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- error_
information str - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- parent_
rule_ Sequence[str]names - status str
- Type of a managed network Outbound Rule of a machine learning workspace.
- category String
- Category of a managed network Outbound Rule of a machine learning workspace.
- destination Property Map
- Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
- error
Information String - Error information about an outbound rule of a machine learning workspace if RuleStatus is failed.
- parent
Rule List<String>Names - status String
- Type of a managed network Outbound Rule of a machine learning workspace.
SystemDataResponse, SystemDataResponseArgs
- 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:machinelearningservices:OutboundRule rule_name_1 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/managedNetworks/{managedNetworkName}/outboundRules/{ruleName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0