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. API Version: 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/subscriptionId/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"
"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/subscriptionId/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/subscriptionId/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/subscriptionId/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/subscriptionId/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/subscriptionId/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 =
{
{ "name", "string" },
{ "type", "string" },
},
ResourceGroupName = "string",
AdditionalEgressEndpoints = new[]
{
{
{ "category", "string" },
{ "endpoints", new[]
{
{
{ "domainName", "string" },
{ "port", 0 },
},
} },
},
},
CloudServicesNetworkName = "string",
EnableDefaultEgressEndpoints = "string",
Location = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := networkcloud.NewCloudServicesNetwork(ctx, "cloudServicesNetworkResource", &networkcloud.CloudServicesNetworkArgs{
ExtendedLocation: map[string]interface{}{
"name": "string",
"type": "string",
},
ResourceGroupName: "string",
AdditionalEgressEndpoints: []map[string]interface{}{
map[string]interface{}{
"category": "string",
"endpoints": []map[string]interface{}{
map[string]interface{}{
"domainName": "string",
"port": 0,
},
},
},
},
CloudServicesNetworkName: "string",
EnableDefaultEgressEndpoints: "string",
Location: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var cloudServicesNetworkResource = new CloudServicesNetwork("cloudServicesNetworkResource", CloudServicesNetworkArgs.builder()
.extendedLocation(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.resourceGroupName("string")
.additionalEgressEndpoints(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.cloudServicesNetworkName("string")
.enableDefaultEgressEndpoints("string")
.location("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.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: [{
domainName: 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
The CloudServicesNetwork resource accepts the following input properties:
- Extended
Location Pulumi.Azure Native. Network Cloud. Inputs. Extended Location - The extended location of the cluster associated with the resource.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Additional
Egress 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.
- Cloud
Services stringNetwork Name - The name of the cloud services network.
- Enable
Default 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.
- Extended
Location ExtendedLocation Args - The extended location of the cluster associated with the resource.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Additional
Egress []EgressEndpoints Endpoint Args - The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- Cloud
Services stringNetwork Name - The name of the cloud services network.
- Enable
Default 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.
- extended
Location ExtendedLocation - The extended location of the cluster associated with the resource.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- additional
Egress List<EgressEndpoints Endpoint> - The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- cloud
Services StringNetwork Name - The name of the cloud services network.
- enable
Default 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.
- extended
Location ExtendedLocation - The extended location of the cluster associated with the resource.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- additional
Egress EgressEndpoints Endpoint[] - The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- cloud
Services stringNetwork Name - The name of the cloud services network.
- enable
Default 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.
- extended
Location Property Map - The extended location of the cluster associated with the resource.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- additional
Egress List<Property Map>Endpoints - The list of egress endpoints. This allows for connection from a Hybrid AKS cluster to the specified endpoint.
- cloud
Services StringNetwork Name - The name of the cloud services network.
- enable
Default 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:
- Cluster
Id string - The resource ID of the Network Cloud cluster this cloud services network is associated with.
- Detailed
Status string - The more detailed status of the cloud services network.
- Detailed
Status stringMessage - The descriptive message about the current detailed status.
- Enabled
Egress List<Pulumi.Endpoints Azure Native. Network Cloud. Outputs. Egress Endpoint Response> - The full list of additional and default egress endpoints that are currently enabled.
- Hybrid
Aks List<string>Clusters Associated Ids - 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.
- Interface
Name 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
- Provisioning
State string - The provisioning state of the cloud services network.
- System
Data 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"
- Virtual
Machines List<string>Associated Ids - The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.
- Cluster
Id string - The resource ID of the Network Cloud cluster this cloud services network is associated with.
- Detailed
Status string - The more detailed status of the cloud services network.
- Detailed
Status stringMessage - The descriptive message about the current detailed status.
- Enabled
Egress []EgressEndpoints Endpoint Response - The full list of additional and default egress endpoints that are currently enabled.
- Hybrid
Aks []stringClusters Associated Ids - 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.
- Interface
Name 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
- Provisioning
State string - The provisioning state of the cloud services network.
- System
Data 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"
- Virtual
Machines []stringAssociated Ids - The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.
- cluster
Id String - The resource ID of the Network Cloud cluster this cloud services network is associated with.
- detailed
Status String - The more detailed status of the cloud services network.
- detailed
Status StringMessage - The descriptive message about the current detailed status.
- enabled
Egress List<EgressEndpoints Endpoint Response> - The full list of additional and default egress endpoints that are currently enabled.
- hybrid
Aks List<String>Clusters Associated Ids - 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.
- interface
Name 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
- provisioning
State String - The provisioning state of the cloud services network.
- system
Data 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"
- virtual
Machines List<String>Associated Ids - The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.
- cluster
Id string - The resource ID of the Network Cloud cluster this cloud services network is associated with.
- detailed
Status string - The more detailed status of the cloud services network.
- detailed
Status stringMessage - The descriptive message about the current detailed status.
- enabled
Egress EgressEndpoints Endpoint Response[] - The full list of additional and default egress endpoints that are currently enabled.
- hybrid
Aks string[]Clusters Associated Ids - 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.
- interface
Name 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
- provisioning
State string - The provisioning state of the cloud services network.
- system
Data 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"
- virtual
Machines string[]Associated Ids - The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services 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 - 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 - The list of virtual machine resource IDs, excluding any Hybrid AKS virtual machines, that are currently using this cloud services network.
- cluster
Id String - The resource ID of the Network Cloud cluster this cloud services network is associated with.
- detailed
Status String - The more detailed status of the cloud services network.
- detailed
Status StringMessage - The descriptive message about the current detailed status.
- enabled
Egress List<Property Map>Endpoints - The full list of additional and default egress endpoints that are currently enabled.
- hybrid
Aks List<String>Clusters Associated Ids - 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.
- interface
Name 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
- provisioning
State String - The provisioning state of the cloud services network.
- system
Data 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"
- virtual
Machines List<String>Associated Ids - 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
- Cloud
Services Network Enable Default Egress Endpoints True - True
- Cloud
Services 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
[]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
List<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
Endpoint
Dependency[] - 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[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 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
[]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
List<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
Endpoint
Dependency 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[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 List<Property Map>
- The list of endpoint dependencies.
EndpointDependency, EndpointDependencyArgs
- Domain
Name string - The domain name of the dependency.
- Port double
- The port of this endpoint.
- Domain
Name string - The domain name of the dependency.
- Port float64
- The port of this endpoint.
- domain
Name String - The domain name of the dependency.
- port Double
- The port of this endpoint.
- domain
Name 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.
- domain
Name String - The domain name of the dependency.
- port Number
- The port of this endpoint.
EndpointDependencyResponse, EndpointDependencyResponseArgs
- Domain
Name string - The domain name of the dependency.
- Port double
- The port of this endpoint.
- Domain
Name string - The domain name of the dependency.
- Port float64
- The port of this endpoint.
- domain
Name String - The domain name of the dependency.
- port Double
- The port of this endpoint.
- domain
Name 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.
- domain
Name String - The domain name of the dependency.
- port Number
- The port of this endpoint.
ExtendedLocation, ExtendedLocationArgs
ExtendedLocationResponse, ExtendedLocationResponseArgs
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified 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.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified 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-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0