1. Packages
  2. Azure Native
  3. API Docs
  4. networkcloud
  5. CloudServicesNetwork
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi

azure-native.networkcloud.CloudServicesNetwork

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.8.0 published on Monday, Sep 18, 2023 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. Azure REST API version: 2023-05-01-preview. Prior API version in Azure Native 1.x: 2022-12-12-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 = "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 (
    	"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.EgressEndpointArgs{
    				{
    					Category: pulumi.String("azure-resource-management"),
    					Endpoints: networkcloud.EndpointDependencyArray{
    						{
    							DomainName: pulumi.String("https://storageaccountex.blob.core.windows.net"),
    							Port:       pulumi.Float64(443),
    						},
    					},
    				},
    			},
    			CloudServicesNetworkName:     pulumi.String("cloudServicesNetworkName"),
    			EnableDefaultEgressEndpoints: pulumi.String("False"),
    			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 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(Map.ofEntries(
                    Map.entry("category", "azure-resource-management"),
                    Map.entry("endpoints", Map.ofEntries(
                        Map.entry("domainName", "https://storageaccountex.blob.core.windows.net"),
                        Map.entry("port", 443)
                    ))
                ))
                .cloudServicesNetworkName("cloudServicesNetworkName")
                .enableDefaultEgressEndpoints("False")
                .extendedLocation(Map.ofEntries(
                    Map.entry("name", "/subscriptions/123e4567-e89b-12d3-a456-426655440000/resourceGroups/resourceGroupName/providers/Microsoft.ExtendedLocation/customLocations/clusterExtendedLocationName"),
                    Map.entry("type", "CustomLocation")
                ))
                .location("location")
                .resourceGroupName("resourceGroupName")
                .tags(Map.ofEntries(
                    Map.entry("key1", "myvalue1"),
                    Map.entry("key2", "myvalue2")
                ))
                .build());
    
        }
    }
    
    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": [azure_native.networkcloud.EndpointDependencyArgs(
                domain_name="https://storageaccountex.blob.core.windows.net",
                port=443,
            )],
        }],
        cloud_services_network_name="cloudServicesNetworkName",
        enable_default_egress_endpoints="False",
        extended_location=azure_native.networkcloud.ExtendedLocationArgs(
            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",
        })
    
    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: "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",
        },
    });
    
    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

    new CloudServicesNetwork(name: string, args: CloudServicesNetworkArgs, opts?: CustomResourceOptions);
    @overload
    def CloudServicesNetwork(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             additional_egress_endpoints: Optional[Sequence[EgressEndpointArgs]] = None,
                             cloud_services_network_name: Optional[str] = None,
                             enable_default_egress_endpoints: Optional[Union[str, CloudServicesNetworkEnableDefaultEgressEndpoints]] = None,
                             extended_location: Optional[ExtendedLocationArgs] = None,
                             location: Optional[str] = None,
                             resource_group_name: Optional[str] = None,
                             tags: Optional[Mapping[str, str]] = None)
    @overload
    def CloudServicesNetwork(resource_name: str,
                             args: CloudServicesNetworkArgs,
                             opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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

    The CloudServicesNetwork resource accepts the following input properties:

    ExtendedLocation Pulumi.AzureNative.NetworkCloud.Inputs.ExtendedLocation

    The extended location of the cluster associated with the resource.

    ResourceGroupName 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 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 string

    The geo-location where the resource lives

    Tags Dictionary<string, string>

    Resource tags.

    ExtendedLocation ExtendedLocationArgs

    The extended location of the cluster associated with the resource.

    ResourceGroupName 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 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 string

    The geo-location where the resource lives

    Tags map[string]string

    Resource tags.

    extendedLocation ExtendedLocation

    The extended location of the cluster associated with the resource.

    resourceGroupName 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 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 String

    The geo-location where the resource lives

    tags Map<String,String>

    Resource tags.

    extendedLocation ExtendedLocation

    The extended location of the cluster associated with the resource.

    resourceGroupName 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 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 string

    The geo-location where the resource lives

    tags {[key: string]: string}

    Resource tags.

    extended_location ExtendedLocationArgs

    The extended location of the cluster associated with the resource.

    resource_group_name 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 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 str

    The geo-location where the resource lives

    tags Mapping[str, str]

    Resource tags.

    extendedLocation Property Map

    The extended location of the cluster associated with the resource.

    resourceGroupName 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 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 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.

    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.

    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.

    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.

    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.

    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.

    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.

    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.

    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.

    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.

    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.

    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.

    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 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.AzureNative.NetworkCloud.Inputs.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 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.AzureNative.NetworkCloud.Inputs.EndpointDependencyResponse>

    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 []EndpointDependencyResponse

    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<EndpointDependencyResponse>

    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 EndpointDependencyResponse[]

    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[EndpointDependencyResponse]

    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

    Name string

    The resource ID of the extended location on which the resource will be created.

    Type string

    The extended location type, for example, CustomLocation.

    Name string

    The resource ID of the extended location on which the resource will be created.

    Type string

    The extended location type, for example, CustomLocation.

    name String

    The resource ID of the extended location on which the resource will be created.

    type String

    The extended location type, for example, CustomLocation.

    name string

    The resource ID of the extended location on which the resource will be created.

    type string

    The extended location type, for example, CustomLocation.

    name str

    The resource ID of the extended location on which the resource will be created.

    type str

    The extended location type, for example, CustomLocation.

    name String

    The resource ID of the extended location on which the resource will be created.

    type String

    The extended location type, for example, CustomLocation.

    ExtendedLocationResponse, ExtendedLocationResponseArgs

    Name string

    The resource ID of the extended location on which the resource will be created.

    Type string

    The extended location type, for example, CustomLocation.

    Name string

    The resource ID of the extended location on which the resource will be created.

    Type string

    The extended location type, for example, CustomLocation.

    name String

    The resource ID of the extended location on which the resource will be created.

    type String

    The extended location type, for example, CustomLocation.

    name string

    The resource ID of the extended location on which the resource will be created.

    type string

    The extended location type, for example, CustomLocation.

    name str

    The resource ID of the extended location on which the resource will be created.

    type str

    The extended location type, for example, CustomLocation.

    name String

    The resource ID of the extended location on which the resource will be created.

    type 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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi