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.
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 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")
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.
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={
"developerPortalUri": ["string"],
"instructions": "string",
},
server={
"managementPortalUri": ["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.
Azure Native. Api Center. Environment Kind - Environment kind.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Service
Name string - The name of Azure API Center service.
- Title string
- Environment title.
- Workspace
Name string - The name of the workspace.
- Custom
Properties object - The custom metadata defined for API catalog entities.
- Description string
- The environment description.
- Environment
Name 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 | Environment
Kind - Environment kind.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Service
Name string - The name of Azure API Center service.
- Title string
- Environment title.
- Workspace
Name string - The name of the workspace.
- Custom
Properties interface{} - The custom metadata defined for API catalog entities.
- Description string
- The environment description.
- Environment
Name string - The name of the environment.
- Onboarding
Onboarding
Args - Environment onboarding information
- Server
Environment
Server Args - Server information of the environment.
- kind
String | Environment
Kind - Environment kind.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- service
Name String - The name of Azure API Center service.
- title String
- Environment title.
- workspace
Name String - The name of the workspace.
- custom
Properties Object - The custom metadata defined for API catalog entities.
- description String
- The environment description.
- environment
Name String - The name of the environment.
- onboarding Onboarding
- Environment onboarding information
- server
Environment
Server - Server information of the environment.
- kind
string | Environment
Kind - Environment kind.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- service
Name string - The name of Azure API Center service.
- title string
- Environment title.
- workspace
Name string - The name of the workspace.
- custom
Properties any - The custom metadata defined for API catalog entities.
- description string
- The environment description.
- environment
Name string - The name of the environment.
- onboarding Onboarding
- Environment onboarding information
- server
Environment
Server - Server information of the environment.
- kind
str | Environment
Kind - 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
Onboarding
Args - Environment onboarding information
- server
Environment
Server Args - Server information of the environment.
- kind String | "development" | "testing" | "staging" | "production"
- Environment kind.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- service
Name String - The name of Azure API Center service.
- title String
- Environment title.
- workspace
Name String - The name of the workspace.
- custom
Properties Any - The custom metadata defined for API catalog entities.
- description String
- The environment description.
- environment
Name 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
- System
Data 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
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- 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
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Supporting Types
EnvironmentKind, EnvironmentKindArgs
- Development
- developmentDevelopment environment
- Testing
- testingTesting environment
- Staging
- stagingStaging environment
- Production
- productionProduction environment
- Environment
Kind Development - developmentDevelopment environment
- Environment
Kind Testing - testingTesting environment
- Environment
Kind Staging - stagingStaging environment
- Environment
Kind 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
- Management
Portal 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.
- Management
Portal []stringUri - The location of the management portal
- Type
string | Environment
Server Type - Type of the server that represents the environment.
- management
Portal List<String>Uri - The location of the management portal
- type
String | Environment
Server Type - Type of the server that represents the environment.
- management
Portal string[]Uri - The location of the management portal
- type
string | Environment
Server Type - Type of the server that represents the environment.
- management_
portal_ Sequence[str]uri - The location of the management portal
- type
str | Environment
Server Type - Type of the server that represents the environment.
- management
Portal 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" | "Mule
Soft API Management" - Type of the server that represents the environment.
EnvironmentServerResponse, EnvironmentServerResponseArgs
- Management
Portal List<string>Uri - The location of the management portal
- Type string
- Type of the server that represents the environment.
- Management
Portal []stringUri - The location of the management portal
- Type string
- Type of the server that represents the environment.
- management
Portal List<String>Uri - The location of the management portal
- type String
- Type of the server that represents the environment.
- management
Portal 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.
- management
Portal 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
- Mule
Soft_API_Management - MuleSoft API ManagementMulesoft Api Management server
- Environment
Server Type_Azure_API_Management - Azure API ManagementApi Management Server
- Environment
Server Type_Azure_ compute_ service - Azure compute serviceCompute server
- Environment
Server Type_Apigee_API_Management - Apigee API ManagementApigee server
- Environment
Server Type_AWS_API_Gateway - AWS API GatewayAWS Api Gateway server
- Environment
Server Type_Kong_API_Gateway - Kong API GatewayKong API Gateway server
- Environment
Server Type Kubernetes - KubernetesKubernetes server
- Environment
Server 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
- 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
- Mule
Soft_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
- "Mule
Soft API Management" - MuleSoft API ManagementMulesoft Api Management server
Onboarding, OnboardingArgs
- Developer
Portal List<string>Uri - The location of the development portal
- Instructions string
- Onboarding guide.
- Developer
Portal []stringUri - The location of the development portal
- Instructions string
- Onboarding guide.
- developer
Portal List<String>Uri - The location of the development portal
- instructions String
- Onboarding guide.
- developer
Portal 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.
- developer
Portal List<String>Uri - The location of the development portal
- instructions String
- Onboarding guide.
OnboardingResponse, OnboardingResponseArgs
- Developer
Portal List<string>Uri - The location of the development portal
- Instructions string
- Onboarding guide.
- Developer
Portal []stringUri - The location of the development portal
- Instructions string
- Onboarding guide.
- developer
Portal List<String>Uri - The location of the development portal
- instructions String
- Onboarding guide.
- developer
Portal 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.
- developer
Portal List<String>Uri - The location of the development portal
- instructions String
- Onboarding guide.
SystemDataResponse, SystemDataResponseArgs
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native: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