azure-native.apicenter.Environment
Explore with Pulumi AI
Environment entity. Azure REST API version: 2024-03-01.
Other available API versions: 2024-03-15-preview, 2024-06-01-preview.
Example Usage
Environments_CreateOrUpdate
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() => 
{
    var environment = new AzureNative.ApiCenter.Environment("environment", new()
    {
        Description = "The primary Azure API Management service for the European division of Contoso.",
        EnvironmentName = "public",
        Kind = AzureNative.ApiCenter.EnvironmentKind.Production,
        Onboarding = new AzureNative.ApiCenter.Inputs.OnboardingArgs
        {
            DeveloperPortalUri = new[]
            {
                "https://developer.contoso.com",
            },
            Instructions = "Sign in or sign up in the specified developer portal to request API access. You must complete the internal privacy training for your account to be approved.",
        },
        ResourceGroupName = "contoso-resources",
        Server = new AzureNative.ApiCenter.Inputs.EnvironmentServerArgs
        {
            ManagementPortalUri = new[]
            {
                "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso",
            },
            Type = AzureNative.ApiCenter.EnvironmentServerType.Azure_API_Management,
        },
        ServiceName = "contoso",
        Title = "Contoso Europe Azure API Management",
        WorkspaceName = "default",
    });
});
package main
import (
	apicenter "github.com/pulumi/pulumi-azure-native-sdk/apicenter/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := apicenter.NewEnvironment(ctx, "environment", &apicenter.EnvironmentArgs{
			Description:     pulumi.String("The primary Azure API Management service for the European division of Contoso."),
			EnvironmentName: pulumi.String("public"),
			Kind:            pulumi.String(apicenter.EnvironmentKindProduction),
			Onboarding: &apicenter.OnboardingArgs{
				DeveloperPortalUri: pulumi.StringArray{
					pulumi.String("https://developer.contoso.com"),
				},
				Instructions: pulumi.String("Sign in or sign up in the specified developer portal to request API access. You must complete the internal privacy training for your account to be approved."),
			},
			ResourceGroupName: pulumi.String("contoso-resources"),
			Server: &apicenter.EnvironmentServerArgs{
				ManagementPortalUri: pulumi.StringArray{
					pulumi.String("https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso"),
				},
				Type: pulumi.String(apicenter.EnvironmentServerType_Azure_API_Management),
			},
			ServiceName:   pulumi.String("contoso"),
			Title:         pulumi.String("Contoso Europe Azure API Management"),
			WorkspaceName: pulumi.String("default"),
		})
		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.apicenter.Environment;
import com.pulumi.azurenative.apicenter.EnvironmentArgs;
import com.pulumi.azurenative.apicenter.inputs.OnboardingArgs;
import com.pulumi.azurenative.apicenter.inputs.EnvironmentServerArgs;
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 environment = new Environment("environment", EnvironmentArgs.builder()
            .description("The primary Azure API Management service for the European division of Contoso.")
            .environmentName("public")
            .kind("production")
            .onboarding(OnboardingArgs.builder()
                .developerPortalUri("https://developer.contoso.com")
                .instructions("Sign in or sign up in the specified developer portal to request API access. You must complete the internal privacy training for your account to be approved.")
                .build())
            .resourceGroupName("contoso-resources")
            .server(EnvironmentServerArgs.builder()
                .managementPortalUri("https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso")
                .type("Azure API Management")
                .build())
            .serviceName("contoso")
            .title("Contoso Europe Azure API Management")
            .workspaceName("default")
            .build());
    }
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const environment = new azure_native.apicenter.Environment("environment", {
    description: "The primary Azure API Management service for the European division of Contoso.",
    environmentName: "public",
    kind: azure_native.apicenter.EnvironmentKind.Production,
    onboarding: {
        developerPortalUri: ["https://developer.contoso.com"],
        instructions: "Sign in or sign up in the specified developer portal to request API access. You must complete the internal privacy training for your account to be approved.",
    },
    resourceGroupName: "contoso-resources",
    server: {
        managementPortalUri: ["https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso"],
        type: azure_native.apicenter.EnvironmentServerType.Azure_API_Management,
    },
    serviceName: "contoso",
    title: "Contoso Europe Azure API Management",
    workspaceName: "default",
});
import pulumi
import pulumi_azure_native as azure_native
environment = azure_native.apicenter.Environment("environment",
    description="The primary Azure API Management service for the European division of Contoso.",
    environment_name="public",
    kind=azure_native.apicenter.EnvironmentKind.PRODUCTION,
    onboarding={
        "developer_portal_uri": ["https://developer.contoso.com"],
        "instructions": "Sign in or sign up in the specified developer portal to request API access. You must complete the internal privacy training for your account to be approved.",
    },
    resource_group_name="contoso-resources",
    server={
        "management_portal_uri": ["https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso"],
        "type": azure_native.apicenter.EnvironmentServerType.AZURE_AP_I_MANAGEMENT,
    },
    service_name="contoso",
    title="Contoso Europe Azure API Management",
    workspace_name="default")
resources:
  environment:
    type: azure-native:apicenter:Environment
    properties:
      description: The primary Azure API Management service for the European division of Contoso.
      environmentName: public
      kind: production
      onboarding:
        developerPortalUri:
          - https://developer.contoso.com
        instructions: Sign in or sign up in the specified developer portal to request API access. You must complete the internal privacy training for your account to be approved.
      resourceGroupName: contoso-resources
      server:
        managementPortalUri:
          - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso
        type: Azure API Management
      serviceName: contoso
      title: Contoso Europe Azure API Management
      workspaceName: default
Create Environment Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Environment(name: string, args: EnvironmentArgs, opts?: CustomResourceOptions);@overload
def Environment(resource_name: str,
                args: EnvironmentArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def Environment(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                kind: Optional[Union[str, EnvironmentKind]] = None,
                resource_group_name: Optional[str] = None,
                service_name: Optional[str] = None,
                title: Optional[str] = None,
                workspace_name: Optional[str] = None,
                custom_properties: Optional[Any] = None,
                description: Optional[str] = None,
                environment_name: Optional[str] = None,
                onboarding: Optional[OnboardingArgs] = None,
                server: Optional[EnvironmentServerArgs] = None)func NewEnvironment(ctx *Context, name string, args EnvironmentArgs, opts ...ResourceOption) (*Environment, error)public Environment(string name, EnvironmentArgs args, CustomResourceOptions? opts = null)
public Environment(String name, EnvironmentArgs args)
public Environment(String name, EnvironmentArgs args, CustomResourceOptions options)
type: azure-native:apicenter:Environment
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 EnvironmentArgs
- 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 EnvironmentArgs
- 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 EnvironmentArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args EnvironmentArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args EnvironmentArgs
- 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 environmentResource = new AzureNative.ApiCenter.Environment("environmentResource", new()
{
    Kind = "string",
    ResourceGroupName = "string",
    ServiceName = "string",
    Title = "string",
    WorkspaceName = "string",
    CustomProperties = "any",
    Description = "string",
    EnvironmentName = "string",
    Onboarding = new AzureNative.ApiCenter.Inputs.OnboardingArgs
    {
        DeveloperPortalUri = new[]
        {
            "string",
        },
        Instructions = "string",
    },
    Server = new AzureNative.ApiCenter.Inputs.EnvironmentServerArgs
    {
        ManagementPortalUri = new[]
        {
            "string",
        },
        Type = "string",
    },
});
example, err := apicenter.NewEnvironment(ctx, "environmentResource", &apicenter.EnvironmentArgs{
	Kind:              pulumi.String("string"),
	ResourceGroupName: pulumi.String("string"),
	ServiceName:       pulumi.String("string"),
	Title:             pulumi.String("string"),
	WorkspaceName:     pulumi.String("string"),
	CustomProperties:  pulumi.Any("any"),
	Description:       pulumi.String("string"),
	EnvironmentName:   pulumi.String("string"),
	Onboarding: &apicenter.OnboardingArgs{
		DeveloperPortalUri: pulumi.StringArray{
			pulumi.String("string"),
		},
		Instructions: pulumi.String("string"),
	},
	Server: &apicenter.EnvironmentServerArgs{
		ManagementPortalUri: pulumi.StringArray{
			pulumi.String("string"),
		},
		Type: pulumi.String("string"),
	},
})
var environmentResource = new Environment("environmentResource", EnvironmentArgs.builder()
    .kind("string")
    .resourceGroupName("string")
    .serviceName("string")
    .title("string")
    .workspaceName("string")
    .customProperties("any")
    .description("string")
    .environmentName("string")
    .onboarding(OnboardingArgs.builder()
        .developerPortalUri("string")
        .instructions("string")
        .build())
    .server(EnvironmentServerArgs.builder()
        .managementPortalUri("string")
        .type("string")
        .build())
    .build());
environment_resource = azure_native.apicenter.Environment("environmentResource",
    kind="string",
    resource_group_name="string",
    service_name="string",
    title="string",
    workspace_name="string",
    custom_properties="any",
    description="string",
    environment_name="string",
    onboarding={
        "developer_portal_uri": ["string"],
        "instructions": "string",
    },
    server={
        "management_portal_uri": ["string"],
        "type": "string",
    })
const environmentResource = new azure_native.apicenter.Environment("environmentResource", {
    kind: "string",
    resourceGroupName: "string",
    serviceName: "string",
    title: "string",
    workspaceName: "string",
    customProperties: "any",
    description: "string",
    environmentName: "string",
    onboarding: {
        developerPortalUri: ["string"],
        instructions: "string",
    },
    server: {
        managementPortalUri: ["string"],
        type: "string",
    },
});
type: azure-native:apicenter:Environment
properties:
    customProperties: any
    description: string
    environmentName: string
    kind: string
    onboarding:
        developerPortalUri:
            - string
        instructions: string
    resourceGroupName: string
    server:
        managementPortalUri:
            - string
        type: string
    serviceName: string
    title: string
    workspaceName: string
Environment 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 Environment resource accepts the following input properties:
- Kind
string | Pulumi.Azure Native. Api Center. Environment Kind 
- Environment kind.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ServiceName string
- The name of Azure API Center service.
- Title string
- Environment title.
- WorkspaceName string
- The name of the workspace.
- CustomProperties object
- The custom metadata defined for API catalog entities.
- Description string
- The environment description.
- EnvironmentName string
- The name of the environment.
- Onboarding
Pulumi.Azure Native. Api Center. Inputs. Onboarding 
- Environment onboarding information
- Server
Pulumi.Azure Native. Api Center. Inputs. Environment Server 
- Server information of the environment.
- Kind
string | EnvironmentKind 
- Environment kind.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- ServiceName string
- The name of Azure API Center service.
- Title string
- Environment title.
- WorkspaceName string
- The name of the workspace.
- CustomProperties interface{}
- The custom metadata defined for API catalog entities.
- Description string
- The environment description.
- EnvironmentName string
- The name of the environment.
- Onboarding
OnboardingArgs 
- Environment onboarding information
- Server
EnvironmentServer Args 
- Server information of the environment.
- kind
String | EnvironmentKind 
- Environment kind.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- serviceName String
- The name of Azure API Center service.
- title String
- Environment title.
- workspaceName String
- The name of the workspace.
- customProperties Object
- The custom metadata defined for API catalog entities.
- description String
- The environment description.
- environmentName String
- The name of the environment.
- onboarding Onboarding
- Environment onboarding information
- server
EnvironmentServer 
- Server information of the environment.
- kind
string | EnvironmentKind 
- Environment kind.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- serviceName string
- The name of Azure API Center service.
- title string
- Environment title.
- workspaceName string
- The name of the workspace.
- customProperties any
- The custom metadata defined for API catalog entities.
- description string
- The environment description.
- environmentName string
- The name of the environment.
- onboarding Onboarding
- Environment onboarding information
- server
EnvironmentServer 
- Server information of the environment.
- kind
str | EnvironmentKind 
- Environment kind.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- service_name str
- The name of Azure API Center service.
- title str
- Environment title.
- workspace_name str
- The name of the workspace.
- custom_properties Any
- The custom metadata defined for API catalog entities.
- description str
- The environment description.
- environment_name str
- The name of the environment.
- onboarding
OnboardingArgs 
- Environment onboarding information
- server
EnvironmentServer Args 
- Server information of the environment.
- kind String | "development" | "testing" | "staging" | "production"
- Environment kind.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- serviceName String
- The name of Azure API Center service.
- title String
- Environment title.
- workspaceName String
- The name of the workspace.
- customProperties Any
- The custom metadata defined for API catalog entities.
- description String
- The environment description.
- environmentName String
- The name of the environment.
- onboarding Property Map
- Environment onboarding information
- server Property Map
- Server information of the environment.
Outputs
All input properties are implicitly available as output properties. Additionally, the Environment resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Api Center. 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"
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- 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"
- 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"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- 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
EnvironmentKind, EnvironmentKindArgs    
- Development
- developmentDevelopment environment
- Testing
- testingTesting environment
- Staging
- stagingStaging environment
- Production
- productionProduction environment
- EnvironmentKind Development 
- developmentDevelopment environment
- EnvironmentKind Testing 
- testingTesting environment
- EnvironmentKind Staging 
- stagingStaging environment
- EnvironmentKind Production 
- productionProduction environment
- Development
- developmentDevelopment environment
- Testing
- testingTesting environment
- Staging
- stagingStaging environment
- Production
- productionProduction environment
- Development
- developmentDevelopment environment
- Testing
- testingTesting environment
- Staging
- stagingStaging environment
- Production
- productionProduction environment
- DEVELOPMENT
- developmentDevelopment environment
- TESTING
- testingTesting environment
- STAGING
- stagingStaging environment
- PRODUCTION
- productionProduction environment
- "development"
- developmentDevelopment environment
- "testing"
- testingTesting environment
- "staging"
- stagingStaging environment
- "production"
- productionProduction environment
EnvironmentServer, EnvironmentServerArgs    
- ManagementPortal List<string>Uri 
- The location of the management portal
- Type
string | Pulumi.Azure Native. Api Center. Environment Server Type 
- Type of the server that represents the environment.
- ManagementPortal []stringUri 
- The location of the management portal
- Type
string | EnvironmentServer Type 
- Type of the server that represents the environment.
- managementPortal List<String>Uri 
- The location of the management portal
- type
String | EnvironmentServer Type 
- Type of the server that represents the environment.
- managementPortal string[]Uri 
- The location of the management portal
- type
string | EnvironmentServer Type 
- Type of the server that represents the environment.
- management_portal_ Sequence[str]uri 
- The location of the management portal
- type
str | EnvironmentServer Type 
- Type of the server that represents the environment.
- managementPortal List<String>Uri 
- The location of the management portal
- type
String | "Azure API Management" | "Azure compute service" | "Apigee API Management" | "AWS API Gateway" | "Kong API Gateway" | "Kubernetes" | "MuleSoft API Management" 
- Type of the server that represents the environment.
EnvironmentServerResponse, EnvironmentServerResponseArgs      
- ManagementPortal List<string>Uri 
- The location of the management portal
- Type string
- Type of the server that represents the environment.
- ManagementPortal []stringUri 
- The location of the management portal
- Type string
- Type of the server that represents the environment.
- managementPortal List<String>Uri 
- The location of the management portal
- type String
- Type of the server that represents the environment.
- managementPortal string[]Uri 
- The location of the management portal
- type string
- Type of the server that represents the environment.
- management_portal_ Sequence[str]uri 
- The location of the management portal
- type str
- Type of the server that represents the environment.
- managementPortal List<String>Uri 
- The location of the management portal
- type String
- Type of the server that represents the environment.
EnvironmentServerType, EnvironmentServerTypeArgs      
- Azure_API_Management
- Azure API ManagementApi Management Server
- Azure_compute_ service 
- Azure compute serviceCompute server
- Apigee_API_Management
- Apigee API ManagementApigee server
- AWS_API_Gateway
- AWS API GatewayAWS Api Gateway server
- Kong_API_Gateway
- Kong API GatewayKong API Gateway server
- Kubernetes
- KubernetesKubernetes server
- MuleSoft_API_Management 
- MuleSoft API ManagementMulesoft Api Management server
- EnvironmentServer Type_Azure_API_Management 
- Azure API ManagementApi Management Server
- EnvironmentServer Type_Azure_ compute_ service 
- Azure compute serviceCompute server
- EnvironmentServer Type_Apigee_API_Management 
- Apigee API ManagementApigee server
- EnvironmentServer Type_AWS_API_Gateway 
- AWS API GatewayAWS Api Gateway server
- EnvironmentServer Type_Kong_API_Gateway 
- Kong API GatewayKong API Gateway server
- EnvironmentServer Type Kubernetes 
- KubernetesKubernetes server
- EnvironmentServer Type_Mule Soft_API_Management 
- MuleSoft API ManagementMulesoft Api Management server
- Azure_API_Management
- Azure API ManagementApi Management Server
- Azure_compute_ service 
- Azure compute serviceCompute server
- Apigee_API_Management
- Apigee API ManagementApigee server
- AWS_API_Gateway
- AWS API GatewayAWS Api Gateway server
- Kong_API_Gateway
- Kong API GatewayKong API Gateway server
- Kubernetes
- KubernetesKubernetes server
- MuleSoft_API_Management 
- MuleSoft API ManagementMulesoft Api Management server
- Azure_API_Management
- Azure API ManagementApi Management Server
- Azure_compute_ service 
- Azure compute serviceCompute server
- Apigee_API_Management
- Apigee API ManagementApigee server
- AWS_API_Gateway
- AWS API GatewayAWS Api Gateway server
- Kong_API_Gateway
- Kong API GatewayKong API Gateway server
- Kubernetes
- KubernetesKubernetes server
- MuleSoft_API_Management 
- MuleSoft API ManagementMulesoft Api Management server
- AZURE_AP_I_MANAGEMENT
- Azure API ManagementApi Management Server
- AZURE_COMPUTE_SERVICE
- Azure compute serviceCompute server
- APIGEE_AP_I_MANAGEMENT
- Apigee API ManagementApigee server
- AW_S_AP_I_GATEWAY
- AWS API GatewayAWS Api Gateway server
- KONG_AP_I_GATEWAY
- Kong API GatewayKong API Gateway server
- KUBERNETES
- KubernetesKubernetes server
- MULE_SOFT_AP_I_MANAGEMENT
- MuleSoft API ManagementMulesoft Api Management server
- "Azure API Management"
- Azure API ManagementApi Management Server
- "Azure compute service"
- Azure compute serviceCompute server
- "Apigee API Management"
- Apigee API ManagementApigee server
- "AWS API Gateway"
- AWS API GatewayAWS Api Gateway server
- "Kong API Gateway"
- Kong API GatewayKong API Gateway server
- "Kubernetes"
- KubernetesKubernetes server
- "MuleSoft API Management" 
- MuleSoft API ManagementMulesoft Api Management server
Onboarding, OnboardingArgs  
- DeveloperPortal List<string>Uri 
- The location of the development portal
- Instructions string
- Onboarding guide.
- DeveloperPortal []stringUri 
- The location of the development portal
- Instructions string
- Onboarding guide.
- developerPortal List<String>Uri 
- The location of the development portal
- instructions String
- Onboarding guide.
- developerPortal string[]Uri 
- The location of the development portal
- instructions string
- Onboarding guide.
- developer_portal_ Sequence[str]uri 
- The location of the development portal
- instructions str
- Onboarding guide.
- developerPortal List<String>Uri 
- The location of the development portal
- instructions String
- Onboarding guide.
OnboardingResponse, OnboardingResponseArgs    
- DeveloperPortal List<string>Uri 
- The location of the development portal
- Instructions string
- Onboarding guide.
- DeveloperPortal []stringUri 
- The location of the development portal
- Instructions string
- Onboarding guide.
- developerPortal List<String>Uri 
- The location of the development portal
- instructions String
- Onboarding guide.
- developerPortal string[]Uri 
- The location of the development portal
- instructions string
- Onboarding guide.
- developer_portal_ Sequence[str]uri 
- The location of the development portal
- instructions str
- Onboarding guide.
- developerPortal List<String>Uri 
- The location of the development portal
- instructions String
- Onboarding guide.
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:apicenter:Environment public /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiCenter/services/{serviceName}/workspaces/{workspaceName}/environments/{environmentName} 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0