published on Wednesday, Aug 5, 2026 by Pulumi
published on Wednesday, Aug 5, 2026 by Pulumi
Agent Space Connector used to connect to data sources
Uses Azure REST API version 2026-01-01.
Example Usage
AgentSpacesConnectors_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var agentSpacesConnector = new AzureNative.App.AgentSpacesConnector("agentSpacesConnector", new()
{
AgentSpaceName = "testAgentSpace",
ConnectorName = "new-shared-cosmosdb-connector",
Properties = new AzureNative.App.Inputs.AgentSpaceConnectorPropertiesArgs
{
DataConnectorType = "Kusto",
Endpoint = "https://newsharedkusto.kusto.windows.net",
ExtendedProperties = new Dictionary<string, object?>
{
["additionalEndpoints"] = new[]
{
"https://foo.kusto.windows.net/databasename",
"https://bar.kusto.windows.net/databasename",
},
["environment"] = "production",
["owner"] = "alice",
},
Identity = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sharedCosmosIdentity",
},
ResourceGroupName = "examplerg",
});
});
package main
import (
app "github.com/pulumi/pulumi-azure-native-sdk/app/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := app.NewAgentSpacesConnector(ctx, "agentSpacesConnector", &app.AgentSpacesConnectorArgs{
AgentSpaceName: pulumi.String("testAgentSpace"),
ConnectorName: pulumi.String("new-shared-cosmosdb-connector"),
Properties: &app.AgentSpaceConnectorPropertiesArgs{
DataConnectorType: pulumi.String("Kusto"),
Endpoint: pulumi.String("https://newsharedkusto.kusto.windows.net"),
ExtendedProperties: pulumi.Any(map[string]interface{}{
"additionalEndpoints": []string{
"https://foo.kusto.windows.net/databasename",
"https://bar.kusto.windows.net/databasename",
},
"environment": "production",
"owner": "alice",
}),
Identity: pulumi.String("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sharedCosmosIdentity"),
},
ResourceGroupName: pulumi.String("examplerg"),
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_app_agentspacesconnector" "agentSpacesConnector" {
agent_space_name = "testAgentSpace"
connector_name = "new-shared-cosmosdb-connector"
properties = {
data_connector_type = "Kusto"
endpoint = "https://newsharedkusto.kusto.windows.net"
extended_properties = {
"additionalEndpoints" = ["https://foo.kusto.windows.net/databasename", "https://bar.kusto.windows.net/databasename"]
"environment" = "production"
"owner" = "alice"
}
identity = "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sharedCosmosIdentity"
}
resource_group_name = "examplerg"
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.app.AgentSpacesConnector;
import com.pulumi.azurenative.app.AgentSpacesConnectorArgs;
import com.pulumi.azurenative.app.inputs.AgentSpaceConnectorPropertiesArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 agentSpacesConnector = new AgentSpacesConnector("agentSpacesConnector", AgentSpacesConnectorArgs.builder()
.agentSpaceName("testAgentSpace")
.connectorName("new-shared-cosmosdb-connector")
.properties(AgentSpaceConnectorPropertiesArgs.builder()
.dataConnectorType("Kusto")
.endpoint("https://newsharedkusto.kusto.windows.net")
.extendedProperties(Map.ofEntries(
Map.entry("additionalEndpoints", Arrays.asList(
"https://foo.kusto.windows.net/databasename",
"https://bar.kusto.windows.net/databasename")),
Map.entry("environment", "production"),
Map.entry("owner", "alice")
))
.identity("/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sharedCosmosIdentity")
.build())
.resourceGroupName("examplerg")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const agentSpacesConnector = new azure_native.app.AgentSpacesConnector("agentSpacesConnector", {
agentSpaceName: "testAgentSpace",
connectorName: "new-shared-cosmosdb-connector",
properties: {
dataConnectorType: "Kusto",
endpoint: "https://newsharedkusto.kusto.windows.net",
extendedProperties: {
additionalEndpoints: [
"https://foo.kusto.windows.net/databasename",
"https://bar.kusto.windows.net/databasename",
],
environment: "production",
owner: "alice",
},
identity: "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sharedCosmosIdentity",
},
resourceGroupName: "examplerg",
});
import pulumi
import pulumi_azure_native as azure_native
agent_spaces_connector = azure_native.app.AgentSpacesConnector("agentSpacesConnector",
agent_space_name="testAgentSpace",
connector_name="new-shared-cosmosdb-connector",
properties={
"data_connector_type": "Kusto",
"endpoint": "https://newsharedkusto.kusto.windows.net",
"extended_properties": {
"additionalEndpoints": [
"https://foo.kusto.windows.net/databasename",
"https://bar.kusto.windows.net/databasename",
],
"environment": "production",
"owner": "alice",
},
"identity": "/subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sharedCosmosIdentity",
},
resource_group_name="examplerg")
resources:
agentSpacesConnector:
type: azure-native:app:AgentSpacesConnector
properties:
agentSpaceName: testAgentSpace
connectorName: new-shared-cosmosdb-connector
properties:
dataConnectorType: Kusto
endpoint: https://newsharedkusto.kusto.windows.net
extendedProperties:
additionalEndpoints:
- https://foo.kusto.windows.net/databasename
- https://bar.kusto.windows.net/databasename
environment: production
owner: alice
identity: /subscriptions/8efdecc5-919e-44eb-b179-915dca89ebf9/resourceGroups/examplerg/providers/Microsoft.ManagedIdentity/userAssignedIdentities/sharedCosmosIdentity
resourceGroupName: examplerg
Create AgentSpacesConnector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new AgentSpacesConnector(name: string, args: AgentSpacesConnectorArgs, opts?: CustomResourceOptions);@overload
def AgentSpacesConnector(resource_name: str,
args: AgentSpacesConnectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def AgentSpacesConnector(resource_name: str,
opts: Optional[ResourceOptions] = None,
agent_space_name: Optional[str] = None,
resource_group_name: Optional[str] = None,
connector_name: Optional[str] = None,
properties: Optional[AgentSpaceConnectorPropertiesArgs] = None)func NewAgentSpacesConnector(ctx *Context, name string, args AgentSpacesConnectorArgs, opts ...ResourceOption) (*AgentSpacesConnector, error)public AgentSpacesConnector(string name, AgentSpacesConnectorArgs args, CustomResourceOptions? opts = null)
public AgentSpacesConnector(String name, AgentSpacesConnectorArgs args)
public AgentSpacesConnector(String name, AgentSpacesConnectorArgs args, CustomResourceOptions options)
type: azure-native:app:AgentSpacesConnector
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_app_agent_spaces_connector" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args AgentSpacesConnectorArgs
- 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 AgentSpacesConnectorArgs
- 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 AgentSpacesConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AgentSpacesConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AgentSpacesConnectorArgs
- 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 agentSpacesConnectorResource = new AzureNative.App.AgentSpacesConnector("agentSpacesConnectorResource", new()
{
AgentSpaceName = "string",
ResourceGroupName = "string",
ConnectorName = "string",
Properties = new AzureNative.App.Inputs.AgentSpaceConnectorPropertiesArgs
{
DataConnectorType = "string",
DataSource = "string",
Endpoint = "string",
ExtendedProperties = "any",
Identity = "string",
},
});
example, err := app.NewAgentSpacesConnector(ctx, "agentSpacesConnectorResource", &app.AgentSpacesConnectorArgs{
AgentSpaceName: pulumi.String("string"),
ResourceGroupName: pulumi.String("string"),
ConnectorName: pulumi.String("string"),
Properties: &app.AgentSpaceConnectorPropertiesArgs{
DataConnectorType: pulumi.String("string"),
DataSource: pulumi.String("string"),
Endpoint: pulumi.String("string"),
ExtendedProperties: pulumi.Any("any"),
Identity: pulumi.String("string"),
},
})
resource "azure-native_app_agent_spaces_connector" "agentSpacesConnectorResource" {
lifecycle {
create_before_destroy = true
}
agent_space_name = "string"
resource_group_name = "string"
connector_name = "string"
properties = {
data_connector_type = "string"
data_source = "string"
endpoint = "string"
extended_properties = "any"
identity = "string"
}
}
var agentSpacesConnectorResource = new AgentSpacesConnector("agentSpacesConnectorResource", AgentSpacesConnectorArgs.builder()
.agentSpaceName("string")
.resourceGroupName("string")
.connectorName("string")
.properties(AgentSpaceConnectorPropertiesArgs.builder()
.dataConnectorType("string")
.dataSource("string")
.endpoint("string")
.extendedProperties("any")
.identity("string")
.build())
.build());
agent_spaces_connector_resource = azure_native.app.AgentSpacesConnector("agentSpacesConnectorResource",
agent_space_name="string",
resource_group_name="string",
connector_name="string",
properties={
"data_connector_type": "string",
"data_source": "string",
"endpoint": "string",
"extended_properties": "any",
"identity": "string",
})
const agentSpacesConnectorResource = new azure_native.app.AgentSpacesConnector("agentSpacesConnectorResource", {
agentSpaceName: "string",
resourceGroupName: "string",
connectorName: "string",
properties: {
dataConnectorType: "string",
dataSource: "string",
endpoint: "string",
extendedProperties: "any",
identity: "string",
},
});
type: azure-native:app:AgentSpacesConnector
properties:
agentSpaceName: string
connectorName: string
properties:
dataConnectorType: string
dataSource: string
endpoint: string
extendedProperties: any
identity: string
resourceGroupName: string
AgentSpacesConnector 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 AgentSpacesConnector resource accepts the following input properties:
- Agent
Space stringName - The name of the AgentSpace
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connector
Name string - The name of the AgentSpaceConnector
- Properties
Pulumi.
Azure Native. App. Inputs. Agent Space Connector Properties - The resource-specific properties for this resource.
- Agent
Space stringName - The name of the AgentSpace
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Connector
Name string - The name of the AgentSpaceConnector
- Properties
Agent
Space Connector Properties Args - The resource-specific properties for this resource.
- agent_
space_ stringname - The name of the AgentSpace
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- connector_
name string - The name of the AgentSpaceConnector
- properties object
- The resource-specific properties for this resource.
- agent
Space StringName - The name of the AgentSpace
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connector
Name String - The name of the AgentSpaceConnector
- properties
Agent
Space Connector Properties - The resource-specific properties for this resource.
- agent
Space stringName - The name of the AgentSpace
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- connector
Name string - The name of the AgentSpaceConnector
- properties
Agent
Space Connector Properties - The resource-specific properties for this resource.
- agent_
space_ strname - The name of the AgentSpace
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- connector_
name str - The name of the AgentSpaceConnector
- properties
Agent
Space Connector Properties Args - The resource-specific properties for this resource.
- agent
Space StringName - The name of the AgentSpace
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- connector
Name String - The name of the AgentSpaceConnector
- properties Property Map
- The resource-specific properties for this resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the AgentSpacesConnector resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. App. 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"
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- 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"
- azure_
api_ stringversion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system_
data object - 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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"
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- 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"
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- 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"
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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"
Supporting Types
AgentSpaceConnectorProperties, AgentSpaceConnectorPropertiesArgs
Agent Space Connector Properties- Data
Connector stringType - The type of the data connector
- Data
Source string - Data source connection string or endpoint
- Endpoint string
- Endpoint of the connector
- Extended
Properties object - Additional properties for the data connector which can be used to store custom key-value pairs
- Identity string
- Identity used to access the data source
- Data
Connector stringType - The type of the data connector
- Data
Source string - Data source connection string or endpoint
- Endpoint string
- Endpoint of the connector
- Extended
Properties interface{} - Additional properties for the data connector which can be used to store custom key-value pairs
- Identity string
- Identity used to access the data source
- data_
connector_ stringtype - The type of the data connector
- data_
source string - Data source connection string or endpoint
- endpoint string
- Endpoint of the connector
- extended_
properties any - Additional properties for the data connector which can be used to store custom key-value pairs
- identity string
- Identity used to access the data source
- data
Connector StringType - The type of the data connector
- data
Source String - Data source connection string or endpoint
- endpoint String
- Endpoint of the connector
- extended
Properties Object - Additional properties for the data connector which can be used to store custom key-value pairs
- identity String
- Identity used to access the data source
- data
Connector stringType - The type of the data connector
- data
Source string - Data source connection string or endpoint
- endpoint string
- Endpoint of the connector
- extended
Properties any - Additional properties for the data connector which can be used to store custom key-value pairs
- identity string
- Identity used to access the data source
- data_
connector_ strtype - The type of the data connector
- data_
source str - Data source connection string or endpoint
- endpoint str
- Endpoint of the connector
- extended_
properties Any - Additional properties for the data connector which can be used to store custom key-value pairs
- identity str
- Identity used to access the data source
- data
Connector StringType - The type of the data connector
- data
Source String - Data source connection string or endpoint
- endpoint String
- Endpoint of the connector
- extended
Properties Any - Additional properties for the data connector which can be used to store custom key-value pairs
- identity String
- Identity used to access the data source
AgentSpaceConnectorPropertiesResponse, AgentSpaceConnectorPropertiesResponseArgs
Agent Space Connector Properties- Deployment
Error string - Deployment error message if provisioning failed
- Provisioning
State string - Provisioning state of the connector
- Data
Connector stringType - The type of the data connector
- Data
Source string - Data source connection string or endpoint
- Endpoint string
- Endpoint of the connector
- Extended
Properties object - Additional properties for the data connector which can be used to store custom key-value pairs
- Identity string
- Identity used to access the data source
- Deployment
Error string - Deployment error message if provisioning failed
- Provisioning
State string - Provisioning state of the connector
- Data
Connector stringType - The type of the data connector
- Data
Source string - Data source connection string or endpoint
- Endpoint string
- Endpoint of the connector
- Extended
Properties interface{} - Additional properties for the data connector which can be used to store custom key-value pairs
- Identity string
- Identity used to access the data source
- deployment_
error string - Deployment error message if provisioning failed
- provisioning_
state string - Provisioning state of the connector
- data_
connector_ stringtype - The type of the data connector
- data_
source string - Data source connection string or endpoint
- endpoint string
- Endpoint of the connector
- extended_
properties any - Additional properties for the data connector which can be used to store custom key-value pairs
- identity string
- Identity used to access the data source
- deployment
Error String - Deployment error message if provisioning failed
- provisioning
State String - Provisioning state of the connector
- data
Connector StringType - The type of the data connector
- data
Source String - Data source connection string or endpoint
- endpoint String
- Endpoint of the connector
- extended
Properties Object - Additional properties for the data connector which can be used to store custom key-value pairs
- identity String
- Identity used to access the data source
- deployment
Error string - Deployment error message if provisioning failed
- provisioning
State string - Provisioning state of the connector
- data
Connector stringType - The type of the data connector
- data
Source string - Data source connection string or endpoint
- endpoint string
- Endpoint of the connector
- extended
Properties any - Additional properties for the data connector which can be used to store custom key-value pairs
- identity string
- Identity used to access the data source
- deployment_
error str - Deployment error message if provisioning failed
- provisioning_
state str - Provisioning state of the connector
- data_
connector_ strtype - The type of the data connector
- data_
source str - Data source connection string or endpoint
- endpoint str
- Endpoint of the connector
- extended_
properties Any - Additional properties for the data connector which can be used to store custom key-value pairs
- identity str
- Identity used to access the data source
- deployment
Error String - Deployment error message if provisioning failed
- provisioning
State String - Provisioning state of the connector
- data
Connector StringType - The type of the data connector
- data
Source String - Data source connection string or endpoint
- endpoint String
- Endpoint of the connector
- extended
Properties Any - Additional properties for the data connector which can be used to store custom key-value pairs
- identity String
- Identity used to access the data source
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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:app:AgentSpacesConnector new-shared-cosmosdb-connector /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.App/agentSpaces/{agentSpaceName}/connectors/{connectorName}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0
published on Wednesday, Aug 5, 2026 by Pulumi