1. Packages
  2. Azure Native
  3. API Docs
  4. apicenter
  5. Environment
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.apicenter.Environment

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

    Environment entity. Azure REST API version: 2024-03-01.

    Other available API versions: 2024-03-15-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 (
    	"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 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=azure_native.apicenter.OnboardingArgs(
            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=azure_native.apicenter.EnvironmentServerArgs(
            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")
    
    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",
    });
    
    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.

    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=azure_native.apicenter.OnboardingArgs(
            developer_portal_uri=["string"],
            instructions="string",
        ),
        server=azure_native.apicenter.EnvironmentServerArgs(
            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

    The Environment resource accepts the following input properties:

    Kind string | Pulumi.AzureNative.ApiCenter.EnvironmentKind
    Environment kind.
    ResourceGroupName string
    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.AzureNative.ApiCenter.Inputs.Onboarding
    Environment onboarding information
    Server Pulumi.AzureNative.ApiCenter.Inputs.EnvironmentServer
    Server information of the environment.
    Kind string | EnvironmentKind
    Environment kind.
    ResourceGroupName string
    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 EnvironmentServerArgs
    Server information of the environment.
    kind String | EnvironmentKind
    Environment kind.
    resourceGroupName String
    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.
    resourceGroupName string
    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_name str
    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 EnvironmentServerArgs
    Server information of the environment.
    kind String | "development" | "testing" | "staging" | "production"
    Environment kind.
    resourceGroupName String
    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.AzureNative.ApiCenter.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    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
    EnvironmentKindDevelopment
    developmentDevelopment environment
    EnvironmentKindTesting
    testingTesting environment
    EnvironmentKindStaging
    stagingStaging environment
    EnvironmentKindProduction
    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

    ManagementPortalUri List<string>
    The location of the management portal
    Type string | Pulumi.AzureNative.ApiCenter.EnvironmentServerType
    Type of the server that represents the environment.
    ManagementPortalUri []string
    The location of the management portal
    Type string | EnvironmentServerType
    Type of the server that represents the environment.
    managementPortalUri List<String>
    The location of the management portal
    type String | EnvironmentServerType
    Type of the server that represents the environment.
    managementPortalUri string[]
    The location of the management portal
    type string | EnvironmentServerType
    Type of the server that represents the environment.
    management_portal_uri Sequence[str]
    The location of the management portal
    type str | EnvironmentServerType
    Type of the server that represents the environment.

    EnvironmentServerResponse, EnvironmentServerResponseArgs

    ManagementPortalUri List<string>
    The location of the management portal
    Type string
    Type of the server that represents the environment.
    ManagementPortalUri []string
    The location of the management portal
    Type string
    Type of the server that represents the environment.
    managementPortalUri List<String>
    The location of the management portal
    type String
    Type of the server that represents the environment.
    managementPortalUri string[]
    The location of the management portal
    type string
    Type of the server that represents the environment.
    management_portal_uri Sequence[str]
    The location of the management portal
    type str
    Type of the server that represents the environment.
    managementPortalUri List<String>
    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
    EnvironmentServerType_Azure_API_Management
    Azure API ManagementApi Management Server
    EnvironmentServerType_Azure_compute_service
    Azure compute serviceCompute server
    EnvironmentServerType_Apigee_API_Management
    Apigee API ManagementApigee server
    EnvironmentServerType_AWS_API_Gateway
    AWS API GatewayAWS Api Gateway server
    EnvironmentServerType_Kong_API_Gateway
    Kong API GatewayKong API Gateway server
    EnvironmentServerTypeKubernetes
    KubernetesKubernetes server
    EnvironmentServerType_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_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

    DeveloperPortalUri List<string>
    The location of the development portal
    Instructions string
    Onboarding guide.
    DeveloperPortalUri []string
    The location of the development portal
    Instructions string
    Onboarding guide.
    developerPortalUri List<String>
    The location of the development portal
    instructions String
    Onboarding guide.
    developerPortalUri string[]
    The location of the development portal
    instructions string
    Onboarding guide.
    developer_portal_uri Sequence[str]
    The location of the development portal
    instructions str
    Onboarding guide.
    developerPortalUri List<String>
    The location of the development portal
    instructions String
    Onboarding guide.

    OnboardingResponse, OnboardingResponseArgs

    DeveloperPortalUri List<string>
    The location of the development portal
    Instructions string
    Onboarding guide.
    DeveloperPortalUri []string
    The location of the development portal
    Instructions string
    Onboarding guide.
    developerPortalUri List<String>
    The location of the development portal
    instructions String
    Onboarding guide.
    developerPortalUri string[]
    The location of the development portal
    instructions string
    Onboarding guide.
    developer_portal_uri Sequence[str]
    The location of the development portal
    instructions str
    Onboarding guide.
    developerPortalUri List<String>
    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.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    CreatedAt string
    The timestamp of resource creation (UTC).
    CreatedBy string
    The identity that created the resource.
    CreatedByType string
    The type of identity that created the resource.
    LastModifiedAt string
    The timestamp of resource last modification (UTC)
    LastModifiedBy string
    The identity that last modified the resource.
    LastModifiedByType string
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.
    createdAt string
    The timestamp of resource creation (UTC).
    createdBy string
    The identity that created the resource.
    createdByType string
    The type of identity that created the resource.
    lastModifiedAt string
    The timestamp of resource last modification (UTC)
    lastModifiedBy string
    The identity that last modified the resource.
    lastModifiedByType string
    The type of identity that last modified the resource.
    created_at str
    The timestamp of resource creation (UTC).
    created_by str
    The identity that created the resource.
    created_by_type str
    The type of identity that created the resource.
    last_modified_at str
    The timestamp of resource last modification (UTC)
    last_modified_by str
    The identity that last modified the resource.
    last_modified_by_type str
    The type of identity that last modified the resource.
    createdAt String
    The timestamp of resource creation (UTC).
    createdBy String
    The identity that created the resource.
    createdByType String
    The type of identity that created the resource.
    lastModifiedAt String
    The timestamp of resource last modification (UTC)
    lastModifiedBy String
    The identity that last modified the resource.
    lastModifiedByType String
    The type of identity that last modified the resource.

    Import

    An existing resource can be imported using its type token, name, and identifier, e.g.

    $ pulumi import azure-native: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
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi