1. Packages
  2. Azure Native
  3. API Docs
  4. networkcloud
  5. CloudServicesNetwork
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

azure-native.networkcloud.CloudServicesNetwork

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi

Upon creation, the additional services that are provided by the platform will be allocated and represented in the status of this resource. All resources associated with this cloud services network will be part of the same layer 2 (L2) isolation domain. At least one service network must be created but may be reused across many virtual machines and/or Hybrid AKS clusters.

Uses Azure REST API version 2025-02-01. In version 2.x of the Azure Native provider, it used API version 2023-10-01-preview.

Other available API versions: 2023-10-01-preview, 2024-06-01-preview, 2024-07-01, 2024-10-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native networkcloud [ApiVersion]. See the version guide for details.

Example Usage

Create or update cloud services network

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

return await Deployment.RunAsync(() => 
{
    var cloudServicesNetwork = new AzureNative.NetworkCloud.CloudServicesNetwork("cloudServicesNetwork", new()
    {
        AdditionalEgressEndpoints = new[]
        {
            new AzureNative.NetworkCloud.Inputs.EgressEndpointArgs
            {
                Category = "azure-resource-management",
                Endpoints = new[]
                {
                    new AzureNative.NetworkCloud.Inputs.EndpointDependencyArgs
                    {
                        DomainName = "storageaccountex.blob.core.windows.net",
                        Port = 443,
                    },
                },
            },
        },
        CloudServicesNetworkName = "cloudServicesNetworkName",
        EnableDefaultEgressEndpoints = AzureNative.NetworkCloud.CloudServicesNetworkEnableDefaultEgressEndpoints.False,
        ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
            Type = "CustomLocation",
        },
        Location = "location",
        ResourceGroupName = "resourceGroupName",
        Tags = 
        {
            { "key1", "myvalue1" },
            { "key2", "myvalue2" },
        },
    });

});
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := networkcloud.NewCloudServicesNetwork(ctx, "cloudServicesNetwork", &networkcloud.CloudServicesNetworkArgs{
			AdditionalEgressEndpoints: networkcloud.EgressEndpointArray{
				&networkcloud.EgressEndpointArgs{
					Category: pulumi.String("azure-resource-management"),
					Endpoints: networkcloud.EndpointDependencyArray{
						&networkcloud.EndpointDependencyArgs{
							DomainName: pulumi.String("storageaccountex.blob.core.windows.net"),
							Port:       pulumi.Float64(443),
						},
					},
				},
			},
			CloudServicesNetworkName:     pulumi.String("cloudServicesNetworkName"),
			EnableDefaultEgressEndpoints: pulumi.String(networkcloud.CloudServicesNetworkEnableDefaultEgressEndpointsFalse),
			ExtendedLocation: &networkcloud.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName"),
				Type: pulumi.String("CustomLocation"),
			},
			Location:          pulumi.String("location"),
			ResourceGroupName: pulumi.String("resourceGroupName"),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("myvalue1"),
				"key2": pulumi.String("myvalue2"),
			},
		})
		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.networkcloud.CloudServicesNetwork;
import com.pulumi.azurenative.networkcloud.CloudServicesNetworkArgs;
import com.pulumi.azurenative.networkcloud.inputs.EgressEndpointArgs;
import com.pulumi.azurenative.networkcloud.inputs.ExtendedLocationArgs;
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 cloudServicesNetwork = new CloudServicesNetwork("cloudServicesNetwork", CloudServicesNetworkArgs.builder()
            .additionalEgressEndpoints(EgressEndpointArgs.builder()
                .category("azure-resource-management")
                .endpoints(EndpointDependencyArgs.builder()
                    .domainName("storageaccountex.blob.core.windows.net")
                    .port(443.0)
                    .build())
                .build())
            .cloudServicesNetworkName("cloudServicesNetworkName")
            .enableDefaultEgressEndpoints("False")
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName")
                .type("CustomLocation")
                .build())
            .location("location")
            .resourceGroupName("resourceGroupName")
            .tags(Map.ofEntries(
                Map.entry("key1", "myvalue1"),
                Map.entry("key2", "myvalue2")
            ))
            .build());

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

const cloudServicesNetwork = new azure_native.networkcloud.CloudServicesNetwork("cloudServicesNetwork", {
    additionalEgressEndpoints: [{
        category: "azure-resource-management",
        endpoints: [{
            domainName: "storageaccountex.blob.core.windows.net",
            port: 443,
        }],
    }],
    cloudServicesNetworkName: "cloudServicesNetworkName",
    enableDefaultEgressEndpoints: azure_native.networkcloud.CloudServicesNetworkEnableDefaultEgressEndpoints.False,
    extendedLocation: {
        name: "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
        type: "CustomLocation",
    },
    location: "location",
    resourceGroupName: "resourceGroupName",
    tags: {
        key1: "myvalue1",
        key2: "myvalue2",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

cloud_services_network = azure_native.networkcloud.CloudServicesNetwork("cloudServicesNetwork",
    additional_egress_endpoints=[{
        "category": "azure-resource-management",
        "endpoints": [{
            "domain_name": "storageaccountex.blob.core.windows.net",
            "port": 443,
        }],
    }],
    cloud_services_network_name="cloudServicesNetworkName",
    enable_default_egress_endpoints=azure_native.networkcloud.CloudServicesNetworkEnableDefaultEgressEndpoints.FALSE,
    extended_location={
        "name": "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName",
        "type": "CustomLocation",
    },
    location="location",
    resource_group_name="resourceGroupName",
    tags={
        "key1": "myvalue1",
        "key2": "myvalue2",
    })
Copy
resources:
  cloudServicesNetwork:
    type: azure-native:networkcloud:CloudServicesNetwork
    properties:
      additionalEgressEndpoints:
        - category: azure-resource-management
          endpoints:
            - domainName: storageaccountex.blob.core.windows.net
              port: 443
      cloudServicesNetworkName: cloudServicesNetworkName
      enableDefaultEgressEndpoints: False
      extendedLocation:
        name: /subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName
        type: CustomLocation
      location: location
      resourceGroupName: resourceGroupName
      tags:
        key1: myvalue1
        key2: myvalue2
Copy

Create CloudServicesNetwork Resource

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

Constructor syntax

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

@overload
def CloudServicesNetwork(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         extended_location: Optional[ExtendedLocationArgs] = None,
                         resource_group_name: Optional[str] = None,
                         additional_egress_endpoints: Optional[Sequence[EgressEndpointArgs]] = None,
                         cloud_services_network_name: Optional[str] = None,
                         enable_default_egress_endpoints: Optional[Union[str, CloudServicesNetworkEnableDefaultEgressEndpoints]] = None,
                         location: Optional[str] = None,
                         tags: Optional[Mapping[str, str]] = None)
func NewCloudServicesNetwork(ctx *Context, name string, args CloudServicesNetworkArgs, opts ...ResourceOption) (*CloudServicesNetwork, error)
public CloudServicesNetwork(string name, CloudServicesNetworkArgs args, CustomResourceOptions? opts = null)
public CloudServicesNetwork(String name, CloudServicesNetworkArgs args)
public CloudServicesNetwork(String name, CloudServicesNetworkArgs args, CustomResourceOptions options)
type: azure-native:networkcloud:CloudServicesNetwork
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. CloudServicesNetworkArgs
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. CloudServicesNetworkArgs
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. CloudServicesNetworkArgs
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. CloudServicesNetworkArgs
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. CloudServicesNetworkArgs
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 cloudServicesNetworkResource = new AzureNative.NetworkCloud.CloudServicesNetwork("cloudServicesNetworkResource", new()
{
    ExtendedLocation = new AzureNative.NetworkCloud.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    ResourceGroupName = "string",
    AdditionalEgressEndpoints = new[]
    {
        new AzureNative.NetworkCloud.Inputs.EgressEndpointArgs
        {
            Category = "string",
            Endpoints = new[]
            {
                new AzureNative.NetworkCloud.Inputs.EndpointDependencyArgs
                {
                    DomainName = "string",
                    Port = 0,
                },
            },
        },
    },
    CloudServicesNetworkName = "string",
    EnableDefaultEgressEndpoints = "string",
    Location = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := networkcloud.NewCloudServicesNetwork(ctx, "cloudServicesNetworkResource", &networkcloud.CloudServicesNetworkArgs{
	ExtendedLocation: &networkcloud.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	ResourceGroupName: pulumi.String("string"),
	AdditionalEgressEndpoints: networkcloud.EgressEndpointArray{
		&networkcloud.EgressEndpointArgs{
			Category: pulumi.String("string"),
			Endpoints: networkcloud.EndpointDependencyArray{
				&networkcloud.EndpointDependencyArgs{
					DomainName: pulumi.String("string"),
					Port:       pulumi.Float64(0),
				},
			},
		},
	},
	CloudServicesNetworkName:     pulumi.String("string"),
	EnableDefaultEgressEndpoints: pulumi.String("string"),
	Location:                     pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
Copy
var cloudServicesNetworkResource = new CloudServicesNetwork("cloudServicesNetworkResource", CloudServicesNetworkArgs.builder()
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .resourceGroupName("string")
    .additionalEgressEndpoints(EgressEndpointArgs.builder()
        .category("string")
        .endpoints(EndpointDependencyArgs.builder()
            .domainName("string")
            .port(0)
            .build())
        .build())
    .cloudServicesNetworkName("string")
    .enableDefaultEgressEndpoints("string")
    .location("string")
    .tags(Map.of("string", "string"))
    .build());
Copy
cloud_services_network_resource = azure_native.networkcloud.CloudServicesNetwork("cloudServicesNetworkResource",
    extended_location={
        "name": "string",
        "type": "string",
    },
    resource_group_name="string",
    additional_egress_endpoints=[{
        "category": "string",
        "endpoints": [{
            "domain_name": "string",
            "port": 0,
        }],
    }],
    cloud_services_network_name="string",
    enable_default_egress_endpoints="string",
    location="string",
    tags={
        "string": "string",
    })
Copy
const cloudServicesNetworkResource = new azure_native.networkcloud.CloudServicesNetwork("cloudServicesNetworkResource", {
    extendedLocation: {
        name: "string",
        type: "string",
    },
    resourceGroupName: "string",
    additionalEgressEndpoints: [{
        category: "string",
        endpoints: [{
            domainName: "string",
            port: 0,
        }],
    }],
    cloudServicesNetworkName: "string",
    enableDefaultEgressEndpoints: "string",
    location: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:networkcloud:CloudServicesNetwork
properties:
    additionalEgressEndpoints:
        - category: string
          endpoints:
            - domainName: string
              port: 0
    cloudServicesNetworkName: string
    enableDefaultEgressEndpoints: string
    extendedLocation:
        name: string
        type: string
    location: string
    resourceGroupName: string
    tags:
        string: string
Copy

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

ExtendedLocation This property is required. Pulumi.AzureNative.NetworkCloud.Inputs.ExtendedLocation
The extended location of the cluster associated with the resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AdditionalEgressEndpoints List<Pulumi.AzureNative.NetworkCloud.Inputs.EgressEndpoint>
The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
CloudServicesNetworkName Changes to this property will trigger replacement. string
The name of the cloud services network.
EnableDefaultEgressEndpoints string | Pulumi.AzureNative.NetworkCloud.CloudServicesNetworkEnableDefaultEgressEndpoints
The indicator of whether the platform default endpoints are allowed for the egress traffic.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Tags Dictionary<string, string>
Resource tags.
ExtendedLocation This property is required. ExtendedLocationArgs
The extended location of the cluster associated with the resource.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
AdditionalEgressEndpoints []EgressEndpointArgs
The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
CloudServicesNetworkName Changes to this property will trigger replacement. string
The name of the cloud services network.
EnableDefaultEgressEndpoints string | CloudServicesNetworkEnableDefaultEgressEndpoints
The indicator of whether the platform default endpoints are allowed for the egress traffic.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
Tags map[string]string
Resource tags.
extendedLocation This property is required. ExtendedLocation
The extended location of the cluster associated with the resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
additionalEgressEndpoints List<EgressEndpoint>
The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
cloudServicesNetworkName Changes to this property will trigger replacement. String
The name of the cloud services network.
enableDefaultEgressEndpoints String | CloudServicesNetworkEnableDefaultEgressEndpoints
The indicator of whether the platform default endpoints are allowed for the egress traffic.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
tags Map<String,String>
Resource tags.
extendedLocation This property is required. ExtendedLocation
The extended location of the cluster associated with the resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
additionalEgressEndpoints EgressEndpoint[]
The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
cloudServicesNetworkName Changes to this property will trigger replacement. string
The name of the cloud services network.
enableDefaultEgressEndpoints string | CloudServicesNetworkEnableDefaultEgressEndpoints
The indicator of whether the platform default endpoints are allowed for the egress traffic.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
tags {[key: string]: string}
Resource tags.
extended_location This property is required. ExtendedLocationArgs
The extended location of the cluster associated with the resource.
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.
additional_egress_endpoints Sequence[EgressEndpointArgs]
The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
cloud_services_network_name Changes to this property will trigger replacement. str
The name of the cloud services network.
enable_default_egress_endpoints str | CloudServicesNetworkEnableDefaultEgressEndpoints
The indicator of whether the platform default endpoints are allowed for the egress traffic.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
tags Mapping[str, str]
Resource tags.
extendedLocation This property is required. Property Map
The extended location of the cluster associated with the resource.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
additionalEgressEndpoints List<Property Map>
The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
cloudServicesNetworkName Changes to this property will trigger replacement. String
The name of the cloud services network.
enableDefaultEgressEndpoints String | "True" | "False"
The indicator of whether the platform default endpoints are allowed for the egress traffic.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
tags Map<String>
Resource tags.

Outputs

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

AssociatedResourceIds List<string>
The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
AzureApiVersion string
The Azure API version of the resource.
ClusterId string
The resource ID of the Network Cloud cluster this cloud services network is associated with.
DetailedStatus string
The more detailed status of the cloud services network.
DetailedStatusMessage string
The descriptive message about the current detailed status.
EnabledEgressEndpoints List<Pulumi.AzureNative.NetworkCloud.Outputs.EgressEndpointResponse>
The full list of additional and default egress endpoints that are currently enabled.
Etag string
Resource ETag.
HybridAksClustersAssociatedIds List<string>
Field Deprecated. These fields will be empty/omitted. The list of Hybrid AKS cluster resource IDs that are associated with this cloud services network.
Id string
The provider-assigned unique ID for this managed resource.
InterfaceName string
The name of the interface that will be present in the virtual machine to represent this network.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the cloud services network.
SystemData Pulumi.AzureNative.NetworkCloud.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"
VirtualMachinesAssociatedIds List<string>
Field Deprecated. These fields will be empty/omitted. The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.
AssociatedResourceIds []string
The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
AzureApiVersion string
The Azure API version of the resource.
ClusterId string
The resource ID of the Network Cloud cluster this cloud services network is associated with.
DetailedStatus string
The more detailed status of the cloud services network.
DetailedStatusMessage string
The descriptive message about the current detailed status.
EnabledEgressEndpoints []EgressEndpointResponse
The full list of additional and default egress endpoints that are currently enabled.
Etag string
Resource ETag.
HybridAksClustersAssociatedIds []string
Field Deprecated. These fields will be empty/omitted. The list of Hybrid AKS cluster resource IDs that are associated with this cloud services network.
Id string
The provider-assigned unique ID for this managed resource.
InterfaceName string
The name of the interface that will be present in the virtual machine to represent this network.
Name string
The name of the resource
ProvisioningState string
The provisioning state of the cloud services network.
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"
VirtualMachinesAssociatedIds []string
Field Deprecated. These fields will be empty/omitted. The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.
associatedResourceIds List<String>
The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
azureApiVersion String
The Azure API version of the resource.
clusterId String
The resource ID of the Network Cloud cluster this cloud services network is associated with.
detailedStatus String
The more detailed status of the cloud services network.
detailedStatusMessage String
The descriptive message about the current detailed status.
enabledEgressEndpoints List<EgressEndpointResponse>
The full list of additional and default egress endpoints that are currently enabled.
etag String
Resource ETag.
hybridAksClustersAssociatedIds List<String>
Field Deprecated. These fields will be empty/omitted. The list of Hybrid AKS cluster resource IDs that are associated with this cloud services network.
id String
The provider-assigned unique ID for this managed resource.
interfaceName String
The name of the interface that will be present in the virtual machine to represent this network.
name String
The name of the resource
provisioningState String
The provisioning state of the cloud services network.
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"
virtualMachinesAssociatedIds List<String>
Field Deprecated. These fields will be empty/omitted. The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.
associatedResourceIds string[]
The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
azureApiVersion string
The Azure API version of the resource.
clusterId string
The resource ID of the Network Cloud cluster this cloud services network is associated with.
detailedStatus string
The more detailed status of the cloud services network.
detailedStatusMessage string
The descriptive message about the current detailed status.
enabledEgressEndpoints EgressEndpointResponse[]
The full list of additional and default egress endpoints that are currently enabled.
etag string
Resource ETag.
hybridAksClustersAssociatedIds string[]
Field Deprecated. These fields will be empty/omitted. The list of Hybrid AKS cluster resource IDs that are associated with this cloud services network.
id string
The provider-assigned unique ID for this managed resource.
interfaceName string
The name of the interface that will be present in the virtual machine to represent this network.
name string
The name of the resource
provisioningState string
The provisioning state of the cloud services network.
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"
virtualMachinesAssociatedIds string[]
Field Deprecated. These fields will be empty/omitted. The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.
associated_resource_ids Sequence[str]
The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
azure_api_version str
The Azure API version of the resource.
cluster_id str
The resource ID of the Network Cloud cluster this cloud services network is associated with.
detailed_status str
The more detailed status of the cloud services network.
detailed_status_message str
The descriptive message about the current detailed status.
enabled_egress_endpoints Sequence[EgressEndpointResponse]
The full list of additional and default egress endpoints that are currently enabled.
etag str
Resource ETag.
hybrid_aks_clusters_associated_ids Sequence[str]
Field Deprecated. These fields will be empty/omitted. The list of Hybrid AKS cluster resource IDs that are associated with this cloud services network.
id str
The provider-assigned unique ID for this managed resource.
interface_name str
The name of the interface that will be present in the virtual machine to represent this network.
name str
The name of the resource
provisioning_state str
The provisioning state of the cloud services network.
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"
virtual_machines_associated_ids Sequence[str]
Field Deprecated. These fields will be empty/omitted. The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.
associatedResourceIds List<String>
The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
azureApiVersion String
The Azure API version of the resource.
clusterId String
The resource ID of the Network Cloud cluster this cloud services network is associated with.
detailedStatus String
The more detailed status of the cloud services network.
detailedStatusMessage String
The descriptive message about the current detailed status.
enabledEgressEndpoints List<Property Map>
The full list of additional and default egress endpoints that are currently enabled.
etag String
Resource ETag.
hybridAksClustersAssociatedIds List<String>
Field Deprecated. These fields will be empty/omitted. The list of Hybrid AKS cluster resource IDs that are associated with this cloud services network.
id String
The provider-assigned unique ID for this managed resource.
interfaceName String
The name of the interface that will be present in the virtual machine to represent this network.
name String
The name of the resource
provisioningState String
The provisioning state of the cloud services network.
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"
virtualMachinesAssociatedIds List<String>
Field Deprecated. These fields will be empty/omitted. The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.

Supporting Types

CloudServicesNetworkEnableDefaultEgressEndpoints
, CloudServicesNetworkEnableDefaultEgressEndpointsArgs

True
True
False
False
CloudServicesNetworkEnableDefaultEgressEndpointsTrue
True
CloudServicesNetworkEnableDefaultEgressEndpointsFalse
False
True
True
False
False
True
True
False
False
TRUE
True
FALSE
False
"True"
True
"False"
False

EgressEndpoint
, EgressEndpointArgs

Category This property is required. string
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
Endpoints This property is required. List<Pulumi.AzureNative.NetworkCloud.Inputs.EndpointDependency>
The list of endpoint dependencies.
Category This property is required. string
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
Endpoints This property is required. []EndpointDependency
The list of endpoint dependencies.
category This property is required. String
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
endpoints This property is required. List<EndpointDependency>
The list of endpoint dependencies.
category This property is required. string
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
endpoints This property is required. EndpointDependency[]
The list of endpoint dependencies.
category This property is required. str
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
endpoints This property is required. Sequence[EndpointDependency]
The list of endpoint dependencies.
category This property is required. String
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
endpoints This property is required. List<Property Map>
The list of endpoint dependencies.

EgressEndpointResponse
, EgressEndpointResponseArgs

Category This property is required. string
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
Endpoints This property is required. List<Pulumi.AzureNative.NetworkCloud.Inputs.EndpointDependencyResponse>
The list of endpoint dependencies.
Category This property is required. string
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
Endpoints This property is required. []EndpointDependencyResponse
The list of endpoint dependencies.
category This property is required. String
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
endpoints This property is required. List<EndpointDependencyResponse>
The list of endpoint dependencies.
category This property is required. string
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
endpoints This property is required. EndpointDependencyResponse[]
The list of endpoint dependencies.
category This property is required. str
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
endpoints This property is required. Sequence[EndpointDependencyResponse]
The list of endpoint dependencies.
category This property is required. String
The descriptive category name of endpoints accessible by the AKS agent node. For example, azure-resource-management, API server, etc. The platform egress endpoints provided by default will use the category 'default'.
endpoints This property is required. List<Property Map>
The list of endpoint dependencies.

EndpointDependency
, EndpointDependencyArgs

DomainName This property is required. string
The domain name of the dependency.
Port double
The port of this endpoint.
DomainName This property is required. string
The domain name of the dependency.
Port float64
The port of this endpoint.
domainName This property is required. String
The domain name of the dependency.
port Double
The port of this endpoint.
domainName This property is required. string
The domain name of the dependency.
port number
The port of this endpoint.
domain_name This property is required. str
The domain name of the dependency.
port float
The port of this endpoint.
domainName This property is required. String
The domain name of the dependency.
port Number
The port of this endpoint.

EndpointDependencyResponse
, EndpointDependencyResponseArgs

DomainName This property is required. string
The domain name of the dependency.
Port double
The port of this endpoint.
DomainName This property is required. string
The domain name of the dependency.
Port float64
The port of this endpoint.
domainName This property is required. String
The domain name of the dependency.
port Double
The port of this endpoint.
domainName This property is required. string
The domain name of the dependency.
port number
The port of this endpoint.
domain_name This property is required. str
The domain name of the dependency.
port float
The port of this endpoint.
domainName This property is required. String
The domain name of the dependency.
port Number
The port of this endpoint.

ExtendedLocation
, ExtendedLocationArgs

Name This property is required. string
The resource ID of the extended location on which the resource will be created.
Type This property is required. string
The extended location type, for example, CustomLocation.
Name This property is required. string
The resource ID of the extended location on which the resource will be created.
Type This property is required. string
The extended location type, for example, CustomLocation.
name This property is required. String
The resource ID of the extended location on which the resource will be created.
type This property is required. String
The extended location type, for example, CustomLocation.
name This property is required. string
The resource ID of the extended location on which the resource will be created.
type This property is required. string
The extended location type, for example, CustomLocation.
name This property is required. str
The resource ID of the extended location on which the resource will be created.
type This property is required. str
The extended location type, for example, CustomLocation.
name This property is required. String
The resource ID of the extended location on which the resource will be created.
type This property is required. String
The extended location type, for example, CustomLocation.

ExtendedLocationResponse
, ExtendedLocationResponseArgs

Name This property is required. string
The resource ID of the extended location on which the resource will be created.
Type This property is required. string
The extended location type, for example, CustomLocation.
Name This property is required. string
The resource ID of the extended location on which the resource will be created.
Type This property is required. string
The extended location type, for example, CustomLocation.
name This property is required. String
The resource ID of the extended location on which the resource will be created.
type This property is required. String
The extended location type, for example, CustomLocation.
name This property is required. string
The resource ID of the extended location on which the resource will be created.
type This property is required. string
The extended location type, for example, CustomLocation.
name This property is required. str
The resource ID of the extended location on which the resource will be created.
type This property is required. str
The extended location type, for example, CustomLocation.
name This property is required. String
The resource ID of the extended location on which the resource will be created.
type This property is required. String
The extended location type, for example, CustomLocation.

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:networkcloud:CloudServicesNetwork cloudServicesNetworkName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetworkCloud/cloudServicesNetworks/{cloudServicesNetworkName} 
Copy

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

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.1.0 published on Tuesday, Apr 8, 2025 by Pulumi