We recommend using Azure Native.
azure.machinelearning.WorkspaceNetworkOutboundRuleServiceTag
Explore with Pulumi AI
Manages an Azure Machine Learning Workspace Network Outbound Rule Service Tag.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const current = azure.core.getClientConfig({});
const example = new azure.core.ResourceGroup("example", {
name: "example-resources",
location: "West Europe",
});
const exampleInsights = new azure.appinsights.Insights("example", {
name: "workspace-example-ai",
location: example.location,
resourceGroupName: example.name,
applicationType: "web",
});
const exampleKeyVault = new azure.keyvault.KeyVault("example", {
name: "workspaceexamplekeyvault",
location: example.location,
resourceGroupName: example.name,
tenantId: current.then(current => current.tenantId),
skuName: "premium",
});
const exampleAccount = new azure.storage.Account("example", {
name: "workspacestorageaccount",
location: example.location,
resourceGroupName: example.name,
accountTier: "Standard",
accountReplicationType: "GRS",
});
const exampleWorkspace = new azure.machinelearning.Workspace("example", {
name: "example-workspace",
location: example.location,
resourceGroupName: example.name,
applicationInsightsId: exampleInsights.id,
keyVaultId: exampleKeyVault.id,
storageAccountId: exampleAccount.id,
managedNetwork: {
isolationMode: "AllowOnlyApprovedOutbound",
},
identity: {
type: "SystemAssigned",
},
});
const exampleWorkspaceNetworkOutboundRuleServiceTag = new azure.machinelearning.WorkspaceNetworkOutboundRuleServiceTag("example", {
name: "example-outboundrule",
workspaceId: exampleWorkspace.id,
serviceTag: "AppService",
protocol: "TCP",
portRanges: "443",
});
import pulumi
import pulumi_azure as azure
current = azure.core.get_client_config()
example = azure.core.ResourceGroup("example",
name="example-resources",
location="West Europe")
example_insights = azure.appinsights.Insights("example",
name="workspace-example-ai",
location=example.location,
resource_group_name=example.name,
application_type="web")
example_key_vault = azure.keyvault.KeyVault("example",
name="workspaceexamplekeyvault",
location=example.location,
resource_group_name=example.name,
tenant_id=current.tenant_id,
sku_name="premium")
example_account = azure.storage.Account("example",
name="workspacestorageaccount",
location=example.location,
resource_group_name=example.name,
account_tier="Standard",
account_replication_type="GRS")
example_workspace = azure.machinelearning.Workspace("example",
name="example-workspace",
location=example.location,
resource_group_name=example.name,
application_insights_id=example_insights.id,
key_vault_id=example_key_vault.id,
storage_account_id=example_account.id,
managed_network={
"isolation_mode": "AllowOnlyApprovedOutbound",
},
identity={
"type": "SystemAssigned",
})
example_workspace_network_outbound_rule_service_tag = azure.machinelearning.WorkspaceNetworkOutboundRuleServiceTag("example",
name="example-outboundrule",
workspace_id=example_workspace.id,
service_tag="AppService",
protocol="TCP",
port_ranges="443")
package main
import (
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/appinsights"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/core"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/keyvault"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/machinelearning"
"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/storage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
current, err := core.GetClientConfig(ctx, map[string]interface{}{}, nil)
if err != nil {
return err
}
example, err := core.NewResourceGroup(ctx, "example", &core.ResourceGroupArgs{
Name: pulumi.String("example-resources"),
Location: pulumi.String("West Europe"),
})
if err != nil {
return err
}
exampleInsights, err := appinsights.NewInsights(ctx, "example", &appinsights.InsightsArgs{
Name: pulumi.String("workspace-example-ai"),
Location: example.Location,
ResourceGroupName: example.Name,
ApplicationType: pulumi.String("web"),
})
if err != nil {
return err
}
exampleKeyVault, err := keyvault.NewKeyVault(ctx, "example", &keyvault.KeyVaultArgs{
Name: pulumi.String("workspaceexamplekeyvault"),
Location: example.Location,
ResourceGroupName: example.Name,
TenantId: pulumi.String(current.TenantId),
SkuName: pulumi.String("premium"),
})
if err != nil {
return err
}
exampleAccount, err := storage.NewAccount(ctx, "example", &storage.AccountArgs{
Name: pulumi.String("workspacestorageaccount"),
Location: example.Location,
ResourceGroupName: example.Name,
AccountTier: pulumi.String("Standard"),
AccountReplicationType: pulumi.String("GRS"),
})
if err != nil {
return err
}
exampleWorkspace, err := machinelearning.NewWorkspace(ctx, "example", &machinelearning.WorkspaceArgs{
Name: pulumi.String("example-workspace"),
Location: example.Location,
ResourceGroupName: example.Name,
ApplicationInsightsId: exampleInsights.ID(),
KeyVaultId: exampleKeyVault.ID(),
StorageAccountId: exampleAccount.ID(),
ManagedNetwork: &machinelearning.WorkspaceManagedNetworkArgs{
IsolationMode: pulumi.String("AllowOnlyApprovedOutbound"),
},
Identity: &machinelearning.WorkspaceIdentityArgs{
Type: pulumi.String("SystemAssigned"),
},
})
if err != nil {
return err
}
_, err = machinelearning.NewWorkspaceNetworkOutboundRuleServiceTag(ctx, "example", &machinelearning.WorkspaceNetworkOutboundRuleServiceTagArgs{
Name: pulumi.String("example-outboundrule"),
WorkspaceId: exampleWorkspace.ID(),
ServiceTag: pulumi.String("AppService"),
Protocol: pulumi.String("TCP"),
PortRanges: pulumi.String("443"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Azure = Pulumi.Azure;
return await Deployment.RunAsync(() =>
{
var current = Azure.Core.GetClientConfig.Invoke();
var example = new Azure.Core.ResourceGroup("example", new()
{
Name = "example-resources",
Location = "West Europe",
});
var exampleInsights = new Azure.AppInsights.Insights("example", new()
{
Name = "workspace-example-ai",
Location = example.Location,
ResourceGroupName = example.Name,
ApplicationType = "web",
});
var exampleKeyVault = new Azure.KeyVault.KeyVault("example", new()
{
Name = "workspaceexamplekeyvault",
Location = example.Location,
ResourceGroupName = example.Name,
TenantId = current.Apply(getClientConfigResult => getClientConfigResult.TenantId),
SkuName = "premium",
});
var exampleAccount = new Azure.Storage.Account("example", new()
{
Name = "workspacestorageaccount",
Location = example.Location,
ResourceGroupName = example.Name,
AccountTier = "Standard",
AccountReplicationType = "GRS",
});
var exampleWorkspace = new Azure.MachineLearning.Workspace("example", new()
{
Name = "example-workspace",
Location = example.Location,
ResourceGroupName = example.Name,
ApplicationInsightsId = exampleInsights.Id,
KeyVaultId = exampleKeyVault.Id,
StorageAccountId = exampleAccount.Id,
ManagedNetwork = new Azure.MachineLearning.Inputs.WorkspaceManagedNetworkArgs
{
IsolationMode = "AllowOnlyApprovedOutbound",
},
Identity = new Azure.MachineLearning.Inputs.WorkspaceIdentityArgs
{
Type = "SystemAssigned",
},
});
var exampleWorkspaceNetworkOutboundRuleServiceTag = new Azure.MachineLearning.WorkspaceNetworkOutboundRuleServiceTag("example", new()
{
Name = "example-outboundrule",
WorkspaceId = exampleWorkspace.Id,
ServiceTag = "AppService",
Protocol = "TCP",
PortRanges = "443",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.core.CoreFunctions;
import com.pulumi.azure.core.ResourceGroup;
import com.pulumi.azure.core.ResourceGroupArgs;
import com.pulumi.azure.appinsights.Insights;
import com.pulumi.azure.appinsights.InsightsArgs;
import com.pulumi.azure.keyvault.KeyVault;
import com.pulumi.azure.keyvault.KeyVaultArgs;
import com.pulumi.azure.storage.Account;
import com.pulumi.azure.storage.AccountArgs;
import com.pulumi.azure.machinelearning.Workspace;
import com.pulumi.azure.machinelearning.WorkspaceArgs;
import com.pulumi.azure.machinelearning.inputs.WorkspaceManagedNetworkArgs;
import com.pulumi.azure.machinelearning.inputs.WorkspaceIdentityArgs;
import com.pulumi.azure.machinelearning.WorkspaceNetworkOutboundRuleServiceTag;
import com.pulumi.azure.machinelearning.WorkspaceNetworkOutboundRuleServiceTagArgs;
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) {
final var current = CoreFunctions.getClientConfig();
var example = new ResourceGroup("example", ResourceGroupArgs.builder()
.name("example-resources")
.location("West Europe")
.build());
var exampleInsights = new Insights("exampleInsights", InsightsArgs.builder()
.name("workspace-example-ai")
.location(example.location())
.resourceGroupName(example.name())
.applicationType("web")
.build());
var exampleKeyVault = new KeyVault("exampleKeyVault", KeyVaultArgs.builder()
.name("workspaceexamplekeyvault")
.location(example.location())
.resourceGroupName(example.name())
.tenantId(current.applyValue(getClientConfigResult -> getClientConfigResult.tenantId()))
.skuName("premium")
.build());
var exampleAccount = new Account("exampleAccount", AccountArgs.builder()
.name("workspacestorageaccount")
.location(example.location())
.resourceGroupName(example.name())
.accountTier("Standard")
.accountReplicationType("GRS")
.build());
var exampleWorkspace = new Workspace("exampleWorkspace", WorkspaceArgs.builder()
.name("example-workspace")
.location(example.location())
.resourceGroupName(example.name())
.applicationInsightsId(exampleInsights.id())
.keyVaultId(exampleKeyVault.id())
.storageAccountId(exampleAccount.id())
.managedNetwork(WorkspaceManagedNetworkArgs.builder()
.isolationMode("AllowOnlyApprovedOutbound")
.build())
.identity(WorkspaceIdentityArgs.builder()
.type("SystemAssigned")
.build())
.build());
var exampleWorkspaceNetworkOutboundRuleServiceTag = new WorkspaceNetworkOutboundRuleServiceTag("exampleWorkspaceNetworkOutboundRuleServiceTag", WorkspaceNetworkOutboundRuleServiceTagArgs.builder()
.name("example-outboundrule")
.workspaceId(exampleWorkspace.id())
.serviceTag("AppService")
.protocol("TCP")
.portRanges("443")
.build());
}
}
resources:
example:
type: azure:core:ResourceGroup
properties:
name: example-resources
location: West Europe
exampleInsights:
type: azure:appinsights:Insights
name: example
properties:
name: workspace-example-ai
location: ${example.location}
resourceGroupName: ${example.name}
applicationType: web
exampleKeyVault:
type: azure:keyvault:KeyVault
name: example
properties:
name: workspaceexamplekeyvault
location: ${example.location}
resourceGroupName: ${example.name}
tenantId: ${current.tenantId}
skuName: premium
exampleAccount:
type: azure:storage:Account
name: example
properties:
name: workspacestorageaccount
location: ${example.location}
resourceGroupName: ${example.name}
accountTier: Standard
accountReplicationType: GRS
exampleWorkspace:
type: azure:machinelearning:Workspace
name: example
properties:
name: example-workspace
location: ${example.location}
resourceGroupName: ${example.name}
applicationInsightsId: ${exampleInsights.id}
keyVaultId: ${exampleKeyVault.id}
storageAccountId: ${exampleAccount.id}
managedNetwork:
isolationMode: AllowOnlyApprovedOutbound
identity:
type: SystemAssigned
exampleWorkspaceNetworkOutboundRuleServiceTag:
type: azure:machinelearning:WorkspaceNetworkOutboundRuleServiceTag
name: example
properties:
name: example-outboundrule
workspaceId: ${exampleWorkspace.id}
serviceTag: AppService
protocol: TCP
portRanges: '443'
variables:
current:
fn::invoke:
function: azure:core:getClientConfig
arguments: {}
Create WorkspaceNetworkOutboundRuleServiceTag Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new WorkspaceNetworkOutboundRuleServiceTag(name: string, args: WorkspaceNetworkOutboundRuleServiceTagArgs, opts?: CustomResourceOptions);
@overload
def WorkspaceNetworkOutboundRuleServiceTag(resource_name: str,
args: WorkspaceNetworkOutboundRuleServiceTagArgs,
opts: Optional[ResourceOptions] = None)
@overload
def WorkspaceNetworkOutboundRuleServiceTag(resource_name: str,
opts: Optional[ResourceOptions] = None,
port_ranges: Optional[str] = None,
protocol: Optional[str] = None,
service_tag: Optional[str] = None,
workspace_id: Optional[str] = None,
name: Optional[str] = None)
func NewWorkspaceNetworkOutboundRuleServiceTag(ctx *Context, name string, args WorkspaceNetworkOutboundRuleServiceTagArgs, opts ...ResourceOption) (*WorkspaceNetworkOutboundRuleServiceTag, error)
public WorkspaceNetworkOutboundRuleServiceTag(string name, WorkspaceNetworkOutboundRuleServiceTagArgs args, CustomResourceOptions? opts = null)
public WorkspaceNetworkOutboundRuleServiceTag(String name, WorkspaceNetworkOutboundRuleServiceTagArgs args)
public WorkspaceNetworkOutboundRuleServiceTag(String name, WorkspaceNetworkOutboundRuleServiceTagArgs args, CustomResourceOptions options)
type: azure:machinelearning:WorkspaceNetworkOutboundRuleServiceTag
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 WorkspaceNetworkOutboundRuleServiceTagArgs
- 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 WorkspaceNetworkOutboundRuleServiceTagArgs
- 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 WorkspaceNetworkOutboundRuleServiceTagArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args WorkspaceNetworkOutboundRuleServiceTagArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args WorkspaceNetworkOutboundRuleServiceTagArgs
- 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 workspaceNetworkOutboundRuleServiceTagResource = new Azure.MachineLearning.WorkspaceNetworkOutboundRuleServiceTag("workspaceNetworkOutboundRuleServiceTagResource", new()
{
PortRanges = "string",
Protocol = "string",
ServiceTag = "string",
WorkspaceId = "string",
Name = "string",
});
example, err := machinelearning.NewWorkspaceNetworkOutboundRuleServiceTag(ctx, "workspaceNetworkOutboundRuleServiceTagResource", &machinelearning.WorkspaceNetworkOutboundRuleServiceTagArgs{
PortRanges: pulumi.String("string"),
Protocol: pulumi.String("string"),
ServiceTag: pulumi.String("string"),
WorkspaceId: pulumi.String("string"),
Name: pulumi.String("string"),
})
var workspaceNetworkOutboundRuleServiceTagResource = new WorkspaceNetworkOutboundRuleServiceTag("workspaceNetworkOutboundRuleServiceTagResource", WorkspaceNetworkOutboundRuleServiceTagArgs.builder()
.portRanges("string")
.protocol("string")
.serviceTag("string")
.workspaceId("string")
.name("string")
.build());
workspace_network_outbound_rule_service_tag_resource = azure.machinelearning.WorkspaceNetworkOutboundRuleServiceTag("workspaceNetworkOutboundRuleServiceTagResource",
port_ranges="string",
protocol="string",
service_tag="string",
workspace_id="string",
name="string")
const workspaceNetworkOutboundRuleServiceTagResource = new azure.machinelearning.WorkspaceNetworkOutboundRuleServiceTag("workspaceNetworkOutboundRuleServiceTagResource", {
portRanges: "string",
protocol: "string",
serviceTag: "string",
workspaceId: "string",
name: "string",
});
type: azure:machinelearning:WorkspaceNetworkOutboundRuleServiceTag
properties:
name: string
portRanges: string
protocol: string
serviceTag: string
workspaceId: string
WorkspaceNetworkOutboundRuleServiceTag 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 WorkspaceNetworkOutboundRuleServiceTag resource accepts the following input properties:
- Port
Ranges string - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - Protocol string
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- Service
Tag string - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - Workspace
Id string - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- Port
Ranges string - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - Protocol string
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- Service
Tag string - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - Workspace
Id string - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- port
Ranges String - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - protocol String
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- service
Tag String - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - workspace
Id String - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- port
Ranges string - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - protocol string
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- service
Tag string - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - workspace
Id string - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- port_
ranges str - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - protocol str
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- service_
tag str - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - workspace_
id str - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- port
Ranges String - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - protocol String
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- service
Tag String - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - workspace
Id String - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
Outputs
All input properties are implicitly available as output properties. Additionally, the WorkspaceNetworkOutboundRuleServiceTag resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing WorkspaceNetworkOutboundRuleServiceTag Resource
Get an existing WorkspaceNetworkOutboundRuleServiceTag resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: WorkspaceNetworkOutboundRuleServiceTagState, opts?: CustomResourceOptions): WorkspaceNetworkOutboundRuleServiceTag
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
name: Optional[str] = None,
port_ranges: Optional[str] = None,
protocol: Optional[str] = None,
service_tag: Optional[str] = None,
workspace_id: Optional[str] = None) -> WorkspaceNetworkOutboundRuleServiceTag
func GetWorkspaceNetworkOutboundRuleServiceTag(ctx *Context, name string, id IDInput, state *WorkspaceNetworkOutboundRuleServiceTagState, opts ...ResourceOption) (*WorkspaceNetworkOutboundRuleServiceTag, error)
public static WorkspaceNetworkOutboundRuleServiceTag Get(string name, Input<string> id, WorkspaceNetworkOutboundRuleServiceTagState? state, CustomResourceOptions? opts = null)
public static WorkspaceNetworkOutboundRuleServiceTag get(String name, Output<String> id, WorkspaceNetworkOutboundRuleServiceTagState state, CustomResourceOptions options)
resources: _: type: azure:machinelearning:WorkspaceNetworkOutboundRuleServiceTag get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Name string
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- Port
Ranges string - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - Protocol string
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- Service
Tag string - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - Workspace
Id string - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- Name string
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- Port
Ranges string - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - Protocol string
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- Service
Tag string - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - Workspace
Id string - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- port
Ranges String - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - protocol String
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- service
Tag String - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - workspace
Id String - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- name string
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- port
Ranges string - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - protocol string
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- service
Tag string - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - workspace
Id string - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- name str
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- port_
ranges str - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - protocol str
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- service_
tag str - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - workspace_
id str - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
- name String
- Specifies the name of the Machine Learning Workspace Network Outbound Rule Service Tag. Changing this forces a new resource to be created.
- port
Ranges String - Specifies which ports traffic will be allowed by this rule. You can specify a single port (e.g.
80
) , a port range (e.g.1024-655535
) or a comma-separated list of single ports and/or port ranges(e.g.80,1024-655535
).*
can be used to allow traffic on any port. - protocol String
- Specifies the network protocol. Possible values are
*
,TCP
,UDP
andICMP
- service
Tag String - Specifies the fully qualified domain name to allow for outbound traffic. Possible values are
AppConfiguration
,AppService
,AzureActiveDirectory
,AzureAdvancedThreatProtection
,AzureArcInfrastructure
,AzureAttestation
,AzureBackup
,AzureBotService
,AzureContainerRegistry
,AzureCosmosDB
,AzureDataLake
,AzureDevSpaces
,AzureInformationProtection
,AzureIoTHub
,AzureKeyVault
,AzureManagedGrafana
,AzureMonitor
,AzureOpenDatasets
,AzurePlatformDNS
,AzurePlatformIMDS
,AzurePlatformLKM
,AzureResourceManager
,AzureSignalR
,AzureSiteRecovery
,AzureSpringCloud
,AzureStack
,AzureUpdateDelivery
,DataFactoryManagement
,EventHub
,GuestAndHybridManagement
,M365ManagementActivityApi
,M365ManagementActivityApi
,MicrosoftAzureFluidRelay
,MicrosoftCloudAppSecurity
,MicrosoftContainerRegistry
,PowerPlatformInfra
,ServiceBus
,Sql
,Storage
,WindowsAdminCenter
,AppServiceManagement
,AutonomousDevelopmentPlatform
,AzureActiveDirectoryDomainServices
,AzureCloud
,AzureConnectors
,AzureContainerAppsService
,AzureDatabricks
,AzureDeviceUpdate
,AzureEventGrid
,AzureFrontDoor.Frontend
,AzureFrontDoor.Backend
,AzureFrontDoor.FirstParty
,AzureHealthcareAPIs
,AzureLoadBalancer
,AzureMachineLearning
,AzureSphere
,AzureWebPubSub
,BatchNodeManagement
,ChaosStudio
,CognitiveServicesFrontend
,CognitiveServicesManagement
,DataFactory
,Dynamics365ForMarketingEmail
,Dynamics365BusinessCentral
,EOPExternalPublishedIPs
,Internet
,LogicApps
,Marketplace
,MicrosoftDefenderForEndpoint
,PowerBI
,PowerQueryOnline
,ServiceFabric
,SqlManagement
,StorageSyncService
,WindowsVirtualDesktop
andVirtualNetwork
. - workspace
Id String - Specifies the ID of the Machine Learning Workspace. Changing this forces a new resource to be created.
Import
Machine Learning Workspace Network Outbound Rule Service Tag can be imported using the resource id
, e.g.
$ pulumi import azure:machinelearning/workspaceNetworkOutboundRuleServiceTag:WorkspaceNetworkOutboundRuleServiceTag example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.MachineLearningServices/workspaces/workspace1/outboundRules/rule1
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Classic pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurerm
Terraform Provider.