published on Thursday, Aug 13, 2026 by Pulumi
published on Thursday, Aug 13, 2026 by Pulumi
Represents a SourceControl in Azure Security Insights.
Uses Azure REST API version 2025-09-01. In version 2.x of the Azure Native provider, it used API version 2023-05-01-preview.
Other available API versions: 2025-06-01, 2025-07-01-preview, 2025-10-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native securityinsights [ApiVersion]. See the version guide for details.
Example Usage
Creates or updates 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[]
{
AzureNative.SecurityInsights.ContentType.AnalyticsRule,
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",
Url = "https://github.com/user/repo",
},
RepositoryAccess = new AzureNative.SecurityInsights.Inputs.RepositoryAccessArgs
{
ClientId = "54b3c2c0-1f48-4a1c-af9f-6399c3240b73",
Code = "939fd7c6caf754f4f41f",
Kind = AzureNative.SecurityInsights.RepositoryAccessKind.OAuth,
State = "state",
},
ResourceGroupName = "myRg",
SourceControlId = "789e0c1f-4a3d-43ad-809c-e713b677b04a",
WorkspaceName = "myWorkspace",
});
});
package main
import (
securityinsights "github.com/pulumi/pulumi-azure-native-sdk/securityinsights/v3"
"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(securityinsights.ContentTypeAnalyticsRule),
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"),
Url: pulumi.String("https://github.com/user/repo"),
},
RepositoryAccess: &securityinsights.RepositoryAccessArgs{
ClientId: pulumi.String("54b3c2c0-1f48-4a1c-af9f-6399c3240b73"),
Code: pulumi.String("939fd7c6caf754f4f41f"),
Kind: pulumi.String(securityinsights.RepositoryAccessKindOAuth),
State: pulumi.String("state"),
},
ResourceGroupName: pulumi.String("myRg"),
SourceControlId: pulumi.String("789e0c1f-4a3d-43ad-809c-e713b677b04a"),
WorkspaceName: pulumi.String("myWorkspace"),
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_securityinsights_sourcecontrol" "sourceControl" {
content_types = ["AnalyticsRule", "Workbook"]
description = "This is a source control"
display_name = "My Source Control"
repo_type = "Github"
repository = {
branch = "master"
display_url = "https://github.com/user/repo"
url = "https://github.com/user/repo"
}
repository_access = {
client_id = "54b3c2c0-1f48-4a1c-af9f-6399c3240b73"
code = "939fd7c6caf754f4f41f"
kind = "OAuth"
state = "state"
}
resource_group_name = "myRg"
source_control_id = "789e0c1f-4a3d-43ad-809c-e713b677b04a"
workspace_name = "myWorkspace"
}
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 com.pulumi.azurenative.securityinsights.inputs.RepositoryAccessArgs;
import java.util.ArrayList;
import java.util.Arrays;
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(
"AnalyticsRule",
"Workbook")
.description("This is a source control")
.displayName("My Source Control")
.repoType("Github")
.repository(RepositoryArgs.builder()
.branch("master")
.displayUrl("https://github.com/user/repo")
.url("https://github.com/user/repo")
.build())
.repositoryAccess(RepositoryAccessArgs.builder()
.clientId("54b3c2c0-1f48-4a1c-af9f-6399c3240b73")
.code("939fd7c6caf754f4f41f")
.kind("OAuth")
.state("state")
.build())
.resourceGroupName("myRg")
.sourceControlId("789e0c1f-4a3d-43ad-809c-e713b677b04a")
.workspaceName("myWorkspace")
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const sourceControl = new azure_native.securityinsights.SourceControl("sourceControl", {
contentTypes: [
azure_native.securityinsights.ContentType.AnalyticsRule,
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",
url: "https://github.com/user/repo",
},
repositoryAccess: {
clientId: "54b3c2c0-1f48-4a1c-af9f-6399c3240b73",
code: "939fd7c6caf754f4f41f",
kind: azure_native.securityinsights.RepositoryAccessKind.OAuth,
state: "state",
},
resourceGroupName: "myRg",
sourceControlId: "789e0c1f-4a3d-43ad-809c-e713b677b04a",
workspaceName: "myWorkspace",
});
import pulumi
import pulumi_azure_native as azure_native
source_control = azure_native.securityinsights.SourceControl("sourceControl",
content_types=[
azure_native.securityinsights.ContentType.ANALYTICS_RULE,
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",
"url": "https://github.com/user/repo",
},
repository_access={
"client_id": "54b3c2c0-1f48-4a1c-af9f-6399c3240b73",
"code": "939fd7c6caf754f4f41f",
"kind": azure_native.securityinsights.RepositoryAccessKind.O_AUTH,
"state": "state",
},
resource_group_name="myRg",
source_control_id="789e0c1f-4a3d-43ad-809c-e713b677b04a",
workspace_name="myWorkspace")
resources:
sourceControl:
type: azure-native:securityinsights:SourceControl
properties:
contentTypes:
- AnalyticsRule
- Workbook
description: This is a source control
displayName: My Source Control
repoType: Github
repository:
branch: master
displayUrl: https://github.com/user/repo
url: https://github.com/user/repo
repositoryAccess:
clientId: 54b3c2c0-1f48-4a1c-af9f-6399c3240b73
code: 939fd7c6caf754f4f41f
kind: OAuth
state: state
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,
repository_access: Optional[RepositoryAccessArgs] = None,
repository_resource_info: Optional[RepositoryResourceInfoArgs] = None,
service_principal: Optional[ServicePrincipalArgs] = None,
source_control_id: Optional[str] = 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.
resource "azure-native_securityinsights_source_control" "name" {
# resource properties
}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 =
{
"string",
},
DisplayName = "string",
RepoType = "string",
Repository = new AzureNative.SecurityInsights.Inputs.RepositoryArgs
{
Branch = "string",
Url = "string",
DisplayUrl = "string",
},
ResourceGroupName = "string",
WorkspaceName = "string",
Description = "string",
RepositoryAccess = new AzureNative.SecurityInsights.Inputs.RepositoryAccessArgs
{
Kind = "string",
ClientId = "string",
Code = "string",
InstallationId = "string",
State = "string",
Token = "string",
},
RepositoryResourceInfo = new AzureNative.SecurityInsights.Inputs.RepositoryResourceInfoArgs
{
Webhook = new AzureNative.SecurityInsights.Inputs.WebhookArgs
{
RotateWebhookSecret = false,
},
},
ServicePrincipal = new AzureNative.SecurityInsights.Inputs.ServicePrincipalArgs
{
CredentialsExpireOn = "string",
},
SourceControlId = "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"),
Url: pulumi.String("string"),
DisplayUrl: pulumi.String("string"),
},
ResourceGroupName: pulumi.String("string"),
WorkspaceName: pulumi.String("string"),
Description: pulumi.String("string"),
RepositoryAccess: &securityinsights.RepositoryAccessArgs{
Kind: pulumi.String("string"),
ClientId: pulumi.String("string"),
Code: pulumi.String("string"),
InstallationId: pulumi.String("string"),
State: pulumi.String("string"),
Token: pulumi.String("string"),
},
RepositoryResourceInfo: &securityinsights.RepositoryResourceInfoArgs{
Webhook: &securityinsights.WebhookArgs{
RotateWebhookSecret: pulumi.Bool(false),
},
},
ServicePrincipal: &securityinsights.ServicePrincipalArgs{
CredentialsExpireOn: pulumi.String("string"),
},
SourceControlId: pulumi.String("string"),
})
resource "azure-native_securityinsights_source_control" "azure-nativeSourceControlResource" {
lifecycle {
create_before_destroy = true
}
content_types = ["string"]
display_name = "string"
repo_type = "string"
repository = {
branch = "string"
url = "string"
display_url = "string"
}
resource_group_name = "string"
workspace_name = "string"
description = "string"
repository_access = {
kind = "string"
client_id = "string"
code = "string"
installation_id = "string"
state = "string"
token = "string"
}
repository_resource_info = {
webhook = {
rotate_webhook_secret = false
}
}
service_principal = {
credentials_expire_on = "string"
}
source_control_id = "string"
}
var azure_nativeSourceControlResource = new com.pulumi.azurenative.securityinsights.SourceControl("azure-nativeSourceControlResource", com.pulumi.azurenative.securityinsights.SourceControlArgs.builder()
.contentTypes("string")
.displayName("string")
.repoType("string")
.repository(RepositoryArgs.builder()
.branch("string")
.url("string")
.displayUrl("string")
.build())
.resourceGroupName("string")
.workspaceName("string")
.description("string")
.repositoryAccess(RepositoryAccessArgs.builder()
.kind("string")
.clientId("string")
.code("string")
.installationId("string")
.state("string")
.token("string")
.build())
.repositoryResourceInfo(RepositoryResourceInfoArgs.builder()
.webhook(com.pulumi.azurenative.securityinsights.inputs.WebhookArgs.builder()
.rotateWebhookSecret(false)
.build())
.build())
.servicePrincipal(com.pulumi.azurenative.securityinsights.inputs.ServicePrincipalArgs.builder()
.credentialsExpireOn("string")
.build())
.sourceControlId("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",
"url": "string",
"display_url": "string",
},
resource_group_name="string",
workspace_name="string",
description="string",
repository_access={
"kind": "string",
"client_id": "string",
"code": "string",
"installation_id": "string",
"state": "string",
"token": "string",
},
repository_resource_info={
"webhook": {
"rotate_webhook_secret": False,
},
},
service_principal={
"credentials_expire_on": "string",
},
source_control_id="string")
const azure_nativeSourceControlResource = new azure_native.securityinsights.SourceControl("azure-nativeSourceControlResource", {
contentTypes: ["string"],
displayName: "string",
repoType: "string",
repository: {
branch: "string",
url: "string",
displayUrl: "string",
},
resourceGroupName: "string",
workspaceName: "string",
description: "string",
repositoryAccess: {
kind: "string",
clientId: "string",
code: "string",
installationId: "string",
state: "string",
token: "string",
},
repositoryResourceInfo: {
webhook: {
rotateWebhookSecret: false,
},
},
servicePrincipal: {
credentialsExpireOn: "string",
},
sourceControlId: "string",
});
type: azure-native:securityinsights:SourceControl
properties:
contentTypes:
- string
description: string
displayName: string
repoType: string
repository:
branch: string
displayUrl: string
url: string
repositoryAccess:
clientId: string
code: string
installationId: string
kind: string
state: string
token: string
repositoryResourceInfo:
webhook:
rotateWebhookSecret: false
resourceGroupName: string
servicePrincipal:
credentialsExpireOn: string
sourceControlId: 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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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 monitor workspace.
- Description string
- A description of the source control
- Repository
Access Pulumi.Azure Native. Security Insights. Inputs. Repository Access - Repository access credentials. This is write-only object and it never returns back to a user.
- Repository
Resource Pulumi.Info Azure Native. Security Insights. Inputs. Repository Resource Info - Information regarding the resources created in user's repository.
- Service
Principal Pulumi.Azure Native. Security Insights. Inputs. Service Principal - Service principal metadata.
- Source
Control stringId - Source control Id
- 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 monitor workspace.
- Description string
- A description of the source control
- Repository
Access RepositoryAccess Args - Repository access credentials. This is write-only object and it never returns back to a user.
- Repository
Resource RepositoryInfo Resource Info Args - Information regarding the resources created in user's repository.
- Service
Principal ServicePrincipal Args - Service principal metadata.
- Source
Control stringId - Source control Id
- content_
types list(string | "AnalyticsRule" | "Automation Rule" | "Hunting Query" | "Parser" | "Playbook" | "Workbook") - Array of source control content types.
- display_
name string - The display name of the source control
- repo_
type string | "Github" | "AzureDev Ops" - The repository type of the source control
- repository object
- Repository metadata.
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- workspace_
name string - The name of the monitor workspace.
- description string
- A description of the source control
- repository_
access object - Repository access credentials. This is write-only object and it never returns back to a user.
- repository_
resource_ objectinfo - Information regarding the resources created in user's repository.
- service_
principal object - Service principal metadata.
- source_
control_ stringid - Source control Id
- 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 monitor workspace.
- description String
- A description of the source control
- repository
Access RepositoryAccess - Repository access credentials. This is write-only object and it never returns back to a user.
- repository
Resource RepositoryInfo Resource Info - Information regarding the resources created in user's repository.
- service
Principal ServicePrincipal - Service principal metadata.
- source
Control StringId - Source control Id
- 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 monitor workspace.
- description string
- A description of the source control
- repository
Access RepositoryAccess - Repository access credentials. This is write-only object and it never returns back to a user.
- repository
Resource RepositoryInfo Resource Info - Information regarding the resources created in user's repository.
- service
Principal ServicePrincipal - Service principal metadata.
- source
Control stringId - Source control Id
- 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 monitor workspace.
- description str
- A description of the source control
- repository_
access RepositoryAccess Args - Repository access credentials. This is write-only object and it never returns back to a user.
- repository_
resource_ Repositoryinfo Resource Info Args - Information regarding the resources created in user's repository.
- service_
principal ServicePrincipal Args - Service principal metadata.
- source_
control_ strid - Source control Id
- content
Types List<String | "AnalyticsRule" | "Automation Rule" | "Hunting Query" | "Parser" | "Playbook" | "Workbook"> - Array of source control content types.
- display
Name String - The display name of the source control
- repo
Type String | "Github" | "AzureDev Ops" - 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 monitor workspace.
- description String
- A description of the source control
- repository
Access Property Map - Repository access credentials. This is write-only object and it never returns back to a user.
- repository
Resource Property MapInfo - Information regarding the resources created in user's repository.
- service
Principal Property Map - Service principal metadata.
- source
Control StringId - Source control Id
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceControl resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Deployment Pulumi.Info Azure Native. Security Insights. Outputs. Deployment Info Response - Information regarding the latest deployment for the source control.
- Name string
- The name of the resource
- Pull
Request Pulumi.Azure Native. Security Insights. Outputs. Pull Request Response - Information regarding the pull request of the source control.
- 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"
- Version string
- The version number associated with the source control
- Workload
Identity Pulumi.Federation Azure Native. Security Insights. Outputs. Workload Identity Federation Response - Workload Identity metadata.
- Etag string
- Etag of the azure resource
- Azure
Api stringVersion - The Azure API version of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Last
Deployment DeploymentInfo Info Response - Information regarding the latest deployment for the source control.
- Name string
- The name of the resource
- Pull
Request PullRequest Response - Information regarding the pull request of the source control.
- 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"
- Version string
- The version number associated with the source control
- Workload
Identity WorkloadFederation Identity Federation Response - Workload Identity metadata.
- Etag string
- Etag of the azure resource
- azure_
api_ stringversion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- last_
deployment_ objectinfo - Information regarding the latest deployment for the source control.
- name string
- The name of the resource
- pull_
request object - Information regarding the pull request of the source control.
- system_
data object - 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"
- version string
- The version number associated with the source control
- workload_
identity_ objectfederation - Workload Identity metadata.
- etag string
- Etag of the azure resource
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Deployment DeploymentInfo Info Response - Information regarding the latest deployment for the source control.
- name String
- The name of the resource
- pull
Request PullRequest Response - Information regarding the pull request of the source control.
- 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"
- version String
- The version number associated with the source control
- workload
Identity WorkloadFederation Identity Federation Response - Workload Identity metadata.
- etag String
- Etag of the azure resource
- azure
Api stringVersion - The Azure API version of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- last
Deployment DeploymentInfo Info Response - Information regarding the latest deployment for the source control.
- name string
- The name of the resource
- pull
Request PullRequest Response - Information regarding the pull request of the source control.
- 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"
- version string
- The version number associated with the source control
- workload
Identity WorkloadFederation Identity Federation Response - Workload Identity metadata.
- etag string
- Etag of the azure resource
- azure_
api_ strversion - The Azure API version of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- last_
deployment_ Deploymentinfo Info Response - Information regarding the latest deployment for the source control.
- name str
- The name of the resource
- pull_
request PullRequest Response - Information regarding the pull request of the source control.
- 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"
- version str
- The version number associated with the source control
- workload_
identity_ Workloadfederation Identity Federation Response - Workload Identity metadata.
- etag str
- Etag of the azure resource
- azure
Api StringVersion - The Azure API version of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- last
Deployment Property MapInfo - Information regarding the latest deployment for the source control.
- name String
- The name of the resource
- pull
Request Property Map - Information regarding the pull request of the source control.
- 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"
- version String
- The version number associated with the source control
- workload
Identity Property MapFederation - Workload Identity metadata.
- etag String
- Etag of the azure resource
Supporting Types
AzureDevOpsResourceInfoResponse, AzureDevOpsResourceInfoResponseArgs
Resources created in Azure DevOps repository.- 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 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.
ContentType, ContentTypeArgs
- Analytics
Rule AnalyticsRuleAnalyticsRule- Automation
Rule AutomationRuleAutomationRule- Hunting
Query HuntingQueryHuntingQuery- Parser
ParserParser- Playbook
PlaybookPlaybook- Workbook
WorkbookWorkbook
- Content
Type Analytics Rule AnalyticsRuleAnalyticsRule- Content
Type Automation Rule AutomationRuleAutomationRule- Content
Type Hunting Query HuntingQueryHuntingQuery- Content
Type Parser ParserParser- Content
Type Playbook PlaybookPlaybook- Content
Type Workbook WorkbookWorkbook
- "Analytics
Rule" AnalyticsRuleAnalyticsRule- "Automation
Rule" AutomationRuleAutomationRule- "Hunting
Query" HuntingQueryHuntingQuery- "Parser"
ParserParser- "Playbook"
PlaybookPlaybook- "Workbook"
WorkbookWorkbook
- Analytics
Rule AnalyticsRuleAnalyticsRule- Automation
Rule AutomationRuleAutomationRule- Hunting
Query HuntingQueryHuntingQuery- Parser
ParserParser- Playbook
PlaybookPlaybook- Workbook
WorkbookWorkbook
- Analytics
Rule AnalyticsRuleAnalyticsRule- Automation
Rule AutomationRuleAutomationRule- Hunting
Query HuntingQueryHuntingQuery- Parser
ParserParser- Playbook
PlaybookPlaybook- Workbook
WorkbookWorkbook
- ANALYTICS_RULE
AnalyticsRuleAnalyticsRule- AUTOMATION_RULE
AutomationRuleAutomationRule- HUNTING_QUERY
HuntingQueryHuntingQuery- PARSER
ParserParser- PLAYBOOK
PlaybookPlaybook- WORKBOOK
WorkbookWorkbook
- "Analytics
Rule" AnalyticsRuleAnalyticsRule- "Automation
Rule" AutomationRuleAutomationRule- "Hunting
Query" HuntingQueryHuntingQuery- "Parser"
ParserParser- "Playbook"
PlaybookPlaybook- "Workbook"
WorkbookWorkbook
DeploymentInfoResponse, DeploymentInfoResponseArgs
Information regarding a deployment.- 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 object
- 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
Description about a deployment.- 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 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.
GitHubResourceInfoResponse, GitHubResourceInfoResponseArgs
Resources created in GitHub repository.- 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 stringId - GitHub application installation id.
- app_
installation_ strid - GitHub application installation id.
- app
Installation StringId - GitHub application installation id.
PullRequestResponse, PullRequestResponseArgs
Information regarding pull request for protected branches.RepoType, RepoTypeArgs
- Github
GithubGithub- Azure
Dev Ops AzureDevOpsAzureDevOps
- Repo
Type Github GithubGithub- Repo
Type Azure Dev Ops AzureDevOpsAzureDevOps
- "Github"
GithubGithub- "Azure
Dev Ops" AzureDevOpsAzureDevOps
- Github
GithubGithub- Azure
Dev Ops AzureDevOpsAzureDevOps
- Github
GithubGithub- Azure
Dev Ops AzureDevOpsAzureDevOps
- GITHUB
GithubGithub- AZURE_DEV_OPS
AzureDevOpsAzureDevOps
- "Github"
GithubGithub- "Azure
Dev Ops" AzureDevOpsAzureDevOps
Repository, RepositoryArgs
metadata of a repository.- Branch string
- Branch name of repository.
- Url string
- Url of repository.
- Display
Url string - Display url of repository.
- Branch string
- Branch name of repository.
- Url string
- Url of repository.
- Display
Url string - Display url of repository.
- branch string
- Branch name of repository.
- url string
- Url of repository.
- display_
url string - Display url of repository.
- branch String
- Branch name of repository.
- url String
- Url of repository.
- display
Url String - Display url of repository.
- branch string
- Branch name of repository.
- url string
- Url of repository.
- display
Url string - Display url of repository.
- branch str
- Branch name of repository.
- url str
- Url of repository.
- display_
url str - Display url of repository.
- branch String
- Branch name of repository.
- url String
- Url of repository.
- display
Url String - Display url of repository.
RepositoryAccess, RepositoryAccessArgs
Credentials to access repository.- Kind
string | Pulumi.
Azure Native. Security Insights. Repository Access Kind - The kind of repository access credentials
- Client
Id string - OAuth ClientId. Required when
kindisOAuth - Code string
- OAuth Code. Required when
kindisOAuth - Installation
Id string - Application installation ID. Required when
kindisApp. Supported byGitHubonly. - State string
- OAuth State. Required when
kindisOAuth - Token string
- Personal Access Token. Required when
kindisPAT
- Kind
string | Repository
Access Kind - The kind of repository access credentials
- Client
Id string - OAuth ClientId. Required when
kindisOAuth - Code string
- OAuth Code. Required when
kindisOAuth - Installation
Id string - Application installation ID. Required when
kindisApp. Supported byGitHubonly. - State string
- OAuth State. Required when
kindisOAuth - Token string
- Personal Access Token. Required when
kindisPAT
- kind string | "OAuth" | "PAT" | "App"
- The kind of repository access credentials
- client_
id string - OAuth ClientId. Required when
kindisOAuth - code string
- OAuth Code. Required when
kindisOAuth - installation_
id string - Application installation ID. Required when
kindisApp. Supported byGitHubonly. - state string
- OAuth State. Required when
kindisOAuth - token string
- Personal Access Token. Required when
kindisPAT
- kind
String | Repository
Access Kind - The kind of repository access credentials
- client
Id String - OAuth ClientId. Required when
kindisOAuth - code String
- OAuth Code. Required when
kindisOAuth - installation
Id String - Application installation ID. Required when
kindisApp. Supported byGitHubonly. - state String
- OAuth State. Required when
kindisOAuth - token String
- Personal Access Token. Required when
kindisPAT
- kind
string | Repository
Access Kind - The kind of repository access credentials
- client
Id string - OAuth ClientId. Required when
kindisOAuth - code string
- OAuth Code. Required when
kindisOAuth - installation
Id string - Application installation ID. Required when
kindisApp. Supported byGitHubonly. - state string
- OAuth State. Required when
kindisOAuth - token string
- Personal Access Token. Required when
kindisPAT
- kind
str | Repository
Access Kind - The kind of repository access credentials
- client_
id str - OAuth ClientId. Required when
kindisOAuth - code str
- OAuth Code. Required when
kindisOAuth - installation_
id str - Application installation ID. Required when
kindisApp. Supported byGitHubonly. - state str
- OAuth State. Required when
kindisOAuth - token str
- Personal Access Token. Required when
kindisPAT
- kind String | "OAuth" | "PAT" | "App"
- The kind of repository access credentials
- client
Id String - OAuth ClientId. Required when
kindisOAuth - code String
- OAuth Code. Required when
kindisOAuth - installation
Id String - Application installation ID. Required when
kindisApp. Supported byGitHubonly. - state String
- OAuth State. Required when
kindisOAuth - token String
- Personal Access Token. Required when
kindisPAT
RepositoryAccessKind, RepositoryAccessKindArgs
- OAuth
OAuthOAuth- PAT
PATPAT- App
AppApp
- Repository
Access Kind OAuth OAuthOAuth- Repository
Access Kind PAT PATPAT- Repository
Access Kind App AppApp
- "OAuth"
OAuthOAuth- "PAT"
PATPAT- "App"
AppApp
- OAuth
OAuthOAuth- PAT
PATPAT- App
AppApp
- OAuth
OAuthOAuth- PAT
PATPAT- App
AppApp
- O_AUTH
OAuthOAuth- PAT
PATPAT- APP
AppApp
- "OAuth"
OAuthOAuth- "PAT"
PATPAT- "App"
AppApp
RepositoryResourceInfo, RepositoryResourceInfoArgs
Resources created in user's repository for the source-control.- Webhook
Pulumi.
Azure Native. Security Insights. Inputs. Webhook - The webhook object created for the source-control.
- webhook Property Map
- The webhook object created for the source-control.
RepositoryResourceInfoResponse, RepositoryResourceInfoResponseArgs
Resources created in user's repository for the source-control.- 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_ objectops_ resource_ info - Resources created in Azure DevOps for this source-control.
- git_
hub_ objectresource_ info - Resources created in GitHub for this source-control.
- webhook object
- 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
metadata of a repository.- Branch string
- Branch name of repository.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Url string
- Url of repository.
- Display
Url string - Display url of repository.
- Branch string
- Branch name of repository.
- Deployment
Logs stringUrl - Url to access repository action logs.
- Url string
- Url of repository.
- Display
Url string - Display url of repository.
- branch string
- Branch name of repository.
- deployment_
logs_ stringurl - Url to access repository action logs.
- url string
- Url of repository.
- display_
url string - Display url of repository.
- branch String
- Branch name of repository.
- deployment
Logs StringUrl - Url to access repository action logs.
- url String
- Url of repository.
- display
Url String - Display url of repository.
- branch string
- Branch name of repository.
- deployment
Logs stringUrl - Url to access repository action logs.
- url string
- Url of repository.
- display
Url string - Display url of repository.
- branch str
- Branch name of repository.
- deployment_
logs_ strurl - Url to access repository action logs.
- url str
- Url of repository.
- display_
url str - Display url of repository.
- branch String
- Branch name of repository.
- deployment
Logs StringUrl - Url to access repository action logs.
- url String
- Url of repository.
- display
Url String - Display url of repository.
ServicePrincipal, ServicePrincipalArgs
Service principal metadata.- Credentials
Expire stringOn - Expiration time of service principal credentials.
- Credentials
Expire stringOn - Expiration time of service principal credentials.
- credentials_
expire_ stringon - Expiration time of service principal credentials.
- credentials
Expire StringOn - Expiration time of service principal credentials.
- credentials
Expire stringOn - Expiration time of service principal credentials.
- credentials_
expire_ stron - Expiration time of service principal credentials.
- credentials
Expire StringOn - Expiration time of service principal credentials.
ServicePrincipalResponse, ServicePrincipalResponseArgs
Service principal metadata.- App
Id string - App id of service principal.
- Id string
- Id of service principal.
- Tenant
Id string - Tenant id of service principal.
- Credentials
Expire stringOn - Expiration time of service principal credentials.
- App
Id string - App id of service principal.
- Id string
- Id of service principal.
- Tenant
Id string - Tenant id of service principal.
- Credentials
Expire stringOn - Expiration time of service principal credentials.
- app_
id string - App id of service principal.
- id string
- Id of service principal.
- tenant_
id string - Tenant id of service principal.
- credentials_
expire_ stringon - Expiration time of service principal credentials.
- app
Id String - App id of service principal.
- id String
- Id of service principal.
- tenant
Id String - Tenant id of service principal.
- credentials
Expire StringOn - Expiration time of service principal credentials.
- app
Id string - App id of service principal.
- id string
- Id of service principal.
- tenant
Id string - Tenant id of service principal.
- credentials
Expire stringOn - Expiration time of service principal credentials.
- app_
id str - App id of service principal.
- id str
- Id of service principal.
- tenant_
id str - Tenant id of service principal.
- credentials_
expire_ stron - Expiration time of service principal credentials.
- app
Id String - App id of service principal.
- id String
- Id of service principal.
- tenant
Id String - Tenant id of service principal.
- credentials
Expire StringOn - Expiration time of service principal credentials.
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of 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 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.
Webhook, WebhookArgs
Detail about the webhook object.- Rotate
Webhook boolSecret - A flag to instruct the backend service to rotate webhook secret.
- Rotate
Webhook boolSecret - A flag to instruct the backend service to rotate webhook secret.
- rotate_
webhook_ boolsecret - A flag to instruct the backend service to rotate webhook secret.
- rotate
Webhook BooleanSecret - A flag to instruct the backend service to rotate webhook secret.
- rotate
Webhook booleanSecret - A flag to instruct the backend service to rotate webhook secret.
- rotate_
webhook_ boolsecret - A flag to instruct the backend service to rotate webhook secret.
- rotate
Webhook BooleanSecret - A flag to instruct the backend service to rotate webhook secret.
WebhookResponse, WebhookResponseArgs
Detail about the webhook object.- 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 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 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_ 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.
WorkloadIdentityFederationResponse, WorkloadIdentityFederationResponseArgs
Workload Identity Federation metadata.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
published on Thursday, Aug 13, 2026 by Pulumi