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

azure-native-v2.security.DevOpsConfiguration

Explore with Pulumi AI

DevOps Configuration resource. Azure REST API version: 2023-09-01-preview.

Other available API versions: 2024-04-01, 2024-05-15-preview.

Example Usage

CreateOrUpdate_DevOpsConfigurations_OnboardCurrentAndFuture

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

return await Deployment.RunAsync(() => 
{
    var devOpsConfiguration = new AzureNative.Security.DevOpsConfiguration("devOpsConfiguration", new()
    {
        Properties = new AzureNative.Security.Inputs.DevOpsConfigurationPropertiesArgs
        {
            Authorization = new AzureNative.Security.Inputs.AuthorizationArgs
            {
                Code = "00000000000000000000",
            },
            AutoDiscovery = AzureNative.Security.AutoDiscovery.Enabled,
        },
        ResourceGroupName = "myRg",
        SecurityConnectorName = "mySecurityConnectorName",
    });

});
Copy
package main

import (
	security "github.com/pulumi/pulumi-azure-native-sdk/security/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := security.NewDevOpsConfiguration(ctx, "devOpsConfiguration", &security.DevOpsConfigurationArgs{
			Properties: &security.DevOpsConfigurationPropertiesArgs{
				Authorization: &security.AuthorizationArgs{
					Code: pulumi.String("00000000000000000000"),
				},
				AutoDiscovery: pulumi.String(security.AutoDiscoveryEnabled),
			},
			ResourceGroupName:     pulumi.String("myRg"),
			SecurityConnectorName: pulumi.String("mySecurityConnectorName"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.security.DevOpsConfiguration;
import com.pulumi.azurenative.security.DevOpsConfigurationArgs;
import com.pulumi.azurenative.security.inputs.DevOpsConfigurationPropertiesArgs;
import com.pulumi.azurenative.security.inputs.AuthorizationArgs;
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 devOpsConfiguration = new DevOpsConfiguration("devOpsConfiguration", DevOpsConfigurationArgs.builder()
            .properties(DevOpsConfigurationPropertiesArgs.builder()
                .authorization(AuthorizationArgs.builder()
                    .code("00000000000000000000")
                    .build())
                .autoDiscovery("Enabled")
                .build())
            .resourceGroupName("myRg")
            .securityConnectorName("mySecurityConnectorName")
            .build());

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

const devOpsConfiguration = new azure_native.security.DevOpsConfiguration("devOpsConfiguration", {
    properties: {
        authorization: {
            code: "00000000000000000000",
        },
        autoDiscovery: azure_native.security.AutoDiscovery.Enabled,
    },
    resourceGroupName: "myRg",
    securityConnectorName: "mySecurityConnectorName",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

dev_ops_configuration = azure_native.security.DevOpsConfiguration("devOpsConfiguration",
    properties={
        "authorization": {
            "code": "00000000000000000000",
        },
        "auto_discovery": azure_native.security.AutoDiscovery.ENABLED,
    },
    resource_group_name="myRg",
    security_connector_name="mySecurityConnectorName")
Copy
resources:
  devOpsConfiguration:
    type: azure-native:security:DevOpsConfiguration
    properties:
      properties:
        authorization:
          code: '00000000000000000000'
        autoDiscovery: Enabled
      resourceGroupName: myRg
      securityConnectorName: mySecurityConnectorName
Copy

CreateOrUpdate_DevOpsConfigurations_OnboardCurrentOnly

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

return await Deployment.RunAsync(() => 
{
    var devOpsConfiguration = new AzureNative.Security.DevOpsConfiguration("devOpsConfiguration", new()
    {
        Properties = new AzureNative.Security.Inputs.DevOpsConfigurationPropertiesArgs
        {
            Authorization = new AzureNative.Security.Inputs.AuthorizationArgs
            {
                Code = "00000000000000000000",
            },
            AutoDiscovery = AzureNative.Security.AutoDiscovery.Disabled,
        },
        ResourceGroupName = "myRg",
        SecurityConnectorName = "mySecurityConnectorName",
    });

});
Copy
package main

import (
	security "github.com/pulumi/pulumi-azure-native-sdk/security/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := security.NewDevOpsConfiguration(ctx, "devOpsConfiguration", &security.DevOpsConfigurationArgs{
			Properties: &security.DevOpsConfigurationPropertiesArgs{
				Authorization: &security.AuthorizationArgs{
					Code: pulumi.String("00000000000000000000"),
				},
				AutoDiscovery: pulumi.String(security.AutoDiscoveryDisabled),
			},
			ResourceGroupName:     pulumi.String("myRg"),
			SecurityConnectorName: pulumi.String("mySecurityConnectorName"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.security.DevOpsConfiguration;
import com.pulumi.azurenative.security.DevOpsConfigurationArgs;
import com.pulumi.azurenative.security.inputs.DevOpsConfigurationPropertiesArgs;
import com.pulumi.azurenative.security.inputs.AuthorizationArgs;
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 devOpsConfiguration = new DevOpsConfiguration("devOpsConfiguration", DevOpsConfigurationArgs.builder()
            .properties(DevOpsConfigurationPropertiesArgs.builder()
                .authorization(AuthorizationArgs.builder()
                    .code("00000000000000000000")
                    .build())
                .autoDiscovery("Disabled")
                .build())
            .resourceGroupName("myRg")
            .securityConnectorName("mySecurityConnectorName")
            .build());

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

const devOpsConfiguration = new azure_native.security.DevOpsConfiguration("devOpsConfiguration", {
    properties: {
        authorization: {
            code: "00000000000000000000",
        },
        autoDiscovery: azure_native.security.AutoDiscovery.Disabled,
    },
    resourceGroupName: "myRg",
    securityConnectorName: "mySecurityConnectorName",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

dev_ops_configuration = azure_native.security.DevOpsConfiguration("devOpsConfiguration",
    properties={
        "authorization": {
            "code": "00000000000000000000",
        },
        "auto_discovery": azure_native.security.AutoDiscovery.DISABLED,
    },
    resource_group_name="myRg",
    security_connector_name="mySecurityConnectorName")
Copy
resources:
  devOpsConfiguration:
    type: azure-native:security:DevOpsConfiguration
    properties:
      properties:
        authorization:
          code: '00000000000000000000'
        autoDiscovery: Disabled
      resourceGroupName: myRg
      securityConnectorName: mySecurityConnectorName
Copy

CreateOrUpdate_DevOpsConfigurations_OnboardSelected

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

return await Deployment.RunAsync(() => 
{
    var devOpsConfiguration = new AzureNative.Security.DevOpsConfiguration("devOpsConfiguration", new()
    {
        Properties = new AzureNative.Security.Inputs.DevOpsConfigurationPropertiesArgs
        {
            Authorization = new AzureNative.Security.Inputs.AuthorizationArgs
            {
                Code = "00000000000000000000",
            },
            AutoDiscovery = AzureNative.Security.AutoDiscovery.Disabled,
            TopLevelInventoryList = new[]
            {
                "org1",
                "org2",
            },
        },
        ResourceGroupName = "myRg",
        SecurityConnectorName = "mySecurityConnectorName",
    });

});
Copy
package main

import (
	security "github.com/pulumi/pulumi-azure-native-sdk/security/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := security.NewDevOpsConfiguration(ctx, "devOpsConfiguration", &security.DevOpsConfigurationArgs{
			Properties: &security.DevOpsConfigurationPropertiesArgs{
				Authorization: &security.AuthorizationArgs{
					Code: pulumi.String("00000000000000000000"),
				},
				AutoDiscovery: pulumi.String(security.AutoDiscoveryDisabled),
				TopLevelInventoryList: pulumi.StringArray{
					pulumi.String("org1"),
					pulumi.String("org2"),
				},
			},
			ResourceGroupName:     pulumi.String("myRg"),
			SecurityConnectorName: pulumi.String("mySecurityConnectorName"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.security.DevOpsConfiguration;
import com.pulumi.azurenative.security.DevOpsConfigurationArgs;
import com.pulumi.azurenative.security.inputs.DevOpsConfigurationPropertiesArgs;
import com.pulumi.azurenative.security.inputs.AuthorizationArgs;
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 devOpsConfiguration = new DevOpsConfiguration("devOpsConfiguration", DevOpsConfigurationArgs.builder()
            .properties(DevOpsConfigurationPropertiesArgs.builder()
                .authorization(AuthorizationArgs.builder()
                    .code("00000000000000000000")
                    .build())
                .autoDiscovery("Disabled")
                .topLevelInventoryList(                
                    "org1",
                    "org2")
                .build())
            .resourceGroupName("myRg")
            .securityConnectorName("mySecurityConnectorName")
            .build());

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

const devOpsConfiguration = new azure_native.security.DevOpsConfiguration("devOpsConfiguration", {
    properties: {
        authorization: {
            code: "00000000000000000000",
        },
        autoDiscovery: azure_native.security.AutoDiscovery.Disabled,
        topLevelInventoryList: [
            "org1",
            "org2",
        ],
    },
    resourceGroupName: "myRg",
    securityConnectorName: "mySecurityConnectorName",
});
Copy
import pulumi
import pulumi_azure_native as azure_native

dev_ops_configuration = azure_native.security.DevOpsConfiguration("devOpsConfiguration",
    properties={
        "authorization": {
            "code": "00000000000000000000",
        },
        "auto_discovery": azure_native.security.AutoDiscovery.DISABLED,
        "top_level_inventory_list": [
            "org1",
            "org2",
        ],
    },
    resource_group_name="myRg",
    security_connector_name="mySecurityConnectorName")
Copy
resources:
  devOpsConfiguration:
    type: azure-native:security:DevOpsConfiguration
    properties:
      properties:
        authorization:
          code: '00000000000000000000'
        autoDiscovery: Disabled
        topLevelInventoryList:
          - org1
          - org2
      resourceGroupName: myRg
      securityConnectorName: mySecurityConnectorName
Copy

Create DevOpsConfiguration Resource

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

Constructor syntax

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

@overload
def DevOpsConfiguration(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        resource_group_name: Optional[str] = None,
                        security_connector_name: Optional[str] = None,
                        properties: Optional[DevOpsConfigurationPropertiesArgs] = None)
func NewDevOpsConfiguration(ctx *Context, name string, args DevOpsConfigurationArgs, opts ...ResourceOption) (*DevOpsConfiguration, error)
public DevOpsConfiguration(string name, DevOpsConfigurationArgs args, CustomResourceOptions? opts = null)
public DevOpsConfiguration(String name, DevOpsConfigurationArgs args)
public DevOpsConfiguration(String name, DevOpsConfigurationArgs args, CustomResourceOptions options)
type: azure-native:security:DevOpsConfiguration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. DevOpsConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. DevOpsConfigurationArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. DevOpsConfigurationArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. DevOpsConfigurationArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. DevOpsConfigurationArgs
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 devOpsConfigurationResource = new AzureNative.Security.DevOpsConfiguration("devOpsConfigurationResource", new()
{
    ResourceGroupName = "string",
    SecurityConnectorName = "string",
    Properties = 
    {
        { "authorization", 
        {
            { "code", "string" },
        } },
        { "autoDiscovery", "string" },
        { "provisioningState", "string" },
        { "topLevelInventoryList", new[]
        {
            "string",
        } },
    },
});
Copy
example, err := security.NewDevOpsConfiguration(ctx, "devOpsConfigurationResource", &security.DevOpsConfigurationArgs{
	ResourceGroupName:     "string",
	SecurityConnectorName: "string",
	Properties: map[string]interface{}{
		"authorization": map[string]interface{}{
			"code": "string",
		},
		"autoDiscovery":     "string",
		"provisioningState": "string",
		"topLevelInventoryList": []string{
			"string",
		},
	},
})
Copy
var devOpsConfigurationResource = new DevOpsConfiguration("devOpsConfigurationResource", DevOpsConfigurationArgs.builder()
    .resourceGroupName("string")
    .securityConnectorName("string")
    .properties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
dev_ops_configuration_resource = azure_native.security.DevOpsConfiguration("devOpsConfigurationResource",
    resource_group_name=string,
    security_connector_name=string,
    properties={
        authorization: {
            code: string,
        },
        autoDiscovery: string,
        provisioningState: string,
        topLevelInventoryList: [string],
    })
Copy
const devOpsConfigurationResource = new azure_native.security.DevOpsConfiguration("devOpsConfigurationResource", {
    resourceGroupName: "string",
    securityConnectorName: "string",
    properties: {
        authorization: {
            code: "string",
        },
        autoDiscovery: "string",
        provisioningState: "string",
        topLevelInventoryList: ["string"],
    },
});
Copy
type: azure-native:security:DevOpsConfiguration
properties:
    properties:
        authorization:
            code: string
        autoDiscovery: string
        provisioningState: string
        topLevelInventoryList:
            - string
    resourceGroupName: string
    securityConnectorName: string
Copy

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

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
SecurityConnectorName
This property is required.
Changes to this property will trigger replacement.
string
The security connector name.
Properties Pulumi.AzureNative.Security.Inputs.DevOpsConfigurationProperties
DevOps Configuration properties.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
SecurityConnectorName
This property is required.
Changes to this property will trigger replacement.
string
The security connector name.
Properties DevOpsConfigurationPropertiesArgs
DevOps Configuration properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
securityConnectorName
This property is required.
Changes to this property will trigger replacement.
String
The security connector name.
properties DevOpsConfigurationProperties
DevOps Configuration properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
securityConnectorName
This property is required.
Changes to this property will trigger replacement.
string
The security connector name.
properties DevOpsConfigurationProperties
DevOps Configuration properties.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
security_connector_name
This property is required.
Changes to this property will trigger replacement.
str
The security connector name.
properties DevOpsConfigurationPropertiesArgs
DevOps Configuration properties.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
securityConnectorName
This property is required.
Changes to this property will trigger replacement.
String
The security connector name.
properties Property Map
DevOps Configuration properties.

Outputs

All input properties are implicitly available as output properties. Additionally, the DevOpsConfiguration 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.AzureNative.Security.Outputs.SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
SystemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
systemData SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
system_data SystemDataResponse
Metadata pertaining to creation and last modification of the resource.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
systemData Property Map
Metadata pertaining to creation and last modification of the resource.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

Authorization
, AuthorizationArgs

Code string

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

Code string

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

code String

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

code string

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

code str

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

code String

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

AuthorizationResponse
, AuthorizationResponseArgs

Code string

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

Code string

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

code String

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

code string

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

code str

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

code String

Gets or sets one-time OAuth code to exchange for refresh and access tokens.

Only used during PUT/PATCH operations. The secret is cleared during GET.

AutoDiscovery
, AutoDiscoveryArgs

Disabled
Disabled
Enabled
Enabled
NotApplicable
NotApplicable
AutoDiscoveryDisabled
Disabled
AutoDiscoveryEnabled
Enabled
AutoDiscoveryNotApplicable
NotApplicable
Disabled
Disabled
Enabled
Enabled
NotApplicable
NotApplicable
Disabled
Disabled
Enabled
Enabled
NotApplicable
NotApplicable
DISABLED
Disabled
ENABLED
Enabled
NOT_APPLICABLE
NotApplicable
"Disabled"
Disabled
"Enabled"
Enabled
"NotApplicable"
NotApplicable

DevOpsConfigurationProperties
, DevOpsConfigurationPropertiesArgs

Authorization Pulumi.AzureNative.Security.Inputs.Authorization
Authorization payload.
AutoDiscovery string | Pulumi.AzureNative.Security.AutoDiscovery
AutoDiscovery states.
ProvisioningState string | Pulumi.AzureNative.Security.DevOpsProvisioningState

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

TopLevelInventoryList List<string>
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
Authorization Authorization
Authorization payload.
AutoDiscovery string | AutoDiscovery
AutoDiscovery states.
ProvisioningState string | DevOpsProvisioningState

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

TopLevelInventoryList []string
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
authorization Authorization
Authorization payload.
autoDiscovery String | AutoDiscovery
AutoDiscovery states.
provisioningState String | DevOpsProvisioningState

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

topLevelInventoryList List<String>
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
authorization Authorization
Authorization payload.
autoDiscovery string | AutoDiscovery
AutoDiscovery states.
provisioningState string | DevOpsProvisioningState

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

topLevelInventoryList string[]
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
authorization Authorization
Authorization payload.
auto_discovery str | AutoDiscovery
AutoDiscovery states.
provisioning_state str | DevOpsProvisioningState

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

top_level_inventory_list Sequence[str]
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
authorization Property Map
Authorization payload.
autoDiscovery String | "Disabled" | "Enabled" | "NotApplicable"
AutoDiscovery states.
provisioningState String | "Succeeded" | "Failed" | "Canceled" | "Pending" | "PendingDeletion" | "DeletionSuccess" | "DeletionFailure"

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

topLevelInventoryList List<String>
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.

DevOpsConfigurationPropertiesResponse
, DevOpsConfigurationPropertiesResponseArgs

ProvisioningStatusMessage This property is required. string
Gets or sets resource status message.
ProvisioningStatusUpdateTimeUtc This property is required. string
Gets or sets time when resource was last checked.
Authorization Pulumi.AzureNative.Security.Inputs.AuthorizationResponse
Authorization payload.
AutoDiscovery string
AutoDiscovery states.
ProvisioningState string

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

TopLevelInventoryList List<string>
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
ProvisioningStatusMessage This property is required. string
Gets or sets resource status message.
ProvisioningStatusUpdateTimeUtc This property is required. string
Gets or sets time when resource was last checked.
Authorization AuthorizationResponse
Authorization payload.
AutoDiscovery string
AutoDiscovery states.
ProvisioningState string

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

TopLevelInventoryList []string
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
provisioningStatusMessage This property is required. String
Gets or sets resource status message.
provisioningStatusUpdateTimeUtc This property is required. String
Gets or sets time when resource was last checked.
authorization AuthorizationResponse
Authorization payload.
autoDiscovery String
AutoDiscovery states.
provisioningState String

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

topLevelInventoryList List<String>
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
provisioningStatusMessage This property is required. string
Gets or sets resource status message.
provisioningStatusUpdateTimeUtc This property is required. string
Gets or sets time when resource was last checked.
authorization AuthorizationResponse
Authorization payload.
autoDiscovery string
AutoDiscovery states.
provisioningState string

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

topLevelInventoryList string[]
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
provisioning_status_message This property is required. str
Gets or sets resource status message.
provisioning_status_update_time_utc This property is required. str
Gets or sets time when resource was last checked.
authorization AuthorizationResponse
Authorization payload.
auto_discovery str
AutoDiscovery states.
provisioning_state str

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

top_level_inventory_list Sequence[str]
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
provisioningStatusMessage This property is required. String
Gets or sets resource status message.
provisioningStatusUpdateTimeUtc This property is required. String
Gets or sets time when resource was last checked.
authorization Property Map
Authorization payload.
autoDiscovery String
AutoDiscovery states.
provisioningState String

The provisioning state of the resource.

Pending - Provisioning pending. Failed - Provisioning failed. Succeeded - Successful provisioning. Canceled - Provisioning canceled. PendingDeletion - Deletion pending. DeletionSuccess - Deletion successful. DeletionFailure - Deletion failure.

topLevelInventoryList List<String>
List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.

DevOpsProvisioningState
, DevOpsProvisioningStateArgs

Succeeded
Succeeded
Failed
Failed
Canceled
Canceled
Pending
Pending
PendingDeletion
PendingDeletion
DeletionSuccess
DeletionSuccess
DeletionFailure
DeletionFailure
DevOpsProvisioningStateSucceeded
Succeeded
DevOpsProvisioningStateFailed
Failed
DevOpsProvisioningStateCanceled
Canceled
DevOpsProvisioningStatePending
Pending
DevOpsProvisioningStatePendingDeletion
PendingDeletion
DevOpsProvisioningStateDeletionSuccess
DeletionSuccess
DevOpsProvisioningStateDeletionFailure
DeletionFailure
Succeeded
Succeeded
Failed
Failed
Canceled
Canceled
Pending
Pending
PendingDeletion
PendingDeletion
DeletionSuccess
DeletionSuccess
DeletionFailure
DeletionFailure
Succeeded
Succeeded
Failed
Failed
Canceled
Canceled
Pending
Pending
PendingDeletion
PendingDeletion
DeletionSuccess
DeletionSuccess
DeletionFailure
DeletionFailure
SUCCEEDED
Succeeded
FAILED
Failed
CANCELED
Canceled
PENDING
Pending
PENDING_DELETION
PendingDeletion
DELETION_SUCCESS
DeletionSuccess
DELETION_FAILURE
DeletionFailure
"Succeeded"
Succeeded
"Failed"
Failed
"Canceled"
Canceled
"Pending"
Pending
"PendingDeletion"
PendingDeletion
"DeletionSuccess"
DeletionSuccess
"DeletionFailure"
DeletionFailure

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:security:DevOpsConfiguration default /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/securityConnectors/{securityConnectorName}/devops/default 
Copy

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

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0