azure-native.securityinsights.SourceControl
Explore with Pulumi AI
Represents a SourceControl in Azure Security Insights. Azure REST API version: 2023-05-01-preview. Prior API version in Azure Native 1.x: 2021-03-01-preview.
Other available API versions: 2021-03-01-preview.
Example Usage
Creates a source control.
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var sourceControl = new AzureNative.SecurityInsights.SourceControl("sourceControl", new()
{
ContentTypes = new[]
{
"AnalyticRules",
AzureNative.SecurityInsights.ContentType.Workbook,
},
Description = "This is a source control",
DisplayName = "My Source Control",
RepoType = AzureNative.SecurityInsights.RepoType.Github,
Repository = new AzureNative.SecurityInsights.Inputs.RepositoryArgs
{
Branch = "master",
DisplayUrl = "https://github.com/user/repo",
PathMapping = new[]
{
new AzureNative.SecurityInsights.Inputs.ContentPathMapArgs
{
ContentType = "AnalyticRules",
Path = "path/to/rules",
},
new AzureNative.SecurityInsights.Inputs.ContentPathMapArgs
{
ContentType = AzureNative.SecurityInsights.ContentType.Workbook,
Path = "path/to/workbooks",
},
},
Url = "https://github.com/user/repo",
},
ResourceGroupName = "myRg",
SourceControlId = "789e0c1f-4a3d-43ad-809c-e713b677b04a",
WorkspaceName = "myWorkspace",
});
});
package main
import (
securityinsights "github.com/pulumi/pulumi-azure-native-sdk/securityinsights/v2"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := securityinsights.NewSourceControl(ctx, "sourceControl", &securityinsights.SourceControlArgs{
ContentTypes: pulumi.StringArray{
pulumi.String("AnalyticRules"),
pulumi.String(securityinsights.ContentTypeWorkbook),
},
Description: pulumi.String("This is a source control"),
DisplayName: pulumi.String("My Source Control"),
RepoType: pulumi.String(securityinsights.RepoTypeGithub),
Repository: &securityinsights.RepositoryArgs{
Branch: pulumi.String("master"),
DisplayUrl: pulumi.String("https://github.com/user/repo"),
PathMapping: securityinsights.ContentPathMapArray{
&securityinsights.ContentPathMapArgs{
ContentType: pulumi.String("AnalyticRules"),
Path: pulumi.String("path/to/rules"),
},
&securityinsights.ContentPathMapArgs{
ContentType: pulumi.String(securityinsights.ContentTypeWorkbook),
Path: pulumi.String("path/to/workbooks"),
},
},
Url: pulumi.String("https://github.com/user/repo"),
},
ResourceGroupName: pulumi.String("myRg"),
SourceControlId: pulumi.String("789e0c1f-4a3d-43ad-809c-e713b677b04a"),
WorkspaceName: pulumi.String("myWorkspace"),
})
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.securityinsights.SourceControl;
import com.pulumi.azurenative.securityinsights.SourceControlArgs;
import com.pulumi.azurenative.securityinsights.inputs.RepositoryArgs;
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 sourceControl = new SourceControl("sourceControl", SourceControlArgs.builder()
.contentTypes(
"AnalyticRules",
"Workbook")
.description("This is a source control")
.displayName("My Source Control")
.repoType("Github")
.repository(RepositoryArgs.builder()
.branch("master")
.displayUrl("https://github.com/user/repo")
.pathMapping(
ContentPathMapArgs.builder()
.contentType("AnalyticRules")
.path("path/to/rules")
.build(),
ContentPathMapArgs.builder()
.contentType("Workbook")
.path("path/to/workbooks")
.build())
.url("https://github.com/user/repo")
.build())
.resourceGroupName("myRg")
.sourceControlId("789e0c1f-4a3d-43ad-809c-e713b677b04a")
.workspaceName("myWorkspace")
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
source_control = azure_native.securityinsights.SourceControl("sourceControl",
content_types=[
"AnalyticRules",
azure_native.securityinsights.ContentType.WORKBOOK,
],
description="This is a source control",
display_name="My Source Control",
repo_type=azure_native.securityinsights.RepoType.GITHUB,
repository={
"branch": "master",
"display_url": "https://github.com/user/repo",
"path_mapping": [
{
"content_type": "AnalyticRules",
"path": "path/to/rules",
},
{
"content_type": azure_native.securityinsights.ContentType.WORKBOOK,
"path": "path/to/workbooks",
},
],
"url": "https://github.com/user/repo",
},
resource_group_name="myRg",
source_control_id="789e0c1f-4a3d-43ad-809c-e713b677b04a",
workspace_name="myWorkspace")
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const sourceControl = new azure_native.securityinsights.SourceControl("sourceControl", {
contentTypes: [
"AnalyticRules",
azure_native.securityinsights.ContentType.Workbook,
],
description: "This is a source control",
displayName: "My Source Control",
repoType: azure_native.securityinsights.RepoType.Github,
repository: {
branch: "master",
displayUrl: "https://github.com/user/repo",
pathMapping: [
{
contentType: "AnalyticRules",
path: "path/to/rules",
},
{
contentType: azure_native.securityinsights.ContentType.Workbook,
path: "path/to/workbooks",
},
],
url: "https://github.com/user/repo",
},
resourceGroupName: "myRg",
sourceControlId: "789e0c1f-4a3d-43ad-809c-e713b677b04a",
workspaceName: "myWorkspace",
});
resources:
sourceControl:
type: azure-native:securityinsights:SourceControl
properties:
contentTypes:
- AnalyticRules
- Workbook
description: This is a source control
displayName: My Source Control
repoType: Github
repository:
branch: master
displayUrl: https://github.com/user/repo
pathMapping:
- contentType: AnalyticRules
path: path/to/rules
- contentType: Workbook
path: path/to/workbooks
url: https://github.com/user/repo
resourceGroupName: myRg
sourceControlId: 789e0c1f-4a3d-43ad-809c-e713b677b04a
workspaceName: myWorkspace
Create SourceControl Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceControl(name: string, args: SourceControlArgs, opts?: CustomResourceOptions);
@overload
def SourceControl(resource_name: str,
args: SourceControlArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceControl(resource_name: str,
opts: Optional[ResourceOptions] = None,
content_types: Optional[Sequence[Union[str, ContentType]]] = None,
display_name: Optional[str] = None,
repo_type: Optional[Union[str, RepoType]] = None,
repository: Optional[RepositoryArgs] = None,
resource_group_name: Optional[str] = None,
workspace_name: Optional[str] = None,
description: Optional[str] = None,
id: Optional[str] = None,
last_deployment_info: Optional[DeploymentInfoArgs] = None,
repository_resource_info: Optional[RepositoryResourceInfoArgs] = None,
source_control_id: Optional[str] = None,
version: Optional[Union[str, Version]] = None)
func NewSourceControl(ctx *Context, name string, args SourceControlArgs, opts ...ResourceOption) (*SourceControl, error)
public SourceControl(string name, SourceControlArgs args, CustomResourceOptions? opts = null)
public SourceControl(String name, SourceControlArgs args)
public SourceControl(String name, SourceControlArgs args, CustomResourceOptions options)
type: azure-native:securityinsights:SourceControl
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 SourceControlArgs
- 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 SourceControlArgs
- 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 SourceControlArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceControlArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceControlArgs
- 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 azure_nativeSourceControlResource = new AzureNative.SecurityInsights.SourceControl("azure-nativeSourceControlResource", new()
{
ContentTypes = new[]
{
"string",
},
DisplayName = "string",
RepoType = "string",
Repository = new AzureNative.SecurityInsights.Inputs.RepositoryArgs
{
Branch = "string",
DeploymentLogsUrl = "string",
DisplayUrl = "string",
PathMapping = new[]
{
new AzureNative.SecurityInsights.Inputs.ContentPathMapArgs
{
ContentType = "string",
Path = "string",
},
},
Url = "string",
},
ResourceGroupName = "string",
WorkspaceName = "string",
Description = "string",
Id = "string",
LastDeploymentInfo = new AzureNative.SecurityInsights.Inputs.DeploymentInfoArgs
{
Deployment = new AzureNative.SecurityInsights.Inputs.DeploymentArgs
{
DeploymentId = "string",
DeploymentLogsUrl = "string",
DeploymentResult = "string",
DeploymentState = "string",
DeploymentTime = "string",
},
DeploymentFetchStatus = "string",
Message = "string",
},
RepositoryResourceInfo = new AzureNative.SecurityInsights.Inputs.RepositoryResourceInfoArgs
{
AzureDevOpsResourceInfo = new AzureNative.SecurityInsights.Inputs.AzureDevOpsResourceInfoArgs
{
PipelineId = "string",
ServiceConnectionId = "string",
},
GitHubResourceInfo = new AzureNative.SecurityInsights.Inputs.GitHubResourceInfoArgs
{
AppInstallationId = "string",
},
Webhook = new AzureNative.SecurityInsights.Inputs.WebhookArgs
{
RotateWebhookSecret = false,
WebhookId = "string",
WebhookSecretUpdateTime = "string",
WebhookUrl = "string",
},
},
SourceControlId = "string",
Version = "string",
});
example, err := securityinsights.NewSourceControl(ctx, "azure-nativeSourceControlResource", &securityinsights.SourceControlArgs{
ContentTypes: pulumi.StringArray{
pulumi.String("string"),
},
DisplayName: pulumi.String("string"),
RepoType: pulumi.String("string"),
Repository: &securityinsights.RepositoryArgs{
Branch: pulumi.String("string"),
DeploymentLogsUrl: pulumi.String("string"),
DisplayUrl: pulumi.String("string"),
PathMapping: securityinsights.ContentPathMapArray{
&securityinsights.ContentPathMapArgs{
ContentType: pulumi.String("string"),
Path: pulumi.String("string"),
},
},
Url: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
WorkspaceName: pulumi.String("string"),
Description: pulumi.String("string"),
Id: pulumi.String("string"),
LastDeploymentInfo: &securityinsights.DeploymentInfoArgs{
Deployment: &securityinsights.DeploymentArgs{
DeploymentId: pulumi.String("string"),
DeploymentLogsUrl: pulumi.String("string"),
DeploymentResult: pulumi.String("string"),
DeploymentState: pulumi.String("string"),
DeploymentTime: pulumi.String("string"),
},
DeploymentFetchStatus: pulumi.String("string"),
Message: pulumi.String("string"),
},
RepositoryResourceInfo: &securityinsights.RepositoryResourceInfoArgs{
AzureDevOpsResourceInfo: &securityinsights.AzureDevOpsResourceInfoArgs{
PipelineId: pulumi.String("string"),
ServiceConnectionId: pulumi.String("string"),
},
GitHubResourceInfo: &securityinsights.GitHubResourceInfoArgs{
AppInstallationId: pulumi.String("string"),
},
Webhook: &securityinsights.WebhookArgs{
RotateWebhookSecret: pulumi.Bool(false),
WebhookId: pulumi.String("string"),
WebhookSecretUpdateTime: pulumi.String("string"),
WebhookUrl: pulumi.String("string"),
},
},
SourceControlId: pulumi.String("string"),
Version: pulumi.String("string"),
})
var azure_nativeSourceControlResource = new SourceControl("azure-nativeSourceControlResource", SourceControlArgs.builder()
.contentTypes("string")
.displayName("string")
.repoType("string")
.repository(RepositoryArgs.builder()
.branch("string")
.deploymentLogsUrl("string")
.displayUrl("string")
.pathMapping(ContentPathMapArgs.builder()
.contentType("string")
.path("string")
.build())
.url("string")
.build())
.resourceGroupName("string")
.workspaceName("string")
.description("string")
.id("string")
.lastDeploymentInfo(DeploymentInfoArgs.builder()
.deployment(DeploymentArgs.builder()
.deploymentId("string")
.deploymentLogsUrl("string")
.deploymentResult("string")
.deploymentState("string")
.deploymentTime("string")
.build())
.deploymentFetchStatus("string")
.message("string")
.build())
.repositoryResourceInfo(RepositoryResourceInfoArgs.builder()
.azureDevOpsResourceInfo(AzureDevOpsResourceInfoArgs.builder()
.pipelineId("string")
.serviceConnectionId("string")
.build())
.gitHubResourceInfo(GitHubResourceInfoArgs.builder()
.appInstallationId("string")
.build())
.webhook(WebhookArgs.builder()
.rotateWebhookSecret(false)
.webhookId("string")
.webhookSecretUpdateTime("string")
.webhookUrl("string")
.build())
.build())
.sourceControlId("string")
.version("string")
.build());
azure_native_source_control_resource = azure_native.securityinsights.SourceControl("azure-nativeSourceControlResource",
content_types=["string"],
display_name="string",
repo_type="string",
repository={
"branch": "string",
"deploymentLogsUrl": "string",
"displayUrl": "string",
"pathMapping": [{
"contentType": "string",
"path": "string",
}],
"url": "string",
},
resource_group_name="string",
workspace_name="string",
description="string",
id="string",
last_deployment_info={
"deployment": {
"deploymentId": "string",
"deploymentLogsUrl": "string",
"deploymentResult": "string",
"deploymentState": "string",
"deploymentTime": "string",
},
"deploymentFetchStatus": "string",
"message": "string",
},
repository_resource_info={
"azureDevOpsResourceInfo": {
"pipelineId": "string",
"serviceConnectionId": "string",
},
"gitHubResourceInfo": {
"appInstallationId": "string",
},
"webhook": {
"rotateWebhookSecret": False,
"webhookId": "string",
"webhookSecretUpdateTime": "string",
"webhookUrl": "string",
},
},
source_control_id="string",
version="string")
const azure_nativeSourceControlResource = new azure_native.securityinsights.SourceControl("azure-nativeSourceControlResource", {
contentTypes: ["string"],
displayName: "string",
repoType: "string",
repository: {
branch: "string",
deploymentLogsUrl: "string",
displayUrl: "string",
pathMapping: [{
contentType: "string",
path: "string",
}],
url: "string",
},
resourceGroupName: "string",
workspaceName: "string",
description: "string",
id: "string",
lastDeploymentInfo: {
deployment: {
deploymentId: "string",
deploymentLogsUrl: "string",
deploymentResult: "string",
deploymentState: "string",
deploymentTime: "string",
},
deploymentFetchStatus: "string",
message: "string",
},
repositoryResourceInfo: {
azureDevOpsResourceInfo: {
pipelineId: "string",
serviceConnectionId: "string",
},
gitHubResourceInfo: {
appInstallationId: "string",
},
webhook: {
rotateWebhookSecret: false,
webhookId: "string",
webhookSecretUpdateTime: "string",
webhookUrl: "string",
},
},
sourceControlId: "string",
version: "string",
});
type: azure-native:securityinsights:SourceControl
properties:
contentTypes:
- string
description: string
displayName: string
id: string
lastDeploymentInfo:
deployment:
deploymentId: string
deploymentLogsUrl: string
deploymentResult: string
deploymentState: string
deploymentTime: string
deploymentFetchStatus: string
message: string
repoType: string
repository:
branch: string
deploymentLogsUrl: string
displayUrl: string
pathMapping:
- contentType: string
path: string
url: string
repositoryResourceInfo:
azureDevOpsResourceInfo:
pipelineId: string
serviceConnectionId: string
gitHubResourceInfo:
appInstallationId: string
webhook:
rotateWebhookSecret: false
webhookId: string
webhookSecretUpdateTime: string
webhookUrl: string
resourceGroupName: string
sourceControlId: string
version: string
workspaceName: string
SourceControl 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 SourceControl resource accepts the following input properties:
- Content
Types List<Union<string, Pulumi.Azure Native. Security Insights. Content Type>> - Array of source control content types.
- Display
Name string - The display name of the source control
- Repo
Type string | Pulumi.Azure Native. Security Insights. Repo Type - The repository type of the source control
- Repository
Pulumi.
Azure Native. Security Insights. Inputs. Repository - Repository metadata.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - The name of the workspace.
- Description string
- A description of the source control
- Id string
- The id (a Guid) of the source control
- Last
Deployment Pulumi.Info Azure Native. Security Insights. Inputs. Deployment Info - Information regarding the latest deployment for the source control.
- Repository
Resource Pulumi.Info Azure Native. Security Insights. Inputs. Repository Resource Info - Information regarding the resources created in user's repository.
- Source
Control stringId - Source control Id
- Version
string | Pulumi.
Azure Native. Security Insights. Version - The version number associated with the source control
- Content
Types []string - Array of source control content types.
- Display
Name string - The display name of the source control
- Repo
Type string | RepoType - The repository type of the source control
- Repository
Repository
Args - Repository metadata.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Workspace
Name string - The name of the workspace.
- Description string
- A description of the source control
- Id string
- The id (a Guid) of the source control
- Last
Deployment DeploymentInfo Info Args - Information regarding the latest deployment for the source control.
- Repository
Resource RepositoryInfo Resource Info Args - Information regarding the resources created in user's repository.
- Source
Control stringId - Source control Id
- Version string | Version
- The version number associated with the source control
- content
Types List<Either<String,ContentType>> - Array of source control content types.
- display
Name String - The display name of the source control
- repo
Type String | RepoType - The repository type of the source control
- repository Repository
- Repository metadata.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - The name of the workspace.
- description String
- A description of the source control
- id String
- The id (a Guid) of the source control
- last
Deployment DeploymentInfo Info - Information regarding the latest deployment for the source control.
- repository
Resource RepositoryInfo Resource Info - Information regarding the resources created in user's repository.
- source
Control StringId - Source control Id
- version String | Version
- The version number associated with the source control
- content
Types (string | ContentType)[] - Array of source control content types.
- display
Name string - The display name of the source control
- repo
Type string | RepoType - The repository type of the source control
- repository Repository
- Repository metadata.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- workspace
Name string - The name of the workspace.
- description string
- A description of the source control
- id string
- The id (a Guid) of the source control
- last
Deployment DeploymentInfo Info - Information regarding the latest deployment for the source control.
- repository
Resource RepositoryInfo Resource Info - Information regarding the resources created in user's repository.
- source
Control stringId - Source control Id
- version string | Version
- The version number associated with the source control
- content_
types Sequence[Union[str, ContentType]] - Array of source control content types.
- display_
name str - The display name of the source control
- repo_
type str | RepoType - The repository type of the source control
- repository
Repository
Args - Repository metadata.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- workspace_
name str - The name of the workspace.
- description str
- A description of the source control
- id str
- The id (a Guid) of the source control
- last_
deployment_ Deploymentinfo Info Args - Information regarding the latest deployment for the source control.
- repository_
resource_ Repositoryinfo Resource Info Args - Information regarding the resources created in user's repository.
- source_
control_ strid - Source control Id
- version str | Version
- The version number associated with the source control
- content
Types List<String | "AnalyticRule" | "Workbook"> - Array of source control content types.
- display
Name String - The display name of the source control
- repo
Type String | "Github" | "DevOps" - The repository type of the source control
- repository Property Map
- Repository metadata.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- workspace
Name String - The name of the workspace.
- description String
- A description of the source control
- id String
- The id (a Guid) of the source control
- last
Deployment Property MapInfo - Information regarding the latest deployment for the source control.
- repository
Resource Property MapInfo - Information regarding the resources created in user's repository.
- source
Control StringId - Source control Id
- version String | "V1" | "V2"
- The version number associated with the source control
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceControl 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. Security Insights. 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"
- Etag string
- Etag of the azure resource
- 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"
- Etag string
- Etag of the azure resource
- 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"
- etag String
- Etag of the azure resource
- 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"
- etag string
- Etag of the azure resource
- 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"
- etag str
- Etag of the azure resource
- 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"
- etag String
- Etag of the azure resource
Supporting Types
AzureDevOpsResourceInfo, AzureDevOpsResourceInfoArgs
- Pipeline
Id string - Id of the pipeline created for the source-control.
- Service
Connection stringId - Id of the service-connection created for the source-control.
- Pipeline
Id string - Id of the pipeline created for the source-control.
- Service
Connection stringId - Id of the service-connection created for the source-control.
- pipeline
Id String - Id of the pipeline created for the source-control.
- service
Connection StringId - Id of the service-connection created for the source-control.
- pipeline
Id string - Id of the pipeline created for the source-control.
- service
Connection stringId - Id of the service-connection created for the source-control.
- pipeline_
id str - Id of the pipeline created for the source-control.
- service_
connection_ strid - Id of the service-connection created for the source-control.
- pipeline
Id String - Id of the pipeline created for the source-control.
- service
Connection StringId - Id of the service-connection created for the source-control.
AzureDevOpsResourceInfoResponse, AzureDevOpsResourceInfoResponseArgs
- Pipeline
Id string - Id of the pipeline created for the source-control.
- Service
Connection stringId - Id of the service-connection created for the source-control.
- Pipeline
Id string - Id of the pipeline created for the source-control.
- Service
Connection stringId - Id of the service-connection created for the source-control.
- pipeline
Id String - Id of the pipeline created for the source-control.
- service
Connection StringId - Id of the service-connection created for the source-control.
- pipeline
Id string - Id of the pipeline created for the source-control.
- service
Connection stringId - Id of the service-connection created for the source-control.
- pipeline_
id str - Id of the pipeline created for the source-control.
- service_
connection_ strid - Id of the service-connection created for the source-control.
- pipeline
Id String - Id of the pipeline created for the source-control.
- service
Connection StringId - Id of the service-connection created for the source-control.
ContentPathMap, ContentPathMapArgs
- Content
Type string | Pulumi.Azure Native. Security Insights. Content Type - Content type.
- Path string
- The path to the content.
- Content
Type string | ContentType - Content type.
- Path string
- The path to the content.
- content
Type String | ContentType - Content type.
- path String
- The path to the content.
- content
Type string | ContentType - Content type.
- path string
- The path to the content.
- content_
type str | ContentType - Content type.
- path str
- The path to the content.
- content
Type String | "AnalyticRule" | "Workbook" - Content type.
- path String
- The path to the content.
ContentPathMapResponse, ContentPathMapResponseArgs
- Content
Type string - Content type.
- Path string
- The path to the content.
- Content
Type string - Content type.
- Path string
- The path to the content.
- content
Type String - Content type.
- path String
- The path to the content.
- content
Type string - Content type.
- path string
- The path to the content.
- content_
type str - Content type.
- path str
- The path to the content.
- content
Type String - Content type.
- path String
- The path to the content.
ContentType, ContentTypeArgs
- Analytic
Rule - AnalyticRule
- Workbook
- Workbook
- Content
Type Analytic Rule - AnalyticRule
- Content
Type Workbook - Workbook
- Analytic
Rule - AnalyticRule
- Workbook
- Workbook
- Analytic
Rule - AnalyticRule
- Workbook
- Workbook
- ANALYTIC_RULE
- AnalyticRule
- WORKBOOK
- Workbook
- "Analytic
Rule" - AnalyticRule
- "Workbook"
- Workbook
Deployment, DeploymentArgs
- Deployment
Id string - Deployment identifier.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Deployment
Result string | Pulumi.Azure Native. Security Insights. Deployment Result - The outcome of the deployment.
- Deployment
State string | Pulumi.Azure Native. Security Insights. Deployment State - Current status of the deployment.
- Deployment
Time string - The time when the deployment finished.
- Deployment
Id string - Deployment identifier.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Deployment
Result string | DeploymentResult - The outcome of the deployment.
- Deployment
State string | DeploymentState - Current status of the deployment.
- Deployment
Time string - The time when the deployment finished.
- deployment
Id String - Deployment identifier.
- deployment
Logs StringUrl - Url to access repository action logs.
- deployment
Result String | DeploymentResult - The outcome of the deployment.
- deployment
State String | DeploymentState - Current status of the deployment.
- deployment
Time String - The time when the deployment finished.
- deployment
Id string - Deployment identifier.
- deployment
Logs stringUrl - Url to access repository action logs.
- deployment
Result string | DeploymentResult - The outcome of the deployment.
- deployment
State string | DeploymentState - Current status of the deployment.
- deployment
Time string - The time when the deployment finished.
- deployment_
id str - Deployment identifier.
- deployment_
logs_ strurl - Url to access repository action logs.
- deployment_
result str | DeploymentResult - The outcome of the deployment.
- deployment_
state str | DeploymentState - Current status of the deployment.
- deployment_
time str - The time when the deployment finished.
- deployment
Id String - Deployment identifier.
- deployment
Logs StringUrl - Url to access repository action logs.
- deployment
Result String | "Success" | "Canceled" | "Failed" - The outcome of the deployment.
- deployment
State String | "In_Progress" | "Completed" | "Queued" | "Canceling" - Current status of the deployment.
- deployment
Time String - The time when the deployment finished.
DeploymentFetchStatus, DeploymentFetchStatusArgs
- Success
- Success
- Unauthorized
- Unauthorized
- Not
Found - NotFound
- Deployment
Fetch Status Success - Success
- Deployment
Fetch Status Unauthorized - Unauthorized
- Deployment
Fetch Status Not Found - NotFound
- Success
- Success
- Unauthorized
- Unauthorized
- Not
Found - NotFound
- Success
- Success
- Unauthorized
- Unauthorized
- Not
Found - NotFound
- SUCCESS
- Success
- UNAUTHORIZED
- Unauthorized
- NOT_FOUND
- NotFound
- "Success"
- Success
- "Unauthorized"
- Unauthorized
- "Not
Found" - NotFound
DeploymentInfo, DeploymentInfoArgs
- Deployment
Pulumi.
Azure Native. Security Insights. Inputs. Deployment - Deployment information.
- Deployment
Fetch string | Pulumi.Status Azure Native. Security Insights. Deployment Fetch Status - Status while fetching the last deployment.
- Message string
- Additional details about the deployment that can be shown to the user.
- Deployment Deployment
- Deployment information.
- Deployment
Fetch string | DeploymentStatus Fetch Status - Status while fetching the last deployment.
- Message string
- Additional details about the deployment that can be shown to the user.
- deployment Deployment
- Deployment information.
- deployment
Fetch String | DeploymentStatus Fetch Status - Status while fetching the last deployment.
- message String
- Additional details about the deployment that can be shown to the user.
- deployment Deployment
- Deployment information.
- deployment
Fetch string | DeploymentStatus Fetch Status - Status while fetching the last deployment.
- message string
- Additional details about the deployment that can be shown to the user.
- deployment Deployment
- Deployment information.
- deployment_
fetch_ str | Deploymentstatus Fetch Status - Status while fetching the last deployment.
- message str
- Additional details about the deployment that can be shown to the user.
- deployment Property Map
- Deployment information.
- deployment
Fetch String | "Success" | "Unauthorized" | "NotStatus Found" - Status while fetching the last deployment.
- message String
- Additional details about the deployment that can be shown to the user.
DeploymentInfoResponse, DeploymentInfoResponseArgs
- Deployment
Pulumi.
Azure Native. Security Insights. Inputs. Deployment Response - Deployment information.
- Deployment
Fetch stringStatus - Status while fetching the last deployment.
- Message string
- Additional details about the deployment that can be shown to the user.
- Deployment
Deployment
Response - Deployment information.
- Deployment
Fetch stringStatus - Status while fetching the last deployment.
- Message string
- Additional details about the deployment that can be shown to the user.
- deployment
Deployment
Response - Deployment information.
- deployment
Fetch StringStatus - Status while fetching the last deployment.
- message String
- Additional details about the deployment that can be shown to the user.
- deployment
Deployment
Response - Deployment information.
- deployment
Fetch stringStatus - Status while fetching the last deployment.
- message string
- Additional details about the deployment that can be shown to the user.
- deployment
Deployment
Response - Deployment information.
- deployment_
fetch_ strstatus - Status while fetching the last deployment.
- message str
- Additional details about the deployment that can be shown to the user.
- deployment Property Map
- Deployment information.
- deployment
Fetch StringStatus - Status while fetching the last deployment.
- message String
- Additional details about the deployment that can be shown to the user.
DeploymentResponse, DeploymentResponseArgs
- Deployment
Id string - Deployment identifier.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Deployment
Result string - The outcome of the deployment.
- Deployment
State string - Current status of the deployment.
- Deployment
Time string - The time when the deployment finished.
- Deployment
Id string - Deployment identifier.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Deployment
Result string - The outcome of the deployment.
- Deployment
State string - Current status of the deployment.
- Deployment
Time string - The time when the deployment finished.
- deployment
Id String - Deployment identifier.
- deployment
Logs StringUrl - Url to access repository action logs.
- deployment
Result String - The outcome of the deployment.
- deployment
State String - Current status of the deployment.
- deployment
Time String - The time when the deployment finished.
- deployment
Id string - Deployment identifier.
- deployment
Logs stringUrl - Url to access repository action logs.
- deployment
Result string - The outcome of the deployment.
- deployment
State string - Current status of the deployment.
- deployment
Time string - The time when the deployment finished.
- deployment_
id str - Deployment identifier.
- deployment_
logs_ strurl - Url to access repository action logs.
- deployment_
result str - The outcome of the deployment.
- deployment_
state str - Current status of the deployment.
- deployment_
time str - The time when the deployment finished.
- deployment
Id String - Deployment identifier.
- deployment
Logs StringUrl - Url to access repository action logs.
- deployment
Result String - The outcome of the deployment.
- deployment
State String - Current status of the deployment.
- deployment
Time String - The time when the deployment finished.
DeploymentResult, DeploymentResultArgs
- Success
- Success
- Canceled
- Canceled
- Failed
- Failed
- Deployment
Result Success - Success
- Deployment
Result Canceled - Canceled
- Deployment
Result Failed - Failed
- Success
- Success
- Canceled
- Canceled
- Failed
- Failed
- Success
- Success
- Canceled
- Canceled
- Failed
- Failed
- SUCCESS
- Success
- CANCELED
- Canceled
- FAILED
- Failed
- "Success"
- Success
- "Canceled"
- Canceled
- "Failed"
- Failed
DeploymentState, DeploymentStateArgs
- In_Progress
- In_Progress
- Completed
- Completed
- Queued
- Queued
- Canceling
- Canceling
- Deployment
State_In_Progress - In_Progress
- Deployment
State Completed - Completed
- Deployment
State Queued - Queued
- Deployment
State Canceling - Canceling
- In_Progress
- In_Progress
- Completed
- Completed
- Queued
- Queued
- Canceling
- Canceling
- In_Progress
- In_Progress
- Completed
- Completed
- Queued
- Queued
- Canceling
- Canceling
- IN_PROGRESS
- In_Progress
- COMPLETED
- Completed
- QUEUED
- Queued
- CANCELING
- Canceling
- "In_Progress"
- In_Progress
- "Completed"
- Completed
- "Queued"
- Queued
- "Canceling"
- Canceling
GitHubResourceInfo, GitHubResourceInfoArgs
- App
Installation stringId - GitHub application installation id.
- App
Installation stringId - GitHub application installation id.
- app
Installation StringId - GitHub application installation id.
- app
Installation stringId - GitHub application installation id.
- app_
installation_ strid - GitHub application installation id.
- app
Installation StringId - GitHub application installation id.
GitHubResourceInfoResponse, GitHubResourceInfoResponseArgs
- App
Installation stringId - GitHub application installation id.
- App
Installation stringId - GitHub application installation id.
- app
Installation StringId - GitHub application installation id.
- app
Installation stringId - GitHub application installation id.
- app_
installation_ strid - GitHub application installation id.
- app
Installation StringId - GitHub application installation id.
RepoType, RepoTypeArgs
- Github
- Github
- Dev
Ops - DevOps
- Repo
Type Github - Github
- Repo
Type Dev Ops - DevOps
- Github
- Github
- Dev
Ops - DevOps
- Github
- Github
- Dev
Ops - DevOps
- GITHUB
- Github
- DEV_OPS
- DevOps
- "Github"
- Github
- "Dev
Ops" - DevOps
Repository, RepositoryArgs
- Branch string
- Branch name of repository.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Display
Url string - Display url of repository.
- Path
Mapping List<Pulumi.Azure Native. Security Insights. Inputs. Content Path Map> - Dictionary of source control content type and path mapping.
- Url string
- Url of repository.
- Branch string
- Branch name of repository.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Display
Url string - Display url of repository.
- Path
Mapping []ContentPath Map - Dictionary of source control content type and path mapping.
- Url string
- Url of repository.
- branch String
- Branch name of repository.
- deployment
Logs StringUrl - Url to access repository action logs.
- display
Url String - Display url of repository.
- path
Mapping List<ContentPath Map> - Dictionary of source control content type and path mapping.
- url String
- Url of repository.
- branch string
- Branch name of repository.
- deployment
Logs stringUrl - Url to access repository action logs.
- display
Url string - Display url of repository.
- path
Mapping ContentPath Map[] - Dictionary of source control content type and path mapping.
- url string
- Url of repository.
- branch str
- Branch name of repository.
- deployment_
logs_ strurl - Url to access repository action logs.
- display_
url str - Display url of repository.
- path_
mapping Sequence[ContentPath Map] - Dictionary of source control content type and path mapping.
- url str
- Url of repository.
- branch String
- Branch name of repository.
- deployment
Logs StringUrl - Url to access repository action logs.
- display
Url String - Display url of repository.
- path
Mapping List<Property Map> - Dictionary of source control content type and path mapping.
- url String
- Url of repository.
RepositoryResourceInfo, RepositoryResourceInfoArgs
- Azure
Dev Pulumi.Ops Resource Info Azure Native. Security Insights. Inputs. Azure Dev Ops Resource Info - Resources created in Azure DevOps for this source-control.
- Git
Hub Pulumi.Resource Info Azure Native. Security Insights. Inputs. Git Hub Resource Info - Resources created in GitHub for this source-control.
- Webhook
Pulumi.
Azure Native. Security Insights. Inputs. Webhook - The webhook object created for the source-control.
- Azure
Dev AzureOps Resource Info Dev Ops Resource Info - Resources created in Azure DevOps for this source-control.
- Git
Hub GitResource Info Hub Resource Info - Resources created in GitHub for this source-control.
- Webhook Webhook
- The webhook object created for the source-control.
- azure
Dev AzureOps Resource Info Dev Ops Resource Info - Resources created in Azure DevOps for this source-control.
- git
Hub GitResource Info Hub Resource Info - Resources created in GitHub for this source-control.
- webhook Webhook
- The webhook object created for the source-control.
- azure
Dev AzureOps Resource Info Dev Ops Resource Info - Resources created in Azure DevOps for this source-control.
- git
Hub GitResource Info Hub Resource Info - Resources created in GitHub for this source-control.
- webhook Webhook
- The webhook object created for the source-control.
- azure_
dev_ Azureops_ resource_ info Dev Ops Resource Info - Resources created in Azure DevOps for this source-control.
- git_
hub_ Gitresource_ info Hub Resource Info - Resources created in GitHub for this source-control.
- webhook Webhook
- The webhook object created for the source-control.
- azure
Dev Property MapOps Resource Info - Resources created in Azure DevOps for this source-control.
- git
Hub Property MapResource Info - Resources created in GitHub for this source-control.
- webhook Property Map
- The webhook object created for the source-control.
RepositoryResourceInfoResponse, RepositoryResourceInfoResponseArgs
- Azure
Dev Pulumi.Ops Resource Info Azure Native. Security Insights. Inputs. Azure Dev Ops Resource Info Response - Resources created in Azure DevOps for this source-control.
- Git
Hub Pulumi.Resource Info Azure Native. Security Insights. Inputs. Git Hub Resource Info Response - Resources created in GitHub for this source-control.
- Webhook
Pulumi.
Azure Native. Security Insights. Inputs. Webhook Response - The webhook object created for the source-control.
- Azure
Dev AzureOps Resource Info Dev Ops Resource Info Response - Resources created in Azure DevOps for this source-control.
- Git
Hub GitResource Info Hub Resource Info Response - Resources created in GitHub for this source-control.
- Webhook
Webhook
Response - The webhook object created for the source-control.
- azure
Dev AzureOps Resource Info Dev Ops Resource Info Response - Resources created in Azure DevOps for this source-control.
- git
Hub GitResource Info Hub Resource Info Response - Resources created in GitHub for this source-control.
- webhook
Webhook
Response - The webhook object created for the source-control.
- azure
Dev AzureOps Resource Info Dev Ops Resource Info Response - Resources created in Azure DevOps for this source-control.
- git
Hub GitResource Info Hub Resource Info Response - Resources created in GitHub for this source-control.
- webhook
Webhook
Response - The webhook object created for the source-control.
- azure_
dev_ Azureops_ resource_ info Dev Ops Resource Info Response - Resources created in Azure DevOps for this source-control.
- git_
hub_ Gitresource_ info Hub Resource Info Response - Resources created in GitHub for this source-control.
- webhook
Webhook
Response - The webhook object created for the source-control.
- azure
Dev Property MapOps Resource Info - Resources created in Azure DevOps for this source-control.
- git
Hub Property MapResource Info - Resources created in GitHub for this source-control.
- webhook Property Map
- The webhook object created for the source-control.
RepositoryResponse, RepositoryResponseArgs
- Branch string
- Branch name of repository.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Display
Url string - Display url of repository.
- Path
Mapping List<Pulumi.Azure Native. Security Insights. Inputs. Content Path Map Response> - Dictionary of source control content type and path mapping.
- Url string
- Url of repository.
- Branch string
- Branch name of repository.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Display
Url string - Display url of repository.
- Path
Mapping []ContentPath Map Response - Dictionary of source control content type and path mapping.
- Url string
- Url of repository.
- branch String
- Branch name of repository.
- deployment
Logs StringUrl - Url to access repository action logs.
- display
Url String - Display url of repository.
- path
Mapping List<ContentPath Map Response> - Dictionary of source control content type and path mapping.
- url String
- Url of repository.
- branch string
- Branch name of repository.
- deployment
Logs stringUrl - Url to access repository action logs.
- display
Url string - Display url of repository.
- path
Mapping ContentPath Map Response[] - Dictionary of source control content type and path mapping.
- url string
- Url of repository.
- branch str
- Branch name of repository.
- deployment_
logs_ strurl - Url to access repository action logs.
- display_
url str - Display url of repository.
- path_
mapping Sequence[ContentPath Map Response] - Dictionary of source control content type and path mapping.
- url str
- Url of repository.
- branch String
- Branch name of repository.
- deployment
Logs StringUrl - Url to access repository action logs.
- display
Url String - Display url of repository.
- path
Mapping List<Property Map> - Dictionary of source control content type and path mapping.
- url String
- Url of repository.
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.
Version, VersionArgs
- V1
- V1
- V2
- V2
- Version
V1 - V1
- Version
V2 - V2
- V1
- V1
- V2
- V2
- V1
- V1
- V2
- V2
- V1
- V1
- V2
- V2
- "V1"
- V1
- "V2"
- V2
Webhook, WebhookArgs
- Rotate
Webhook boolSecret - A flag to instruct the backend service to rotate webhook secret.
- Webhook
Id string - Unique identifier for the webhook.
- Webhook
Secret stringUpdate Time - Time when the webhook secret was updated.
- Webhook
Url string - URL that gets invoked by the webhook.
- Rotate
Webhook boolSecret - A flag to instruct the backend service to rotate webhook secret.
- Webhook
Id string - Unique identifier for the webhook.
- Webhook
Secret stringUpdate Time - Time when the webhook secret was updated.
- Webhook
Url string - URL that gets invoked by the webhook.
- rotate
Webhook BooleanSecret - A flag to instruct the backend service to rotate webhook secret.
- webhook
Id String - Unique identifier for the webhook.
- webhook
Secret StringUpdate Time - Time when the webhook secret was updated.
- webhook
Url String - URL that gets invoked by the webhook.
- rotate
Webhook booleanSecret - A flag to instruct the backend service to rotate webhook secret.
- webhook
Id string - Unique identifier for the webhook.
- webhook
Secret stringUpdate Time - Time when the webhook secret was updated.
- webhook
Url string - URL that gets invoked by the webhook.
- rotate_
webhook_ boolsecret - A flag to instruct the backend service to rotate webhook secret.
- webhook_
id str - Unique identifier for the webhook.
- webhook_
secret_ strupdate_ time - Time when the webhook secret was updated.
- webhook_
url str - URL that gets invoked by the webhook.
- rotate
Webhook BooleanSecret - A flag to instruct the backend service to rotate webhook secret.
- webhook
Id String - Unique identifier for the webhook.
- webhook
Secret StringUpdate Time - Time when the webhook secret was updated.
- webhook
Url String - URL that gets invoked by the webhook.
WebhookResponse, WebhookResponseArgs
- Rotate
Webhook boolSecret - A flag to instruct the backend service to rotate webhook secret.
- Webhook
Id string - Unique identifier for the webhook.
- Webhook
Secret stringUpdate Time - Time when the webhook secret was updated.
- Webhook
Url string - URL that gets invoked by the webhook.
- Rotate
Webhook boolSecret - A flag to instruct the backend service to rotate webhook secret.
- Webhook
Id string - Unique identifier for the webhook.
- Webhook
Secret stringUpdate Time - Time when the webhook secret was updated.
- Webhook
Url string - URL that gets invoked by the webhook.
- rotate
Webhook BooleanSecret - A flag to instruct the backend service to rotate webhook secret.
- webhook
Id String - Unique identifier for the webhook.
- webhook
Secret StringUpdate Time - Time when the webhook secret was updated.
- webhook
Url String - URL that gets invoked by the webhook.
- rotate
Webhook booleanSecret - A flag to instruct the backend service to rotate webhook secret.
- webhook
Id string - Unique identifier for the webhook.
- webhook
Secret stringUpdate Time - Time when the webhook secret was updated.
- webhook
Url string - URL that gets invoked by the webhook.
- rotate_
webhook_ boolsecret - A flag to instruct the backend service to rotate webhook secret.
- webhook_
id str - Unique identifier for the webhook.
- webhook_
secret_ strupdate_ time - Time when the webhook secret was updated.
- webhook_
url str - URL that gets invoked by the webhook.
- rotate
Webhook BooleanSecret - A flag to instruct the backend service to rotate webhook secret.
- webhook
Id String - Unique identifier for the webhook.
- webhook
Secret StringUpdate Time - Time when the webhook secret was updated.
- webhook
Url String - URL that gets invoked by the webhook.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:securityinsights:SourceControl 789e0c1f-4a3d-43ad-809c-e713b677b04a /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/sourcecontrols/{sourceControlId}
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0