azure-native.networkcloud.CloudServicesNetwork
Explore with Pulumi AI
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. Azure REST API version: 2023-10-01-preview. Prior API version in Azure Native 1.x: 2022-12-12-preview.
Other available API versions: 2023-07-01, 2024-06-01-preview, 2024-07-01, 2024-10-01-preview.
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 = "https://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" },
        },
    });
});
package main
import (
	networkcloud "github.com/pulumi/pulumi-azure-native-sdk/networkcloud/v2"
	"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("https://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
	})
}
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("https://storageaccountex.blob.core.windows.net")
                    .port(443)
                    .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());
    }
}
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: "https://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",
    },
});
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": "https://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",
    })
resources:
  cloudServicesNetwork:
    type: azure-native:networkcloud:CloudServicesNetwork
    properties:
      additionalEgressEndpoints:
        - category: azure-resource-management
          endpoints:
            - domainName: https://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
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 string
- The unique name of the resource.
- args CloudServicesNetworkArgs
- 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 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 string
- The unique name of the resource.
- args CloudServicesNetworkArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args CloudServicesNetworkArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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" },
    },
});
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"),
	},
})
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());
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",
    })
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",
    },
});
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
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 Pulumi.Azure Native. Network Cloud. Inputs. Extended Location 
- The extended location of the cluster associated with the resource.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AdditionalEgress List<Pulumi.Endpoints Azure Native. Network Cloud. Inputs. Egress Endpoint> 
- The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- CloudServices stringNetwork Name 
- The name of the cloud services network.
- EnableDefault string | Pulumi.Egress Endpoints Azure Native. Network Cloud. Cloud Services Network Enable Default Egress Endpoints 
- The indicator of whether the platform default endpoints are allowed for the egress traffic.
- Location string
- The geo-location where the resource lives
- Dictionary<string, string>
- Resource tags.
- ExtendedLocation ExtendedLocation Args 
- The extended location of the cluster associated with the resource.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- AdditionalEgress []EgressEndpoints Endpoint Args 
- The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- CloudServices stringNetwork Name 
- The name of the cloud services network.
- EnableDefault string | CloudEgress Endpoints Services Network Enable Default Egress Endpoints 
- The indicator of whether the platform default endpoints are allowed for the egress traffic.
- Location string
- The geo-location where the resource lives
- map[string]string
- Resource tags.
- extendedLocation ExtendedLocation 
- The extended location of the cluster associated with the resource.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- additionalEgress List<EgressEndpoints Endpoint> 
- The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- cloudServices StringNetwork Name 
- The name of the cloud services network.
- enableDefault String | CloudEgress Endpoints Services Network Enable Default Egress Endpoints 
- The indicator of whether the platform default endpoints are allowed for the egress traffic.
- location String
- The geo-location where the resource lives
- Map<String,String>
- Resource tags.
- extendedLocation ExtendedLocation 
- The extended location of the cluster associated with the resource.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- additionalEgress EgressEndpoints Endpoint[] 
- The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- cloudServices stringNetwork Name 
- The name of the cloud services network.
- enableDefault string | CloudEgress Endpoints Services Network Enable Default Egress Endpoints 
- The indicator of whether the platform default endpoints are allowed for the egress traffic.
- location string
- The geo-location where the resource lives
- {[key: string]: string}
- Resource tags.
- extended_location ExtendedLocation Args 
- The extended location of the cluster associated with the resource.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- additional_egress_ Sequence[Egressendpoints Endpoint Args] 
- The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- cloud_services_ strnetwork_ name 
- The name of the cloud services network.
- enable_default_ str | Cloudegress_ endpoints Services Network Enable Default Egress Endpoints 
- The indicator of whether the platform default endpoints are allowed for the egress traffic.
- location str
- The geo-location where the resource lives
- Mapping[str, str]
- Resource tags.
- extendedLocation Property Map
- The extended location of the cluster associated with the resource.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- additionalEgress List<Property Map>Endpoints 
- The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- cloudServices StringNetwork Name 
- The name of the cloud services network.
- enableDefault String | "True" | "False"Egress Endpoints 
- The indicator of whether the platform default endpoints are allowed for the egress traffic.
- location String
- The geo-location where the resource lives
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the CloudServicesNetwork resource produces the following output properties:
- AssociatedResource List<string>Ids 
- The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
- 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.
- DetailedStatus stringMessage 
- The descriptive message about the current detailed status.
- EnabledEgress List<Pulumi.Endpoints Azure Native. Network Cloud. Outputs. Egress Endpoint Response> 
- The full list of additional and default egress endpoints that are currently enabled.
- HybridAks List<string>Clusters Associated Ids 
- 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.Azure Native. Network Cloud. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- VirtualMachines List<string>Associated Ids 
- 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.
- AssociatedResource []stringIds 
- The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
- 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.
- DetailedStatus stringMessage 
- The descriptive message about the current detailed status.
- EnabledEgress []EgressEndpoints Endpoint Response 
- The full list of additional and default egress endpoints that are currently enabled.
- HybridAks []stringClusters Associated Ids 
- 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 SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- VirtualMachines []stringAssociated Ids 
- 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.
- associatedResource List<String>Ids 
- The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
- 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.
- detailedStatus StringMessage 
- The descriptive message about the current detailed status.
- enabledEgress List<EgressEndpoints Endpoint Response> 
- The full list of additional and default egress endpoints that are currently enabled.
- hybridAks List<String>Clusters Associated Ids 
- 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 SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- virtualMachines List<String>Associated Ids 
- 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.
- associatedResource string[]Ids 
- The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
- 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.
- detailedStatus stringMessage 
- The descriptive message about the current detailed status.
- enabledEgress EgressEndpoints Endpoint Response[] 
- The full list of additional and default egress endpoints that are currently enabled.
- hybridAks string[]Clusters Associated Ids 
- 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 SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- virtualMachines string[]Associated Ids 
- 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_ Sequence[str]ids 
- The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
- 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_ strmessage 
- The descriptive message about the current detailed status.
- enabled_egress_ Sequence[Egressendpoints Endpoint Response] 
- The full list of additional and default egress endpoints that are currently enabled.
- hybrid_aks_ Sequence[str]clusters_ associated_ ids 
- 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 SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- virtual_machines_ Sequence[str]associated_ ids 
- 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.
- associatedResource List<String>Ids 
- The list of resource IDs for the other Microsoft.NetworkCloud resources that have attached this network.
- 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.
- detailedStatus StringMessage 
- The descriptive message about the current detailed status.
- enabledEgress List<Property Map>Endpoints 
- The full list of additional and default egress endpoints that are currently enabled.
- hybridAks List<String>Clusters Associated Ids 
- 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"
- virtualMachines List<String>Associated Ids 
- 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
- CloudServices Network Enable Default Egress Endpoints True 
- True
- CloudServices Network Enable Default Egress Endpoints False 
- False
- True
- True
- False
- False
- True
- True
- False
- False
- TRUE
- True
- FALSE
- False
- "True"
- True
- "False"
- False
EgressEndpoint, EgressEndpointArgs    
- Category 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
List<Pulumi.Azure Native. Network Cloud. Inputs. Endpoint Dependency> 
- The list of endpoint dependencies.
- Category 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
[]EndpointDependency 
- The list of endpoint dependencies.
- category 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
List<EndpointDependency> 
- The list of endpoint dependencies.
- category 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
EndpointDependency[] 
- The list of endpoint dependencies.
- category 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
Sequence[EndpointDependency] 
- The list of endpoint dependencies.
- category 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 List<Property Map>
- The list of endpoint dependencies.
EgressEndpointResponse, EgressEndpointResponseArgs      
- Category 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
List<Pulumi.Azure Native. Network Cloud. Inputs. Endpoint Dependency Response> 
- The list of endpoint dependencies.
- Category 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
[]EndpointDependency Response 
- The list of endpoint dependencies.
- category 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
List<EndpointDependency Response> 
- The list of endpoint dependencies.
- category 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
EndpointDependency Response[] 
- The list of endpoint dependencies.
- category 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
Sequence[EndpointDependency Response] 
- The list of endpoint dependencies.
- category 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 List<Property Map>
- The list of endpoint dependencies.
EndpointDependency, EndpointDependencyArgs    
- DomainName string
- The domain name of the dependency.
- Port double
- The port of this endpoint.
- DomainName string
- The domain name of the dependency.
- Port float64
- The port of this endpoint.
- domainName String
- The domain name of the dependency.
- port Double
- The port of this endpoint.
- domainName string
- The domain name of the dependency.
- port number
- The port of this endpoint.
- domain_name str
- The domain name of the dependency.
- port float
- The port of this endpoint.
- domainName String
- The domain name of the dependency.
- port Number
- The port of this endpoint.
EndpointDependencyResponse, EndpointDependencyResponseArgs      
- DomainName string
- The domain name of the dependency.
- Port double
- The port of this endpoint.
- DomainName string
- The domain name of the dependency.
- Port float64
- The port of this endpoint.
- domainName String
- The domain name of the dependency.
- port Double
- The port of this endpoint.
- domainName string
- The domain name of the dependency.
- port number
- The port of this endpoint.
- domain_name str
- The domain name of the dependency.
- port float
- The port of this endpoint.
- domainName String
- The domain name of the dependency.
- port Number
- The port of this endpoint.
ExtendedLocation, ExtendedLocationArgs    
ExtendedLocationResponse, ExtendedLocationResponseArgs      
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:networkcloud:CloudServicesNetwork cloudServicesNetworkName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.NetworkCloud/cloudServicesNetworks/{cloudServicesNetworkName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0