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 * 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",
});
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")
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",
        "deployment_logs_url": "string",
        "display_url": "string",
        "path_mapping": [{
            "content_type": "string",
            "path": "string",
        }],
        "url": "string",
    },
    resource_group_name="string",
    workspace_name="string",
    description="string",
    id="string",
    last_deployment_info={
        "deployment": {
            "deployment_id": "string",
            "deployment_logs_url": "string",
            "deployment_result": "string",
            "deployment_state": "string",
            "deployment_time": "string",
        },
        "deployment_fetch_status": "string",
        "message": "string",
    },
    repository_resource_info={
        "azure_dev_ops_resource_info": {
            "pipeline_id": "string",
            "service_connection_id": "string",
        },
        "git_hub_resource_info": {
            "app_installation_id": "string",
        },
        "webhook": {
            "rotate_webhook_secret": False,
            "webhook_id": "string",
            "webhook_secret_update_time": "string",
            "webhook_url": "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
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:
- ContentTypes List<Union<string, Pulumi.Azure Native. Security Insights. Content Type>> 
- Array of source control content types.
- DisplayName string
- The display name of the source control
- RepoType 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.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- Description string
- A description of the source control
- Id string
- The id (a Guid) of the source control
- LastDeployment Pulumi.Info Azure Native. Security Insights. Inputs. Deployment Info 
- Information regarding the latest deployment for the source control.
- RepositoryResource Pulumi.Info Azure Native. Security Insights. Inputs. Repository Resource Info 
- Information regarding the resources created in user's repository.
- SourceControl stringId 
- Source control Id
- Version
string | Pulumi.Azure Native. Security Insights. Version 
- The version number associated with the source control
- ContentTypes []string
- Array of source control content types.
- DisplayName string
- The display name of the source control
- RepoType string | RepoType 
- The repository type of the source control
- Repository
RepositoryArgs 
- Repository metadata.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- Description string
- A description of the source control
- Id string
- The id (a Guid) of the source control
- LastDeployment DeploymentInfo Info Args 
- Information regarding the latest deployment for the source control.
- RepositoryResource RepositoryInfo Resource Info Args 
- Information regarding the resources created in user's repository.
- SourceControl stringId 
- Source control Id
- Version string | Version
- The version number associated with the source control
- contentTypes List<Either<String,ContentType>> 
- Array of source control content types.
- displayName String
- The display name of the source control
- repoType String | RepoType 
- The repository type of the source control
- repository Repository
- Repository metadata.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- The name of the workspace.
- description String
- A description of the source control
- id String
- The id (a Guid) of the source control
- lastDeployment DeploymentInfo Info 
- Information regarding the latest deployment for the source control.
- repositoryResource RepositoryInfo Resource Info 
- Information regarding the resources created in user's repository.
- sourceControl StringId 
- Source control Id
- version String | Version
- The version number associated with the source control
- contentTypes (string | ContentType)[] 
- Array of source control content types.
- displayName string
- The display name of the source control
- repoType string | RepoType 
- The repository type of the source control
- repository Repository
- Repository metadata.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- workspaceName string
- The name of the workspace.
- description string
- A description of the source control
- id string
- The id (a Guid) of the source control
- lastDeployment DeploymentInfo Info 
- Information regarding the latest deployment for the source control.
- repositoryResource RepositoryInfo Resource Info 
- Information regarding the resources created in user's repository.
- sourceControl 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
RepositoryArgs 
- 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
- contentTypes List<String | "AnalyticsRule" | "Workbook"> 
- Array of source control content types.
- displayName String
- The display name of the source control
- repoType String | "Github" | "DevOps" 
- The repository type of the source control
- repository Property Map
- Repository metadata.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- The name of the workspace.
- description String
- A description of the source control
- id String
- The id (a Guid) of the source control
- lastDeployment Property MapInfo 
- Information regarding the latest deployment for the source control.
- repositoryResource Property MapInfo 
- Information regarding the resources created in user's repository.
- sourceControl 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
- SystemData 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
- SystemData 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
- systemData 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
- systemData 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
- systemData Property Map
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Etag of the azure resource
Supporting Types
AzureDevOpsResourceInfo, AzureDevOpsResourceInfoArgs          
- PipelineId string
- Id of the pipeline created for the source-control.
- ServiceConnection stringId 
- Id of the service-connection created for the source-control.
- PipelineId string
- Id of the pipeline created for the source-control.
- ServiceConnection stringId 
- Id of the service-connection created for the source-control.
- pipelineId String
- Id of the pipeline created for the source-control.
- serviceConnection StringId 
- Id of the service-connection created for the source-control.
- pipelineId string
- Id of the pipeline created for the source-control.
- serviceConnection 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.
- pipelineId String
- Id of the pipeline created for the source-control.
- serviceConnection StringId 
- Id of the service-connection created for the source-control.
AzureDevOpsResourceInfoResponse, AzureDevOpsResourceInfoResponseArgs            
- PipelineId string
- Id of the pipeline created for the source-control.
- ServiceConnection stringId 
- Id of the service-connection created for the source-control.
- PipelineId string
- Id of the pipeline created for the source-control.
- ServiceConnection stringId 
- Id of the service-connection created for the source-control.
- pipelineId String
- Id of the pipeline created for the source-control.
- serviceConnection StringId 
- Id of the service-connection created for the source-control.
- pipelineId string
- Id of the pipeline created for the source-control.
- serviceConnection 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.
- pipelineId String
- Id of the pipeline created for the source-control.
- serviceConnection StringId 
- Id of the service-connection created for the source-control.
ContentPathMap, ContentPathMapArgs      
- ContentType string | Pulumi.Azure Native. Security Insights. Content Type 
- Content type.
- Path string
- The path to the content.
- ContentType string | ContentType 
- Content type.
- Path string
- The path to the content.
- contentType String | ContentType 
- Content type.
- path String
- The path to the content.
- contentType string | ContentType 
- Content type.
- path string
- The path to the content.
- content_type str | ContentType 
- Content type.
- path str
- The path to the content.
- contentType String | "AnalyticsRule" | "Workbook" 
- Content type.
- path String
- The path to the content.
ContentPathMapResponse, ContentPathMapResponseArgs        
- ContentType string
- Content type.
- Path string
- The path to the content.
- ContentType string
- Content type.
- Path string
- The path to the content.
- contentType String
- Content type.
- path String
- The path to the content.
- contentType string
- Content type.
- path string
- The path to the content.
- content_type str
- Content type.
- path str
- The path to the content.
- contentType String
- Content type.
- path String
- The path to the content.
ContentType, ContentTypeArgs    
- AnalyticsRule 
- AnalyticsRule
- Workbook
- Workbook
- ContentType Analytics Rule 
- AnalyticsRule
- ContentType Workbook 
- Workbook
- AnalyticsRule 
- AnalyticsRule
- Workbook
- Workbook
- AnalyticsRule 
- AnalyticsRule
- Workbook
- Workbook
- ANALYTICS_RULE
- AnalyticsRule
- WORKBOOK
- Workbook
- "AnalyticsRule" 
- AnalyticsRule
- "Workbook"
- Workbook
Deployment, DeploymentArgs  
- DeploymentId string
- Deployment identifier.
- DeploymentLogs stringUrl 
- Url to access repository action logs.
- DeploymentResult string | Pulumi.Azure Native. Security Insights. Deployment Result 
- The outcome of the deployment.
- DeploymentState string | Pulumi.Azure Native. Security Insights. Deployment State 
- Current status of the deployment.
- DeploymentTime string
- The time when the deployment finished.
- DeploymentId string
- Deployment identifier.
- DeploymentLogs stringUrl 
- Url to access repository action logs.
- DeploymentResult string | DeploymentResult 
- The outcome of the deployment.
- DeploymentState string | DeploymentState 
- Current status of the deployment.
- DeploymentTime string
- The time when the deployment finished.
- deploymentId String
- Deployment identifier.
- deploymentLogs StringUrl 
- Url to access repository action logs.
- deploymentResult String | DeploymentResult 
- The outcome of the deployment.
- deploymentState String | DeploymentState 
- Current status of the deployment.
- deploymentTime String
- The time when the deployment finished.
- deploymentId string
- Deployment identifier.
- deploymentLogs stringUrl 
- Url to access repository action logs.
- deploymentResult string | DeploymentResult 
- The outcome of the deployment.
- deploymentState string | DeploymentState 
- Current status of the deployment.
- deploymentTime 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.
- deploymentId String
- Deployment identifier.
- deploymentLogs StringUrl 
- Url to access repository action logs.
- deploymentResult String | "Success" | "Canceled" | "Failed"
- The outcome of the deployment.
- deploymentState String | "In_Progress" | "Completed" | "Queued" | "Canceling"
- Current status of the deployment.
- deploymentTime String
- The time when the deployment finished.
DeploymentFetchStatus, DeploymentFetchStatusArgs      
- Success
- Success
- Unauthorized
- Unauthorized
- NotFound 
- NotFound
- DeploymentFetch Status Success 
- Success
- DeploymentFetch Status Unauthorized 
- Unauthorized
- DeploymentFetch Status Not Found 
- NotFound
- Success
- Success
- Unauthorized
- Unauthorized
- NotFound 
- NotFound
- Success
- Success
- Unauthorized
- Unauthorized
- NotFound 
- NotFound
- SUCCESS
- Success
- UNAUTHORIZED
- Unauthorized
- NOT_FOUND
- NotFound
- "Success"
- Success
- "Unauthorized"
- Unauthorized
- "NotFound" 
- NotFound
DeploymentInfo, DeploymentInfoArgs    
- Deployment
Pulumi.Azure Native. Security Insights. Inputs. Deployment 
- Deployment information.
- DeploymentFetch 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.
- DeploymentFetch 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.
- deploymentFetch 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.
- deploymentFetch 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.
- deploymentFetch 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.
- DeploymentFetch stringStatus 
- Status while fetching the last deployment.
- Message string
- Additional details about the deployment that can be shown to the user.
- Deployment
DeploymentResponse 
- Deployment information.
- DeploymentFetch stringStatus 
- Status while fetching the last deployment.
- Message string
- Additional details about the deployment that can be shown to the user.
- deployment
DeploymentResponse 
- Deployment information.
- deploymentFetch StringStatus 
- Status while fetching the last deployment.
- message String
- Additional details about the deployment that can be shown to the user.
- deployment
DeploymentResponse 
- Deployment information.
- deploymentFetch stringStatus 
- Status while fetching the last deployment.
- message string
- Additional details about the deployment that can be shown to the user.
- deployment
DeploymentResponse 
- 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.
- deploymentFetch StringStatus 
- Status while fetching the last deployment.
- message String
- Additional details about the deployment that can be shown to the user.
DeploymentResponse, DeploymentResponseArgs    
- DeploymentId string
- Deployment identifier.
- DeploymentLogs stringUrl 
- Url to access repository action logs.
- DeploymentResult string
- The outcome of the deployment.
- DeploymentState string
- Current status of the deployment.
- DeploymentTime string
- The time when the deployment finished.
- DeploymentId string
- Deployment identifier.
- DeploymentLogs stringUrl 
- Url to access repository action logs.
- DeploymentResult string
- The outcome of the deployment.
- DeploymentState string
- Current status of the deployment.
- DeploymentTime string
- The time when the deployment finished.
- deploymentId String
- Deployment identifier.
- deploymentLogs StringUrl 
- Url to access repository action logs.
- deploymentResult String
- The outcome of the deployment.
- deploymentState String
- Current status of the deployment.
- deploymentTime String
- The time when the deployment finished.
- deploymentId string
- Deployment identifier.
- deploymentLogs stringUrl 
- Url to access repository action logs.
- deploymentResult string
- The outcome of the deployment.
- deploymentState string
- Current status of the deployment.
- deploymentTime 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.
- deploymentId String
- Deployment identifier.
- deploymentLogs StringUrl 
- Url to access repository action logs.
- deploymentResult String
- The outcome of the deployment.
- deploymentState String
- Current status of the deployment.
- deploymentTime String
- The time when the deployment finished.
DeploymentResult, DeploymentResultArgs    
- Success
- Success
- Canceled
- Canceled
- Failed
- Failed
- DeploymentResult Success 
- Success
- DeploymentResult Canceled 
- Canceled
- DeploymentResult 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
- DeploymentState_In_Progress 
- In_Progress
- DeploymentState Completed 
- Completed
- DeploymentState Queued 
- Queued
- DeploymentState 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        
- AppInstallation stringId 
- GitHub application installation id.
- AppInstallation stringId 
- GitHub application installation id.
- appInstallation StringId 
- GitHub application installation id.
- appInstallation stringId 
- GitHub application installation id.
- app_installation_ strid 
- GitHub application installation id.
- appInstallation StringId 
- GitHub application installation id.
GitHubResourceInfoResponse, GitHubResourceInfoResponseArgs          
- AppInstallation stringId 
- GitHub application installation id.
- AppInstallation stringId 
- GitHub application installation id.
- appInstallation StringId 
- GitHub application installation id.
- appInstallation stringId 
- GitHub application installation id.
- app_installation_ strid 
- GitHub application installation id.
- appInstallation StringId 
- GitHub application installation id.
RepoType, RepoTypeArgs    
- Github
- Github
- DevOps 
- DevOps
- RepoType Github 
- Github
- RepoType Dev Ops 
- DevOps
- Github
- Github
- DevOps 
- DevOps
- Github
- Github
- DevOps 
- DevOps
- GITHUB
- Github
- DEV_OPS
- DevOps
- "Github"
- Github
- "DevOps" 
- DevOps
Repository, RepositoryArgs  
- Branch string
- Branch name of repository.
- DeploymentLogs stringUrl 
- Url to access repository action logs.
- DisplayUrl string
- Display url of repository.
- PathMapping 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.
- DeploymentLogs stringUrl 
- Url to access repository action logs.
- DisplayUrl string
- Display url of repository.
- PathMapping []ContentPath Map 
- Dictionary of source control content type and path mapping.
- Url string
- Url of repository.
- branch String
- Branch name of repository.
- deploymentLogs StringUrl 
- Url to access repository action logs.
- displayUrl String
- Display url of repository.
- pathMapping List<ContentPath Map> 
- Dictionary of source control content type and path mapping.
- url String
- Url of repository.
- branch string
- Branch name of repository.
- deploymentLogs stringUrl 
- Url to access repository action logs.
- displayUrl string
- Display url of repository.
- pathMapping 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.
- deploymentLogs StringUrl 
- Url to access repository action logs.
- displayUrl String
- Display url of repository.
- pathMapping List<Property Map>
- Dictionary of source control content type and path mapping.
- url String
- Url of repository.
RepositoryResourceInfo, RepositoryResourceInfoArgs      
- AzureDev Pulumi.Ops Resource Info Azure Native. Security Insights. Inputs. Azure Dev Ops Resource Info 
- Resources created in Azure DevOps for this source-control.
- GitHub 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.
- AzureDev AzureOps Resource Info Dev Ops Resource Info 
- Resources created in Azure DevOps for this source-control.
- GitHub GitResource Info Hub Resource Info 
- Resources created in GitHub for this source-control.
- Webhook Webhook
- The webhook object created for the source-control.
- azureDev AzureOps Resource Info Dev Ops Resource Info 
- Resources created in Azure DevOps for this source-control.
- gitHub GitResource Info Hub Resource Info 
- Resources created in GitHub for this source-control.
- webhook Webhook
- The webhook object created for the source-control.
- azureDev AzureOps Resource Info Dev Ops Resource Info 
- Resources created in Azure DevOps for this source-control.
- gitHub 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.
- azureDev Property MapOps Resource Info 
- Resources created in Azure DevOps for this source-control.
- gitHub Property MapResource Info 
- Resources created in GitHub for this source-control.
- webhook Property Map
- The webhook object created for the source-control.
RepositoryResourceInfoResponse, RepositoryResourceInfoResponseArgs        
- AzureDev Pulumi.Ops Resource Info Azure Native. Security Insights. Inputs. Azure Dev Ops Resource Info Response 
- Resources created in Azure DevOps for this source-control.
- GitHub 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.
- AzureDev AzureOps Resource Info Dev Ops Resource Info Response 
- Resources created in Azure DevOps for this source-control.
- GitHub GitResource Info Hub Resource Info Response 
- Resources created in GitHub for this source-control.
- Webhook
WebhookResponse 
- The webhook object created for the source-control.
- azureDev AzureOps Resource Info Dev Ops Resource Info Response 
- Resources created in Azure DevOps for this source-control.
- gitHub GitResource Info Hub Resource Info Response 
- Resources created in GitHub for this source-control.
- webhook
WebhookResponse 
- The webhook object created for the source-control.
- azureDev AzureOps Resource Info Dev Ops Resource Info Response 
- Resources created in Azure DevOps for this source-control.
- gitHub GitResource Info Hub Resource Info Response 
- Resources created in GitHub for this source-control.
- webhook
WebhookResponse 
- 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
WebhookResponse 
- The webhook object created for the source-control.
- azureDev Property MapOps Resource Info 
- Resources created in Azure DevOps for this source-control.
- gitHub 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.
- DeploymentLogs stringUrl 
- Url to access repository action logs.
- DisplayUrl string
- Display url of repository.
- PathMapping 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.
- DeploymentLogs stringUrl 
- Url to access repository action logs.
- DisplayUrl string
- Display url of repository.
- PathMapping []ContentPath Map Response 
- Dictionary of source control content type and path mapping.
- Url string
- Url of repository.
- branch String
- Branch name of repository.
- deploymentLogs StringUrl 
- Url to access repository action logs.
- displayUrl String
- Display url of repository.
- pathMapping List<ContentPath Map Response> 
- Dictionary of source control content type and path mapping.
- url String
- Url of repository.
- branch string
- Branch name of repository.
- deploymentLogs stringUrl 
- Url to access repository action logs.
- displayUrl string
- Display url of repository.
- pathMapping 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.
- deploymentLogs StringUrl 
- Url to access repository action logs.
- displayUrl String
- Display url of repository.
- pathMapping List<Property Map>
- Dictionary of source control content type and path mapping.
- url String
- Url of repository.
SystemDataResponse, SystemDataResponseArgs      
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- CreatedAt string
- The timestamp of resource creation (UTC).
- CreatedBy string
- The identity that created the resource.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- The type of identity that last modified the resource.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
- createdAt string
- The timestamp of resource creation (UTC).
- createdBy string
- The identity that created the resource.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
Version, VersionArgs  
- V1
- V1
- V2
- V2
- VersionV1 
- V1
- VersionV2 
- V2
- V1
- V1
- V2
- V2
- V1
- V1
- V2
- V2
- V1
- V1
- V2
- V2
- "V1"
- V1
- "V2"
- V2
Webhook, WebhookArgs  
- RotateWebhook boolSecret 
- A flag to instruct the backend service to rotate webhook secret.
- WebhookId string
- Unique identifier for the webhook.
- WebhookSecret stringUpdate Time 
- Time when the webhook secret was updated.
- WebhookUrl string
- URL that gets invoked by the webhook.
- RotateWebhook boolSecret 
- A flag to instruct the backend service to rotate webhook secret.
- WebhookId string
- Unique identifier for the webhook.
- WebhookSecret stringUpdate Time 
- Time when the webhook secret was updated.
- WebhookUrl string
- URL that gets invoked by the webhook.
- rotateWebhook BooleanSecret 
- A flag to instruct the backend service to rotate webhook secret.
- webhookId String
- Unique identifier for the webhook.
- webhookSecret StringUpdate Time 
- Time when the webhook secret was updated.
- webhookUrl String
- URL that gets invoked by the webhook.
- rotateWebhook booleanSecret 
- A flag to instruct the backend service to rotate webhook secret.
- webhookId string
- Unique identifier for the webhook.
- webhookSecret stringUpdate Time 
- Time when the webhook secret was updated.
- webhookUrl 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.
- rotateWebhook BooleanSecret 
- A flag to instruct the backend service to rotate webhook secret.
- webhookId String
- Unique identifier for the webhook.
- webhookSecret StringUpdate Time 
- Time when the webhook secret was updated.
- webhookUrl String
- URL that gets invoked by the webhook.
WebhookResponse, WebhookResponseArgs    
- RotateWebhook boolSecret 
- A flag to instruct the backend service to rotate webhook secret.
- WebhookId string
- Unique identifier for the webhook.
- WebhookSecret stringUpdate Time 
- Time when the webhook secret was updated.
- WebhookUrl string
- URL that gets invoked by the webhook.
- RotateWebhook boolSecret 
- A flag to instruct the backend service to rotate webhook secret.
- WebhookId string
- Unique identifier for the webhook.
- WebhookSecret stringUpdate Time 
- Time when the webhook secret was updated.
- WebhookUrl string
- URL that gets invoked by the webhook.
- rotateWebhook BooleanSecret 
- A flag to instruct the backend service to rotate webhook secret.
- webhookId String
- Unique identifier for the webhook.
- webhookSecret StringUpdate Time 
- Time when the webhook secret was updated.
- webhookUrl String
- URL that gets invoked by the webhook.
- rotateWebhook booleanSecret 
- A flag to instruct the backend service to rotate webhook secret.
- webhookId string
- Unique identifier for the webhook.
- webhookSecret stringUpdate Time 
- Time when the webhook secret was updated.
- webhookUrl 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.
- rotateWebhook BooleanSecret 
- A flag to instruct the backend service to rotate webhook secret.
- webhookId String
- Unique identifier for the webhook.
- webhookSecret StringUpdate Time 
- Time when the webhook secret was updated.
- webhookUrl 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