1. Packages
  2. Azure Native v2
  3. API Docs
  4. machinelearningservices
  5. ManagedNetworkSettingsRule
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.machinelearningservices.ManagedNetworkSettingsRule

Explore with Pulumi AI

Outbound Rule Basic Resource for the managed network of a machine learning workspace. Azure REST API version: 2023-04-01-preview.

Other available API versions: 2023-06-01-preview, 2023-08-01-preview, 2023-10-01, 2024-01-01-preview, 2024-04-01, 2024-04-01-preview, 2024-07-01-preview, 2024-10-01, 2024-10-01-preview.

Example Usage

CreateOrUpdate ManagedNetworkSettingsRule

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var managedNetworkSettingsRule = new AzureNative.MachineLearningServices.ManagedNetworkSettingsRule("managedNetworkSettingsRule", new()
    {
        Properties = new AzureNative.MachineLearningServices.Inputs.FqdnOutboundRuleArgs
        {
            Category = AzureNative.MachineLearningServices.RuleCategory.UserDefined,
            Destination = "some_string",
            Status = AzureNative.MachineLearningServices.RuleStatus.Active,
            Type = "FQDN",
        },
        ResourceGroupName = "test-rg",
        RuleName = "some_string",
        WorkspaceName = "aml-workspace-name",
    });

});
Copy
package main

import (
	machinelearningservices "github.com/pulumi/pulumi-azure-native-sdk/machinelearningservices/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := machinelearningservices.NewManagedNetworkSettingsRule(ctx, "managedNetworkSettingsRule", &machinelearningservices.ManagedNetworkSettingsRuleArgs{
			Properties: &machinelearningservices.FqdnOutboundRuleArgs{
				Category:    pulumi.String(machinelearningservices.RuleCategoryUserDefined),
				Destination: pulumi.String("some_string"),
				Status:      pulumi.String(machinelearningservices.RuleStatusActive),
				Type:        pulumi.String("FQDN"),
			},
			ResourceGroupName: pulumi.String("test-rg"),
			RuleName:          pulumi.String("some_string"),
			WorkspaceName:     pulumi.String("aml-workspace-name"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.machinelearningservices.ManagedNetworkSettingsRule;
import com.pulumi.azurenative.machinelearningservices.ManagedNetworkSettingsRuleArgs;
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 managedNetworkSettingsRule = new ManagedNetworkSettingsRule("managedNetworkSettingsRule", ManagedNetworkSettingsRuleArgs.builder()
            .properties(FqdnOutboundRuleArgs.builder()
                .category("UserDefined")
                .destination("some_string")
                .status("Active")
                .type("FQDN")
                .build())
            .resourceGroupName("test-rg")
            .ruleName("some_string")
            .workspaceName("aml-workspace-name")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const managedNetworkSettingsRule = new azure_native.machinelearningservices.ManagedNetworkSettingsRule("managedNetworkSettingsRule", {
    properties: {
        category: azure_native.machinelearningservices.RuleCategory.UserDefined,
        destination: "some_string",
        status: azure_native.machinelearningservices.RuleStatus.Active,
        type: "FQDN",
    },
    resourceGroupName: "test-rg",
    ruleName: "some_string",
    workspaceName: "aml-workspace-name",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

managed_network_settings_rule = azure_native.machinelearningservices.ManagedNetworkSettingsRule("managedNetworkSettingsRule",
    properties={
        "category": azure_native.machinelearningservices.RuleCategory.USER_DEFINED,
        "destination": "some_string",
        "status": azure_native.machinelearningservices.RuleStatus.ACTIVE,
        "type": "FQDN",
    },
    resource_group_name="test-rg",
    rule_name="some_string",
    workspace_name="aml-workspace-name")
Copy
resources:
  managedNetworkSettingsRule:
    type: azure-native:machinelearningservices:ManagedNetworkSettingsRule
    properties:
      properties:
        category: UserDefined
        destination: some_string
        status: Active
        type: FQDN
      resourceGroupName: test-rg
      ruleName: some_string
      workspaceName: aml-workspace-name
Copy

Create ManagedNetworkSettingsRule Resource

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

Constructor syntax

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

@overload
def ManagedNetworkSettingsRule(resource_name: str,
                               opts: Optional[ResourceOptions] = 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 NewManagedNetworkSettingsRule(ctx *Context, name string, args ManagedNetworkSettingsRuleArgs, opts ...ResourceOption) (*ManagedNetworkSettingsRule, error)
public ManagedNetworkSettingsRule(string name, ManagedNetworkSettingsRuleArgs args, CustomResourceOptions? opts = null)
public ManagedNetworkSettingsRule(String name, ManagedNetworkSettingsRuleArgs args)
public ManagedNetworkSettingsRule(String name, ManagedNetworkSettingsRuleArgs args, CustomResourceOptions options)
type: azure-native:machinelearningservices:ManagedNetworkSettingsRule
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ManagedNetworkSettingsRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ManagedNetworkSettingsRuleArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ManagedNetworkSettingsRuleArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ManagedNetworkSettingsRuleArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ManagedNetworkSettingsRuleArgs
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 managedNetworkSettingsRuleResource = new AzureNative.Machinelearningservices.ManagedNetworkSettingsRule("managedNetworkSettingsRuleResource", new()
{
    Properties = 
    {
        { "type", "FQDN" },
        { "category", "string" },
        { "destination", "string" },
        { "status", "string" },
    },
    ResourceGroupName = "string",
    WorkspaceName = "string",
    RuleName = "string",
});
Copy
example, err := machinelearningservices.NewManagedNetworkSettingsRule(ctx, "managedNetworkSettingsRuleResource", &machinelearningservices.ManagedNetworkSettingsRuleArgs{
	Properties: map[string]interface{}{
		"type":        "FQDN",
		"category":    "string",
		"destination": "string",
		"status":      "string",
	},
	ResourceGroupName: "string",
	WorkspaceName:     "string",
	RuleName:          "string",
})
Copy
var managedNetworkSettingsRuleResource = new ManagedNetworkSettingsRule("managedNetworkSettingsRuleResource", ManagedNetworkSettingsRuleArgs.builder()
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .workspaceName("string")
    .ruleName("string")
    .build());
Copy
managed_network_settings_rule_resource = azure_native.machinelearningservices.ManagedNetworkSettingsRule("managedNetworkSettingsRuleResource",
    properties={
        type: FQDN,
        category: string,
        destination: string,
        status: string,
    },
    resource_group_name=string,
    workspace_name=string,
    rule_name=string)
Copy
const managedNetworkSettingsRuleResource = new azure_native.machinelearningservices.ManagedNetworkSettingsRule("managedNetworkSettingsRuleResource", {
    properties: {
        type: "FQDN",
        category: "string",
        destination: "string",
        status: "string",
    },
    resourceGroupName: "string",
    workspaceName: "string",
    ruleName: "string",
});
Copy
type: azure-native:machinelearningservices:ManagedNetworkSettingsRule
properties:
    properties:
        category: string
        destination: string
        status: string
        type: FQDN
    resourceGroupName: string
    ruleName: string
    workspaceName: string
Copy

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

Properties This property is required. Pulumi.AzureNative.MachineLearningServices.Inputs.FqdnOutboundRule | Pulumi.AzureNative.MachineLearningServices.Inputs.PrivateEndpointOutboundRule | Pulumi.AzureNative.MachineLearningServices.Inputs.ServiceTagOutboundRule
Outbound Rule for the managed network of a machine learning workspace.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Azure Machine Learning workspace.
RuleName Changes to this property will trigger replacement. string
Name of the workspace managed network outbound rule
Properties This property is required. FqdnOutboundRuleArgs | PrivateEndpointOutboundRuleArgs | ServiceTagOutboundRuleArgs
Outbound Rule for the managed network of a machine learning workspace.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Azure Machine Learning workspace.
RuleName Changes to this property will trigger replacement. string
Name of the workspace managed network outbound rule
properties This property is required. FqdnOutboundRule | PrivateEndpointOutboundRule | ServiceTagOutboundRule
Outbound Rule for the managed network of a machine learning workspace.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
Name of Azure Machine Learning workspace.
ruleName Changes to this property will trigger replacement. String
Name of the workspace managed network outbound rule
properties This property is required. FqdnOutboundRule | PrivateEndpointOutboundRule | ServiceTagOutboundRule
Outbound Rule for the managed network of a machine learning workspace.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
string
Name of Azure Machine Learning workspace.
ruleName Changes to this property will trigger replacement. string
Name of the workspace managed network outbound rule
properties This property is required. FqdnOutboundRuleArgs | PrivateEndpointOutboundRuleArgs | ServiceTagOutboundRuleArgs
Outbound Rule for the managed network of a machine learning workspace.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
workspace_name
This property is required.
Changes to this property will trigger replacement.
str
Name of Azure Machine Learning workspace.
rule_name Changes to this property will trigger replacement. str
Name of the workspace managed network outbound rule
properties This property is required. Property Map | Property Map | Property Map
Outbound Rule for the managed network of a machine learning workspace.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
Name of Azure Machine Learning workspace.
ruleName Changes to this property will trigger replacement. String
Name of the workspace managed network outbound rule

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData Pulumi.AzureNative.MachineLearningServices.Outputs.SystemDataResponse
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"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
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"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
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"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
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"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
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"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData 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.AzureNative.MachineLearningServices.RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
Destination string
Status string | Pulumi.AzureNative.MachineLearningServices.RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
Category string | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
Destination string
Status string | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category String | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
destination String
status String | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category string | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
destination string
status string | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category str | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
destination str
status str | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category String | "Required" | "Recommended" | "UserDefined"
Category of a managed network Outbound Rule of a machine learning workspace.
destination String
status String | "Inactive" | "Active"
Status 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
Status string
Status 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
Status string
Status 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
status String
Status 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
status string
Status 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
status str
Status 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
status String
Status of a managed network Outbound Rule of a machine learning workspace.

PrivateEndpointDestination
, PrivateEndpointDestinationArgs

ServiceResourceId string
SparkEnabled bool
SparkStatus string | Pulumi.AzureNative.MachineLearningServices.RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
SubresourceTarget string
ServiceResourceId string
SparkEnabled bool
SparkStatus string | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
SubresourceTarget string
serviceResourceId String
sparkEnabled Boolean
sparkStatus String | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
subresourceTarget String
serviceResourceId string
sparkEnabled boolean
sparkStatus string | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
subresourceTarget string
service_resource_id str
spark_enabled bool
spark_status str | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
subresource_target str
serviceResourceId String
sparkEnabled Boolean
sparkStatus String | "Inactive" | "Active"
Status of a managed network Outbound Rule of a machine learning workspace.
subresourceTarget String

PrivateEndpointDestinationResponse
, PrivateEndpointDestinationResponseArgs

ServiceResourceId string
SparkEnabled bool
SparkStatus string
Status of a managed network Outbound Rule of a machine learning workspace.
SubresourceTarget string
ServiceResourceId string
SparkEnabled bool
SparkStatus string
Status of a managed network Outbound Rule of a machine learning workspace.
SubresourceTarget string
serviceResourceId String
sparkEnabled Boolean
sparkStatus String
Status of a managed network Outbound Rule of a machine learning workspace.
subresourceTarget String
serviceResourceId string
sparkEnabled boolean
sparkStatus string
Status of a managed network Outbound Rule of a machine learning workspace.
subresourceTarget string
service_resource_id str
spark_enabled bool
spark_status str
Status of a managed network Outbound Rule of a machine learning workspace.
subresource_target str
serviceResourceId String
sparkEnabled Boolean
sparkStatus String
Status of a managed network Outbound Rule of a machine learning workspace.
subresourceTarget String

PrivateEndpointOutboundRule
, PrivateEndpointOutboundRuleArgs

Category string | Pulumi.AzureNative.MachineLearningServices.RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
Destination Pulumi.AzureNative.MachineLearningServices.Inputs.PrivateEndpointDestination
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
Status string | Pulumi.AzureNative.MachineLearningServices.RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
Category string | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
Destination PrivateEndpointDestination
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
Status string | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category String | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
destination PrivateEndpointDestination
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
status String | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category string | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
destination PrivateEndpointDestination
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
status string | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category str | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
destination PrivateEndpointDestination
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
status str | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category String | "Required" | "Recommended" | "UserDefined"
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.
status String | "Inactive" | "Active"
Status 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.AzureNative.MachineLearningServices.Inputs.PrivateEndpointDestinationResponse
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
Status string
Status 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 PrivateEndpointDestinationResponse
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
Status string
Status 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 PrivateEndpointDestinationResponse
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
status String
Status 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 PrivateEndpointDestinationResponse
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
status string
Status 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 PrivateEndpointDestinationResponse
Private Endpoint destination for a Private Endpoint Outbound Rule for the managed network of a machine learning workspace.
status str
Status 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.
status String
Status of a managed network Outbound Rule of a machine learning workspace.

RuleCategory
, RuleCategoryArgs

Required
Required
Recommended
Recommended
UserDefined
UserDefined
RuleCategoryRequired
Required
RuleCategoryRecommended
Recommended
RuleCategoryUserDefined
UserDefined
Required
Required
Recommended
Recommended
UserDefined
UserDefined
Required
Required
Recommended
Recommended
UserDefined
UserDefined
REQUIRED
Required
RECOMMENDED
Recommended
USER_DEFINED
UserDefined
"Required"
Required
"Recommended"
Recommended
"UserDefined"
UserDefined

RuleStatus
, RuleStatusArgs

Inactive
Inactive
Active
Active
RuleStatusInactive
Inactive
RuleStatusActive
Active
Inactive
Inactive
Active
Active
Inactive
Inactive
Active
Active
INACTIVE
Inactive
ACTIVE
Active
"Inactive"
Inactive
"Active"
Active

ServiceTagDestination
, ServiceTagDestinationArgs

PortRanges string
Protocol string
ServiceTag string
PortRanges string
Protocol string
ServiceTag string
portRanges String
protocol String
serviceTag String
portRanges string
protocol string
serviceTag string
portRanges String
protocol String
serviceTag String

ServiceTagDestinationResponse
, ServiceTagDestinationResponseArgs

PortRanges string
Protocol string
ServiceTag string
PortRanges string
Protocol string
ServiceTag string
portRanges String
protocol String
serviceTag String
portRanges string
protocol string
serviceTag string
portRanges String
protocol String
serviceTag String

ServiceTagOutboundRule
, ServiceTagOutboundRuleArgs

Category string | Pulumi.AzureNative.MachineLearningServices.RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
Destination Pulumi.AzureNative.MachineLearningServices.Inputs.ServiceTagDestination
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
Status string | Pulumi.AzureNative.MachineLearningServices.RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
Category string | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
Destination ServiceTagDestination
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
Status string | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category String | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
destination ServiceTagDestination
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
status String | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category string | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
destination ServiceTagDestination
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
status string | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category str | RuleCategory
Category of a managed network Outbound Rule of a machine learning workspace.
destination ServiceTagDestination
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
status str | RuleStatus
Status of a managed network Outbound Rule of a machine learning workspace.
category String | "Required" | "Recommended" | "UserDefined"
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"
Status 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.AzureNative.MachineLearningServices.Inputs.ServiceTagDestinationResponse
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
Status string
Status 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 ServiceTagDestinationResponse
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
Status string
Status 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 ServiceTagDestinationResponse
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
status String
Status 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 ServiceTagDestinationResponse
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
status string
Status 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 ServiceTagDestinationResponse
Service Tag destination for a Service Tag Outbound Rule for the managed network of a machine learning workspace.
status str
Status 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.
status String
Status of a managed network Outbound Rule of a machine learning workspace.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
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_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
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:ManagedNetworkSettingsRule some_string /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.MachineLearningServices/workspaces/{workspaceName}/outboundRules/{ruleName} 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0