azure-native.app.ConnectedEnvironment
Explore with Pulumi AI
An environment for Kubernetes cluster specialized for web workloads by Azure App Service Azure REST API version: 2022-10-01.
Other available API versions: 2023-04-01-preview, 2023-05-01, 2023-05-02-preview, 2023-08-01-preview, 2023-11-02-preview, 2024-02-02-preview, 2024-03-01, 2024-08-02-preview, 2024-10-02-preview.
Example Usage
Create kube environments
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var connectedEnvironment = new AzureNative.App.ConnectedEnvironment("connectedEnvironment", new()
    {
        ConnectedEnvironmentName = "testenv",
        CustomDomainConfiguration = new AzureNative.App.Inputs.CustomDomainConfigurationArgs
        {
            CertificatePassword = "private key password",
            CertificateValue = "Y2VydA==",
            DnsSuffix = "www.my-name.com",
        },
        DaprAIConnectionString = "InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/",
        ExtendedLocation = new AzureNative.App.Inputs.ExtendedLocationArgs
        {
            Name = "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation",
            Type = AzureNative.App.ExtendedLocationTypes.CustomLocation,
        },
        Location = "East US",
        ResourceGroupName = "examplerg",
        StaticIp = "1.2.3.4",
    });
});
package main
import (
	app "github.com/pulumi/pulumi-azure-native-sdk/app/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := app.NewConnectedEnvironment(ctx, "connectedEnvironment", &app.ConnectedEnvironmentArgs{
			ConnectedEnvironmentName: pulumi.String("testenv"),
			CustomDomainConfiguration: &app.CustomDomainConfigurationArgs{
				CertificatePassword: pulumi.String("private key password"),
				CertificateValue:    pulumi.String("Y2VydA=="),
				DnsSuffix:           pulumi.String("www.my-name.com"),
			},
			DaprAIConnectionString: pulumi.String("InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/"),
			ExtendedLocation: &app.ExtendedLocationArgs{
				Name: pulumi.String("/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation"),
				Type: pulumi.String(app.ExtendedLocationTypesCustomLocation),
			},
			Location:          pulumi.String("East US"),
			ResourceGroupName: pulumi.String("examplerg"),
			StaticIp:          pulumi.String("1.2.3.4"),
		})
		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.app.ConnectedEnvironment;
import com.pulumi.azurenative.app.ConnectedEnvironmentArgs;
import com.pulumi.azurenative.app.inputs.CustomDomainConfigurationArgs;
import com.pulumi.azurenative.app.inputs.ExtendedLocationArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }
    public static void stack(Context ctx) {
        var connectedEnvironment = new ConnectedEnvironment("connectedEnvironment", ConnectedEnvironmentArgs.builder()
            .connectedEnvironmentName("testenv")
            .customDomainConfiguration(CustomDomainConfigurationArgs.builder()
                .certificatePassword("private key password")
                .certificateValue("Y2VydA==")
                .dnsSuffix("www.my-name.com")
                .build())
            .daprAIConnectionString("InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/")
            .extendedLocation(ExtendedLocationArgs.builder()
                .name("/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation")
                .type("CustomLocation")
                .build())
            .location("East US")
            .resourceGroupName("examplerg")
            .staticIp("1.2.3.4")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const connectedEnvironment = new azure_native.app.ConnectedEnvironment("connectedEnvironment", {
    connectedEnvironmentName: "testenv",
    customDomainConfiguration: {
        certificatePassword: "private key password",
        certificateValue: "Y2VydA==",
        dnsSuffix: "www.my-name.com",
    },
    daprAIConnectionString: "InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/",
    extendedLocation: {
        name: "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation",
        type: azure_native.app.ExtendedLocationTypes.CustomLocation,
    },
    location: "East US",
    resourceGroupName: "examplerg",
    staticIp: "1.2.3.4",
});
import pulumi
import pulumi_azure_native as azure_native
connected_environment = azure_native.app.ConnectedEnvironment("connectedEnvironment",
    connected_environment_name="testenv",
    custom_domain_configuration={
        "certificate_password": "private key password",
        "certificate_value": "Y2VydA==",
        "dns_suffix": "www.my-name.com",
    },
    dapr_ai_connection_string="InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/",
    extended_location={
        "name": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation",
        "type": azure_native.app.ExtendedLocationTypes.CUSTOM_LOCATION,
    },
    location="East US",
    resource_group_name="examplerg",
    static_ip="1.2.3.4")
resources:
  connectedEnvironment:
    type: azure-native:app:ConnectedEnvironment
    properties:
      connectedEnvironmentName: testenv
      customDomainConfiguration:
        certificatePassword: private key password
        certificateValue: Y2VydA==
        dnsSuffix: www.my-name.com
      daprAIConnectionString: InstrumentationKey=00000000-0000-0000-0000-000000000000;IngestionEndpoint=https://northcentralus-0.in.applicationinsights.azure.com/
      extendedLocation:
        name: /subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/resourceGroups/examplerg/providers/Microsoft.ExtendedLocation/customLocations/testcustomlocation
        type: CustomLocation
      location: East US
      resourceGroupName: examplerg
      staticIp: 1.2.3.4
Create ConnectedEnvironment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ConnectedEnvironment(name: string, args: ConnectedEnvironmentArgs, opts?: CustomResourceOptions);@overload
def ConnectedEnvironment(resource_name: str,
                         args: ConnectedEnvironmentArgs,
                         opts: Optional[ResourceOptions] = None)
@overload
def ConnectedEnvironment(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         resource_group_name: Optional[str] = None,
                         connected_environment_name: Optional[str] = None,
                         custom_domain_configuration: Optional[CustomDomainConfigurationArgs] = None,
                         dapr_ai_connection_string: Optional[str] = None,
                         extended_location: Optional[ExtendedLocationArgs] = None,
                         location: Optional[str] = None,
                         static_ip: Optional[str] = None,
                         tags: Optional[Mapping[str, str]] = None)func NewConnectedEnvironment(ctx *Context, name string, args ConnectedEnvironmentArgs, opts ...ResourceOption) (*ConnectedEnvironment, error)public ConnectedEnvironment(string name, ConnectedEnvironmentArgs args, CustomResourceOptions? opts = null)
public ConnectedEnvironment(String name, ConnectedEnvironmentArgs args)
public ConnectedEnvironment(String name, ConnectedEnvironmentArgs args, CustomResourceOptions options)
type: azure-native:app:ConnectedEnvironment
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 ConnectedEnvironmentArgs
- 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 ConnectedEnvironmentArgs
- 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 ConnectedEnvironmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ConnectedEnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ConnectedEnvironmentArgs
- 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 connectedEnvironmentResource = new AzureNative.App.ConnectedEnvironment("connectedEnvironmentResource", new()
{
    ResourceGroupName = "string",
    ConnectedEnvironmentName = "string",
    CustomDomainConfiguration = new AzureNative.App.Inputs.CustomDomainConfigurationArgs
    {
        CertificatePassword = "string",
        CertificateValue = "string",
        DnsSuffix = "string",
    },
    DaprAIConnectionString = "string",
    ExtendedLocation = new AzureNative.App.Inputs.ExtendedLocationArgs
    {
        Name = "string",
        Type = "string",
    },
    Location = "string",
    StaticIp = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
example, err := app.NewConnectedEnvironment(ctx, "connectedEnvironmentResource", &app.ConnectedEnvironmentArgs{
	ResourceGroupName:        pulumi.String("string"),
	ConnectedEnvironmentName: pulumi.String("string"),
	CustomDomainConfiguration: &app.CustomDomainConfigurationArgs{
		CertificatePassword: pulumi.String("string"),
		CertificateValue:    pulumi.String("string"),
		DnsSuffix:           pulumi.String("string"),
	},
	DaprAIConnectionString: pulumi.String("string"),
	ExtendedLocation: &app.ExtendedLocationArgs{
		Name: pulumi.String("string"),
		Type: pulumi.String("string"),
	},
	Location: pulumi.String("string"),
	StaticIp: pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
})
var connectedEnvironmentResource = new ConnectedEnvironment("connectedEnvironmentResource", ConnectedEnvironmentArgs.builder()
    .resourceGroupName("string")
    .connectedEnvironmentName("string")
    .customDomainConfiguration(CustomDomainConfigurationArgs.builder()
        .certificatePassword("string")
        .certificateValue("string")
        .dnsSuffix("string")
        .build())
    .daprAIConnectionString("string")
    .extendedLocation(ExtendedLocationArgs.builder()
        .name("string")
        .type("string")
        .build())
    .location("string")
    .staticIp("string")
    .tags(Map.of("string", "string"))
    .build());
connected_environment_resource = azure_native.app.ConnectedEnvironment("connectedEnvironmentResource",
    resource_group_name="string",
    connected_environment_name="string",
    custom_domain_configuration={
        "certificate_password": "string",
        "certificate_value": "string",
        "dns_suffix": "string",
    },
    dapr_ai_connection_string="string",
    extended_location={
        "name": "string",
        "type": "string",
    },
    location="string",
    static_ip="string",
    tags={
        "string": "string",
    })
const connectedEnvironmentResource = new azure_native.app.ConnectedEnvironment("connectedEnvironmentResource", {
    resourceGroupName: "string",
    connectedEnvironmentName: "string",
    customDomainConfiguration: {
        certificatePassword: "string",
        certificateValue: "string",
        dnsSuffix: "string",
    },
    daprAIConnectionString: "string",
    extendedLocation: {
        name: "string",
        type: "string",
    },
    location: "string",
    staticIp: "string",
    tags: {
        string: "string",
    },
});
type: azure-native:app:ConnectedEnvironment
properties:
    connectedEnvironmentName: string
    customDomainConfiguration:
        certificatePassword: string
        certificateValue: string
        dnsSuffix: string
    daprAIConnectionString: string
    extendedLocation:
        name: string
        type: string
    location: string
    resourceGroupName: string
    staticIp: string
    tags:
        string: string
ConnectedEnvironment 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 ConnectedEnvironment resource accepts the following input properties:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConnectedEnvironment stringName 
- Name of the connectedEnvironment.
- CustomDomain Pulumi.Configuration Azure Native. App. Inputs. Custom Domain Configuration 
- Custom domain configuration for the environment
- DaprAIConnection stringString 
- Application Insights connection string used by Dapr to export Service to Service communication telemetry
- ExtendedLocation Pulumi.Azure Native. App. Inputs. Extended Location 
- The complex type of the extended location.
- Location string
- The geo-location where the resource lives
- StaticIp string
- Static IP of the connectedEnvironment
- Dictionary<string, string>
- Resource tags.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ConnectedEnvironment stringName 
- Name of the connectedEnvironment.
- CustomDomain CustomConfiguration Domain Configuration Args 
- Custom domain configuration for the environment
- DaprAIConnection stringString 
- Application Insights connection string used by Dapr to export Service to Service communication telemetry
- ExtendedLocation ExtendedLocation Args 
- The complex type of the extended location.
- Location string
- The geo-location where the resource lives
- StaticIp string
- Static IP of the connectedEnvironment
- map[string]string
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- connectedEnvironment StringName 
- Name of the connectedEnvironment.
- customDomain CustomConfiguration Domain Configuration 
- Custom domain configuration for the environment
- daprAIConnection StringString 
- Application Insights connection string used by Dapr to export Service to Service communication telemetry
- extendedLocation ExtendedLocation 
- The complex type of the extended location.
- location String
- The geo-location where the resource lives
- staticIp String
- Static IP of the connectedEnvironment
- Map<String,String>
- Resource tags.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- connectedEnvironment stringName 
- Name of the connectedEnvironment.
- customDomain CustomConfiguration Domain Configuration 
- Custom domain configuration for the environment
- daprAIConnection stringString 
- Application Insights connection string used by Dapr to export Service to Service communication telemetry
- extendedLocation ExtendedLocation 
- The complex type of the extended location.
- location string
- The geo-location where the resource lives
- staticIp string
- Static IP of the connectedEnvironment
- {[key: string]: string}
- Resource tags.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- connected_environment_ strname 
- Name of the connectedEnvironment.
- custom_domain_ Customconfiguration Domain Configuration Args 
- Custom domain configuration for the environment
- dapr_ai_ strconnection_ string 
- Application Insights connection string used by Dapr to export Service to Service communication telemetry
- extended_location ExtendedLocation Args 
- The complex type of the extended location.
- location str
- The geo-location where the resource lives
- static_ip str
- Static IP of the connectedEnvironment
- Mapping[str, str]
- Resource tags.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- connectedEnvironment StringName 
- Name of the connectedEnvironment.
- customDomain Property MapConfiguration 
- Custom domain configuration for the environment
- daprAIConnection StringString 
- Application Insights connection string used by Dapr to export Service to Service communication telemetry
- extendedLocation Property Map
- The complex type of the extended location.
- location String
- The geo-location where the resource lives
- staticIp String
- Static IP of the connectedEnvironment
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the ConnectedEnvironment resource produces the following output properties:
- DefaultDomain string
- Default Domain Name for the cluster
- DeploymentErrors string
- Any errors that occurred during deployment or deployment validation
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the Kubernetes Environment.
- SystemData 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"
- DefaultDomain string
- Default Domain Name for the cluster
- DeploymentErrors string
- Any errors that occurred during deployment or deployment validation
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- ProvisioningState string
- Provisioning state of the Kubernetes Environment.
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- defaultDomain String
- Default Domain Name for the cluster
- deploymentErrors String
- Any errors that occurred during deployment or deployment validation
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the Kubernetes Environment.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- defaultDomain string
- Default Domain Name for the cluster
- deploymentErrors string
- Any errors that occurred during deployment or deployment validation
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- provisioningState string
- Provisioning state of the Kubernetes Environment.
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- default_domain str
- Default Domain Name for the cluster
- deployment_errors str
- Any errors that occurred during deployment or deployment validation
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- provisioning_state str
- Provisioning state of the Kubernetes Environment.
- 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"
- defaultDomain String
- Default Domain Name for the cluster
- deploymentErrors String
- Any errors that occurred during deployment or deployment validation
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- provisioningState String
- Provisioning state of the Kubernetes Environment.
- 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"
Supporting Types
CustomDomainConfiguration, CustomDomainConfigurationArgs      
- CertificatePassword string
- Certificate password
- CertificateValue string
- PFX or PEM blob
- DnsSuffix string
- Dns suffix for the environment domain
- CertificatePassword string
- Certificate password
- CertificateValue string
- PFX or PEM blob
- DnsSuffix string
- Dns suffix for the environment domain
- certificatePassword String
- Certificate password
- certificateValue String
- PFX or PEM blob
- dnsSuffix String
- Dns suffix for the environment domain
- certificatePassword string
- Certificate password
- certificateValue string
- PFX or PEM blob
- dnsSuffix string
- Dns suffix for the environment domain
- certificate_password str
- Certificate password
- certificate_value str
- PFX or PEM blob
- dns_suffix str
- Dns suffix for the environment domain
- certificatePassword String
- Certificate password
- certificateValue String
- PFX or PEM blob
- dnsSuffix String
- Dns suffix for the environment domain
CustomDomainConfigurationResponse, CustomDomainConfigurationResponseArgs        
- CustomDomain stringVerification Id 
- Id used to verify domain name ownership
- ExpirationDate string
- Certificate expiration date.
- SubjectName string
- Subject name of the certificate.
- Thumbprint string
- Certificate thumbprint.
- CertificatePassword string
- Certificate password
- CertificateValue string
- PFX or PEM blob
- DnsSuffix string
- Dns suffix for the environment domain
- CustomDomain stringVerification Id 
- Id used to verify domain name ownership
- ExpirationDate string
- Certificate expiration date.
- SubjectName string
- Subject name of the certificate.
- Thumbprint string
- Certificate thumbprint.
- CertificatePassword string
- Certificate password
- CertificateValue string
- PFX or PEM blob
- DnsSuffix string
- Dns suffix for the environment domain
- customDomain StringVerification Id 
- Id used to verify domain name ownership
- expirationDate String
- Certificate expiration date.
- subjectName String
- Subject name of the certificate.
- thumbprint String
- Certificate thumbprint.
- certificatePassword String
- Certificate password
- certificateValue String
- PFX or PEM blob
- dnsSuffix String
- Dns suffix for the environment domain
- customDomain stringVerification Id 
- Id used to verify domain name ownership
- expirationDate string
- Certificate expiration date.
- subjectName string
- Subject name of the certificate.
- thumbprint string
- Certificate thumbprint.
- certificatePassword string
- Certificate password
- certificateValue string
- PFX or PEM blob
- dnsSuffix string
- Dns suffix for the environment domain
- custom_domain_ strverification_ id 
- Id used to verify domain name ownership
- expiration_date str
- Certificate expiration date.
- subject_name str
- Subject name of the certificate.
- thumbprint str
- Certificate thumbprint.
- certificate_password str
- Certificate password
- certificate_value str
- PFX or PEM blob
- dns_suffix str
- Dns suffix for the environment domain
- customDomain StringVerification Id 
- Id used to verify domain name ownership
- expirationDate String
- Certificate expiration date.
- subjectName String
- Subject name of the certificate.
- thumbprint String
- Certificate thumbprint.
- certificatePassword String
- Certificate password
- certificateValue String
- PFX or PEM blob
- dnsSuffix String
- Dns suffix for the environment domain
ExtendedLocation, ExtendedLocationArgs    
- Name string
- The name of the extended location.
- Type
string | Pulumi.Azure Native. App. Extended Location Types 
- The type of the extended location.
- Name string
- The name of the extended location.
- Type
string | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | ExtendedLocation Types 
- The type of the extended location.
- name string
- The name of the extended location.
- type
string | ExtendedLocation Types 
- The type of the extended location.
- name str
- The name of the extended location.
- type
str | ExtendedLocation Types 
- The type of the extended location.
- name String
- The name of the extended location.
- type
String | "CustomLocation" 
- The type of the extended location.
ExtendedLocationResponse, ExtendedLocationResponseArgs      
ExtendedLocationTypes, ExtendedLocationTypesArgs      
- CustomLocation 
- CustomLocation
- ExtendedLocation Types Custom Location 
- CustomLocation
- CustomLocation 
- CustomLocation
- CustomLocation 
- CustomLocation
- CUSTOM_LOCATION
- CustomLocation
- "CustomLocation" 
- CustomLocation
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified stringBy Type 
- The type of identity that last modified the resource.
- created_at str
- The timestamp of resource creation (UTC).
- created_by str
- The identity that created the resource.
- created_by_ strtype 
- The type of identity that created the resource.
- last_modified_ strat 
- The timestamp of resource last modification (UTC)
- last_modified_ strby 
- The identity that last modified the resource.
- last_modified_ strby_ type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:app:ConnectedEnvironment testenv /subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.App/connectedEnvironments/{connectedEnvironmentName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0