1. Packages
  2. Azure Native v2
  3. API Docs
  4. apicenter
  5. ApiSource
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.apicenter.ApiSource

Explore with Pulumi AI

These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

API source entity. Azure REST API version: 2024-06-01-preview.

Example Usage

ApiSources_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var apiSource = new AzureNative.ApiCenter.ApiSource("apiSource", new()
    {
        ApiSourceName = "contoso-api-management",
        AzureApiManagementSource = new AzureNative.ApiCenter.Inputs.AzureApiManagementSourceArgs
        {
            MsiResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ManagedIdentity/userAssignedIdentities/contoso-identity",
            ResourceId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso",
        },
        ImportSpecification = AzureNative.ApiCenter.ImportSpecificationOptions.OnDemand,
        ResourceGroupName = "contoso-resources",
        ServiceName = "contoso",
        TargetEnvironmentId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiCenter/services/contoso/workspaces/default/environments/azure-api-management",
        TargetLifecycleStage = AzureNative.ApiCenter.LifecycleStage.Design,
        WorkspaceName = "default",
    });

});
Copy
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.NewApiSource(ctx, "apiSource", &apicenter.ApiSourceArgs{
			ApiSourceName: pulumi.String("contoso-api-management"),
			AzureApiManagementSource: &apicenter.AzureApiManagementSourceArgs{
				MsiResourceId: pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ManagedIdentity/userAssignedIdentities/contoso-identity"),
				ResourceId:    pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso"),
			},
			ImportSpecification:  pulumi.String(apicenter.ImportSpecificationOptionsOnDemand),
			ResourceGroupName:    pulumi.String("contoso-resources"),
			ServiceName:          pulumi.String("contoso"),
			TargetEnvironmentId:  pulumi.String("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiCenter/services/contoso/workspaces/default/environments/azure-api-management"),
			TargetLifecycleStage: pulumi.String(apicenter.LifecycleStageDesign),
			WorkspaceName:        pulumi.String("default"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.apicenter.ApiSource;
import com.pulumi.azurenative.apicenter.ApiSourceArgs;
import com.pulumi.azurenative.apicenter.inputs.AzureApiManagementSourceArgs;
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 apiSource = new ApiSource("apiSource", ApiSourceArgs.builder()
            .apiSourceName("contoso-api-management")
            .azureApiManagementSource(AzureApiManagementSourceArgs.builder()
                .msiResourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ManagedIdentity/userAssignedIdentities/contoso-identity")
                .resourceId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso")
                .build())
            .importSpecification("ondemand")
            .resourceGroupName("contoso-resources")
            .serviceName("contoso")
            .targetEnvironmentId("/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiCenter/services/contoso/workspaces/default/environments/azure-api-management")
            .targetLifecycleStage("design")
            .workspaceName("default")
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const apiSource = new azure_native.apicenter.ApiSource("apiSource", {
    apiSourceName: "contoso-api-management",
    azureApiManagementSource: {
        msiResourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ManagedIdentity/userAssignedIdentities/contoso-identity",
        resourceId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso",
    },
    importSpecification: azure_native.apicenter.ImportSpecificationOptions.OnDemand,
    resourceGroupName: "contoso-resources",
    serviceName: "contoso",
    targetEnvironmentId: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiCenter/services/contoso/workspaces/default/environments/azure-api-management",
    targetLifecycleStage: azure_native.apicenter.LifecycleStage.Design,
    workspaceName: "default",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

api_source = azure_native.apicenter.ApiSource("apiSource",
    api_source_name="contoso-api-management",
    azure_api_management_source={
        "msi_resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ManagedIdentity/userAssignedIdentities/contoso-identity",
        "resource_id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso",
    },
    import_specification=azure_native.apicenter.ImportSpecificationOptions.ON_DEMAND,
    resource_group_name="contoso-resources",
    service_name="contoso",
    target_environment_id="/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiCenter/services/contoso/workspaces/default/environments/azure-api-management",
    target_lifecycle_stage=azure_native.apicenter.LifecycleStage.DESIGN,
    workspace_name="default")
Copy
resources:
  apiSource:
    type: azure-native:apicenter:ApiSource
    properties:
      apiSourceName: contoso-api-management
      azureApiManagementSource:
        msiResourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ManagedIdentity/userAssignedIdentities/contoso-identity
        resourceId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiManagement/service/contoso
      importSpecification: ondemand
      resourceGroupName: contoso-resources
      serviceName: contoso
      targetEnvironmentId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/contoso-resources/providers/Microsoft.ApiCenter/services/contoso/workspaces/default/environments/azure-api-management
      targetLifecycleStage: design
      workspaceName: default
Copy

Create ApiSource Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new ApiSource(name: string, args: ApiSourceArgs, opts?: CustomResourceOptions);
@overload
def ApiSource(resource_name: str,
              args: ApiSourceArgs,
              opts: Optional[ResourceOptions] = None)

@overload
def ApiSource(resource_name: str,
              opts: Optional[ResourceOptions] = None,
              resource_group_name: Optional[str] = None,
              service_name: Optional[str] = None,
              workspace_name: Optional[str] = None,
              api_source_name: Optional[str] = None,
              azure_api_management_source: Optional[AzureApiManagementSourceArgs] = None,
              import_specification: Optional[Union[str, ImportSpecificationOptions]] = None,
              target_environment_id: Optional[str] = None,
              target_lifecycle_stage: Optional[Union[str, LifecycleStage]] = None)
func NewApiSource(ctx *Context, name string, args ApiSourceArgs, opts ...ResourceOption) (*ApiSource, error)
public ApiSource(string name, ApiSourceArgs args, CustomResourceOptions? opts = null)
public ApiSource(String name, ApiSourceArgs args)
public ApiSource(String name, ApiSourceArgs args, CustomResourceOptions options)
type: azure-native:apicenter:ApiSource
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ApiSourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ApiSourceArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ApiSourceArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ApiSourceArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ApiSourceArgs
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 apiSourceResource = new AzureNative.Apicenter.ApiSource("apiSourceResource", new()
{
    ResourceGroupName = "string",
    ServiceName = "string",
    WorkspaceName = "string",
    ApiSourceName = "string",
    AzureApiManagementSource = 
    {
        { "resourceId", "string" },
        { "msiResourceId", "string" },
    },
    ImportSpecification = "string",
    TargetEnvironmentId = "string",
    TargetLifecycleStage = "string",
});
Copy
example, err := apicenter.NewApiSource(ctx, "apiSourceResource", &apicenter.ApiSourceArgs{
	ResourceGroupName: "string",
	ServiceName:       "string",
	WorkspaceName:     "string",
	ApiSourceName:     "string",
	AzureApiManagementSource: map[string]interface{}{
		"resourceId":    "string",
		"msiResourceId": "string",
	},
	ImportSpecification:  "string",
	TargetEnvironmentId:  "string",
	TargetLifecycleStage: "string",
})
Copy
var apiSourceResource = new ApiSource("apiSourceResource", ApiSourceArgs.builder()
    .resourceGroupName("string")
    .serviceName("string")
    .workspaceName("string")
    .apiSourceName("string")
    .azureApiManagementSource(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .importSpecification("string")
    .targetEnvironmentId("string")
    .targetLifecycleStage("string")
    .build());
Copy
api_source_resource = azure_native.apicenter.ApiSource("apiSourceResource",
    resource_group_name=string,
    service_name=string,
    workspace_name=string,
    api_source_name=string,
    azure_api_management_source={
        resourceId: string,
        msiResourceId: string,
    },
    import_specification=string,
    target_environment_id=string,
    target_lifecycle_stage=string)
Copy
const apiSourceResource = new azure_native.apicenter.ApiSource("apiSourceResource", {
    resourceGroupName: "string",
    serviceName: "string",
    workspaceName: "string",
    apiSourceName: "string",
    azureApiManagementSource: {
        resourceId: "string",
        msiResourceId: "string",
    },
    importSpecification: "string",
    targetEnvironmentId: "string",
    targetLifecycleStage: "string",
});
Copy
type: azure-native:apicenter:ApiSource
properties:
    apiSourceName: string
    azureApiManagementSource:
        msiResourceId: string
        resourceId: string
    importSpecification: string
    resourceGroupName: string
    serviceName: string
    targetEnvironmentId: string
    targetLifecycleStage: string
    workspaceName: string
Copy

ApiSource 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 ApiSource resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of Azure API Center service.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the workspace.
ApiSourceName Changes to this property will trigger replacement. string
The name of the API.
AzureApiManagementSource Pulumi.AzureNative.ApiCenter.Inputs.AzureApiManagementSource
API source configuration for Azure API Management.
ImportSpecification string | Pulumi.AzureNative.ApiCenter.ImportSpecificationOptions
Indicates if the specification should be imported along with metadata.
TargetEnvironmentId string
The target environment resource ID.
TargetLifecycleStage string | Pulumi.AzureNative.ApiCenter.LifecycleStage
The target lifecycle stage.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
ServiceName
This property is required.
Changes to this property will trigger replacement.
string
The name of Azure API Center service.
WorkspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the workspace.
ApiSourceName Changes to this property will trigger replacement. string
The name of the API.
AzureApiManagementSource AzureApiManagementSourceArgs
API source configuration for Azure API Management.
ImportSpecification string | ImportSpecificationOptions
Indicates if the specification should be imported along with metadata.
TargetEnvironmentId string
The target environment resource ID.
TargetLifecycleStage string | LifecycleStage
The target lifecycle stage.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of Azure API Center service.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the workspace.
apiSourceName Changes to this property will trigger replacement. String
The name of the API.
azureApiManagementSource AzureApiManagementSource
API source configuration for Azure API Management.
importSpecification String | ImportSpecificationOptions
Indicates if the specification should be imported along with metadata.
targetEnvironmentId String
The target environment resource ID.
targetLifecycleStage String | LifecycleStage
The target lifecycle stage.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
serviceName
This property is required.
Changes to this property will trigger replacement.
string
The name of Azure API Center service.
workspaceName
This property is required.
Changes to this property will trigger replacement.
string
The name of the workspace.
apiSourceName Changes to this property will trigger replacement. string
The name of the API.
azureApiManagementSource AzureApiManagementSource
API source configuration for Azure API Management.
importSpecification string | ImportSpecificationOptions
Indicates if the specification should be imported along with metadata.
targetEnvironmentId string
The target environment resource ID.
targetLifecycleStage string | LifecycleStage
The target lifecycle stage.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
service_name
This property is required.
Changes to this property will trigger replacement.
str
The name of Azure API Center service.
workspace_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the workspace.
api_source_name Changes to this property will trigger replacement. str
The name of the API.
azure_api_management_source AzureApiManagementSourceArgs
API source configuration for Azure API Management.
import_specification str | ImportSpecificationOptions
Indicates if the specification should be imported along with metadata.
target_environment_id str
The target environment resource ID.
target_lifecycle_stage str | LifecycleStage
The target lifecycle stage.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
serviceName
This property is required.
Changes to this property will trigger replacement.
String
The name of Azure API Center service.
workspaceName
This property is required.
Changes to this property will trigger replacement.
String
The name of the workspace.
apiSourceName Changes to this property will trigger replacement. String
The name of the API.
azureApiManagementSource Property Map
API source configuration for Azure API Management.
importSpecification String | "never" | "ondemand" | "always"
Indicates if the specification should be imported along with metadata.
targetEnvironmentId String
The target environment resource ID.
targetLifecycleStage String | "design" | "development" | "testing" | "preview" | "production" | "deprecated" | "retired"
The target lifecycle stage.

Outputs

All input properties are implicitly available as output properties. Additionally, the ApiSource resource produces the following output properties:

Id string
The provider-assigned unique ID for this managed resource.
LinkState Pulumi.AzureNative.ApiCenter.Outputs.LinkStateResponse
The state of the API source link
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.
LinkState LinkStateResponse
The state of the API source link
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.
linkState LinkStateResponse
The state of the API source link
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.
linkState LinkStateResponse
The state of the API source link
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.
link_state LinkStateResponse
The state of the API source link
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.
linkState Property Map
The state of the API source link
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

AzureApiManagementSource
, AzureApiManagementSourceArgs

ResourceId This property is required. string
API Management service resource ID.
MsiResourceId string
The resource ID of the managed identity that has access to the API Management instance.
ResourceId This property is required. string
API Management service resource ID.
MsiResourceId string
The resource ID of the managed identity that has access to the API Management instance.
resourceId This property is required. String
API Management service resource ID.
msiResourceId String
The resource ID of the managed identity that has access to the API Management instance.
resourceId This property is required. string
API Management service resource ID.
msiResourceId string
The resource ID of the managed identity that has access to the API Management instance.
resource_id This property is required. str
API Management service resource ID.
msi_resource_id str
The resource ID of the managed identity that has access to the API Management instance.
resourceId This property is required. String
API Management service resource ID.
msiResourceId String
The resource ID of the managed identity that has access to the API Management instance.

AzureApiManagementSourceResponse
, AzureApiManagementSourceResponseArgs

ResourceId This property is required. string
API Management service resource ID.
MsiResourceId string
The resource ID of the managed identity that has access to the API Management instance.
ResourceId This property is required. string
API Management service resource ID.
MsiResourceId string
The resource ID of the managed identity that has access to the API Management instance.
resourceId This property is required. String
API Management service resource ID.
msiResourceId String
The resource ID of the managed identity that has access to the API Management instance.
resourceId This property is required. string
API Management service resource ID.
msiResourceId string
The resource ID of the managed identity that has access to the API Management instance.
resource_id This property is required. str
API Management service resource ID.
msi_resource_id str
The resource ID of the managed identity that has access to the API Management instance.
resourceId This property is required. String
API Management service resource ID.
msiResourceId String
The resource ID of the managed identity that has access to the API Management instance.

ImportSpecificationOptions
, ImportSpecificationOptionsArgs

Never
neverIndicates that the specification should be never be imported.
OnDemand
ondemandIndicates that the specification should be imported only by request.
Always
alwaysIndicates that the specification should always be imported along with metadata.
ImportSpecificationOptionsNever
neverIndicates that the specification should be never be imported.
ImportSpecificationOptionsOnDemand
ondemandIndicates that the specification should be imported only by request.
ImportSpecificationOptionsAlways
alwaysIndicates that the specification should always be imported along with metadata.
Never
neverIndicates that the specification should be never be imported.
OnDemand
ondemandIndicates that the specification should be imported only by request.
Always
alwaysIndicates that the specification should always be imported along with metadata.
Never
neverIndicates that the specification should be never be imported.
OnDemand
ondemandIndicates that the specification should be imported only by request.
Always
alwaysIndicates that the specification should always be imported along with metadata.
NEVER
neverIndicates that the specification should be never be imported.
ON_DEMAND
ondemandIndicates that the specification should be imported only by request.
ALWAYS
alwaysIndicates that the specification should always be imported along with metadata.
"never"
neverIndicates that the specification should be never be imported.
"ondemand"
ondemandIndicates that the specification should be imported only by request.
"always"
alwaysIndicates that the specification should always be imported along with metadata.

LifecycleStage
, LifecycleStageArgs

Design
designdesign stage
Development
developmentdevelopment stage
Testing
testingtesting stage
Preview
previewIn preview
Production
productionIn production
Deprecated
deprecateddeprecated stage
Retired
retiredRetired stage
LifecycleStageDesign
designdesign stage
LifecycleStageDevelopment
developmentdevelopment stage
LifecycleStageTesting
testingtesting stage
LifecycleStagePreview
previewIn preview
LifecycleStageProduction
productionIn production
LifecycleStageDeprecated
deprecateddeprecated stage
LifecycleStageRetired
retiredRetired stage
Design
designdesign stage
Development
developmentdevelopment stage
Testing
testingtesting stage
Preview
previewIn preview
Production
productionIn production
Deprecated
deprecateddeprecated stage
Retired
retiredRetired stage
Design
designdesign stage
Development
developmentdevelopment stage
Testing
testingtesting stage
Preview
previewIn preview
Production
productionIn production
Deprecated
deprecateddeprecated stage
Retired
retiredRetired stage
DESIGN
designdesign stage
DEVELOPMENT
developmentdevelopment stage
TESTING
testingtesting stage
PREVIEW
previewIn preview
PRODUCTION
productionIn production
DEPRECATED
deprecateddeprecated stage
RETIRED
retiredRetired stage
"design"
designdesign stage
"development"
developmentdevelopment stage
"testing"
testingtesting stage
"preview"
previewIn preview
"production"
productionIn production
"deprecated"
deprecateddeprecated stage
"retired"
retiredRetired stage

LinkStateResponse
, LinkStateResponseArgs

LastUpdatedOn This property is required. string
The timestamp of the last update of the link state.
Message string
The state message.
State string
The state of the link.
LastUpdatedOn This property is required. string
The timestamp of the last update of the link state.
Message string
The state message.
State string
The state of the link.
lastUpdatedOn This property is required. String
The timestamp of the last update of the link state.
message String
The state message.
state String
The state of the link.
lastUpdatedOn This property is required. string
The timestamp of the last update of the link state.
message string
The state message.
state string
The state of the link.
last_updated_on This property is required. str
The timestamp of the last update of the link state.
message str
The state message.
state str
The state of the link.
lastUpdatedOn This property is required. String
The timestamp of the last update of the link state.
message String
The state message.
state String
The state of the link.

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:ApiSource contoso-api-management /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ApiCenter/services/{serviceName}/workspaces/{workspaceName}/apiSources/{apiSourceName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi