azure-native.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",
    });
});
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
	})
}
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());
    }
}
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",
});
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")
resources:
  devOpsConfiguration:
    type: azure-native:security:DevOpsConfiguration
    properties:
      properties:
        authorization:
          code: '00000000000000000000'
        autoDiscovery: Enabled
      resourceGroupName: myRg
      securityConnectorName: mySecurityConnectorName
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",
    });
});
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
	})
}
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());
    }
}
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",
});
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")
resources:
  devOpsConfiguration:
    type: azure-native:security:DevOpsConfiguration
    properties:
      properties:
        authorization:
          code: '00000000000000000000'
        autoDiscovery: Disabled
      resourceGroupName: myRg
      securityConnectorName: mySecurityConnectorName
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",
    });
});
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
	})
}
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());
    }
}
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",
});
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")
resources:
  devOpsConfiguration:
    type: azure-native:security:DevOpsConfiguration
    properties:
      properties:
        authorization:
          code: '00000000000000000000'
        autoDiscovery: Disabled
        topLevelInventoryList:
          - org1
          - org2
      resourceGroupName: myRg
      securityConnectorName: mySecurityConnectorName
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 string
- The unique name of the resource.
- args DevOpsConfigurationArgs
- 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 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 string
- The unique name of the resource.
- args DevOpsConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DevOpsConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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 = new AzureNative.Security.Inputs.DevOpsConfigurationPropertiesArgs
    {
        Authorization = new AzureNative.Security.Inputs.AuthorizationArgs
        {
            Code = "string",
        },
        AutoDiscovery = "string",
        ProvisioningState = "string",
        TopLevelInventoryList = new[]
        {
            "string",
        },
    },
});
example, err := security.NewDevOpsConfiguration(ctx, "devOpsConfigurationResource", &security.DevOpsConfigurationArgs{
	ResourceGroupName:     pulumi.String("string"),
	SecurityConnectorName: pulumi.String("string"),
	Properties: &security.DevOpsConfigurationPropertiesArgs{
		Authorization: &security.AuthorizationArgs{
			Code: pulumi.String("string"),
		},
		AutoDiscovery:     pulumi.String("string"),
		ProvisioningState: pulumi.String("string"),
		TopLevelInventoryList: pulumi.StringArray{
			pulumi.String("string"),
		},
	},
})
var devOpsConfigurationResource = new DevOpsConfiguration("devOpsConfigurationResource", DevOpsConfigurationArgs.builder()
    .resourceGroupName("string")
    .securityConnectorName("string")
    .properties(DevOpsConfigurationPropertiesArgs.builder()
        .authorization(AuthorizationArgs.builder()
            .code("string")
            .build())
        .autoDiscovery("string")
        .provisioningState("string")
        .topLevelInventoryList("string")
        .build())
    .build());
dev_ops_configuration_resource = azure_native.security.DevOpsConfiguration("devOpsConfigurationResource",
    resource_group_name="string",
    security_connector_name="string",
    properties={
        "authorization": {
            "code": "string",
        },
        "auto_discovery": "string",
        "provisioning_state": "string",
        "top_level_inventory_list": ["string"],
    })
const devOpsConfigurationResource = new azure_native.security.DevOpsConfiguration("devOpsConfigurationResource", {
    resourceGroupName: "string",
    securityConnectorName: "string",
    properties: {
        authorization: {
            code: "string",
        },
        autoDiscovery: "string",
        provisioningState: "string",
        topLevelInventoryList: ["string"],
    },
});
type: azure-native:security:DevOpsConfiguration
properties:
    properties:
        authorization:
            code: string
        autoDiscovery: string
        provisioningState: string
        topLevelInventoryList:
            - string
    resourceGroupName: string
    securityConnectorName: string
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:
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SecurityConnector stringName 
- The security connector name.
- Properties
Pulumi.Azure Native. Security. Inputs. Dev Ops Configuration Properties 
- DevOps Configuration properties.
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- SecurityConnector stringName 
- The security connector name.
- Properties
DevOps Configuration Properties Args 
- DevOps Configuration properties.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- securityConnector StringName 
- The security connector name.
- properties
DevOps Configuration Properties 
- DevOps Configuration properties.
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- securityConnector stringName 
- The security connector name.
- properties
DevOps Configuration Properties 
- DevOps Configuration properties.
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- security_connector_ strname 
- The security connector name.
- properties
DevOps Configuration Properties Args 
- DevOps Configuration properties.
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- securityConnector StringName 
- 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.Azure Native. Security. Outputs. System Data Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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 SystemData Response 
- 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
- AutoDiscovery Disabled 
- Disabled
- AutoDiscovery Enabled 
- Enabled
- AutoDiscovery Not Applicable 
- 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        
- 
Pulumi.Azure Native. Security. Inputs. Authorization 
- Authorization payload.
- AutoDiscovery string | Pulumi.Azure Native. Security. Auto Discovery 
- AutoDiscovery states.
- ProvisioningState string | Pulumi.Azure Native. Security. Dev Ops Provisioning State 
- 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. 
- TopLevel List<string>Inventory List 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- Authorization
- Authorization payload.
- AutoDiscovery string | AutoDiscovery 
- AutoDiscovery states.
- ProvisioningState string | DevOps Provisioning State 
- 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. 
- TopLevel []stringInventory List 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- Authorization
- Authorization payload.
- autoDiscovery String | AutoDiscovery 
- AutoDiscovery states.
- provisioningState String | DevOps Provisioning State 
- 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. 
- topLevel List<String>Inventory List 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- Authorization
- Authorization payload.
- autoDiscovery string | AutoDiscovery 
- AutoDiscovery states.
- provisioningState string | DevOps Provisioning State 
- 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. 
- topLevel string[]Inventory List 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- Authorization
- Authorization payload.
- auto_discovery str | AutoDiscovery 
- AutoDiscovery states.
- provisioning_state str | DevOps Provisioning State 
- 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_ Sequence[str]inventory_ list 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- Property Map
- Authorization payload.
- autoDiscovery String | "Disabled" | "Enabled" | "NotApplicable" 
- AutoDiscovery states.
- provisioningState String | "Succeeded" | "Failed" | "Canceled" | "Pending" | "PendingDeletion" | "Deletion Success" | "Deletion Failure" 
- 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. 
- topLevel List<String>Inventory List 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
DevOpsConfigurationPropertiesResponse, DevOpsConfigurationPropertiesResponseArgs          
- ProvisioningStatus stringMessage 
- Gets or sets resource status message.
- ProvisioningStatus stringUpdate Time Utc 
- Gets or sets time when resource was last checked.
- 
Pulumi.Azure Native. Security. Inputs. Authorization Response 
- 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. 
- TopLevel List<string>Inventory List 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- ProvisioningStatus stringMessage 
- Gets or sets resource status message.
- ProvisioningStatus stringUpdate Time Utc 
- Gets or sets time when resource was last checked.
- 
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. 
- TopLevel []stringInventory List 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- provisioningStatus StringMessage 
- Gets or sets resource status message.
- provisioningStatus StringUpdate Time Utc 
- Gets or sets time when resource was last checked.
- 
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. 
- topLevel List<String>Inventory List 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- provisioningStatus stringMessage 
- Gets or sets resource status message.
- provisioningStatus stringUpdate Time Utc 
- Gets or sets time when resource was last checked.
- 
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. 
- topLevel string[]Inventory List 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- provisioning_status_ strmessage 
- Gets or sets resource status message.
- provisioning_status_ strupdate_ time_ utc 
- Gets or sets time when resource was last checked.
- 
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_ Sequence[str]inventory_ list 
- List of top-level inventory to select when AutoDiscovery is disabled. This field is ignored when AutoDiscovery is enabled.
- provisioningStatus StringMessage 
- Gets or sets resource status message.
- provisioningStatus StringUpdate Time Utc 
- Gets or sets time when resource was last checked.
- 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. 
- topLevel List<String>Inventory List 
- 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
- DevOps Provisioning State Succeeded 
- Succeeded
- DevOps Provisioning State Failed 
- Failed
- DevOps Provisioning State Canceled 
- Canceled
- DevOps Provisioning State Pending 
- Pending
- DevOps Provisioning State Pending Deletion 
- PendingDeletion
- DevOps Provisioning State Deletion Success 
- DeletionSuccess
- DevOps Provisioning State Deletion Failure 
- 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.
- 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.
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 
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Azure Native pulumi/pulumi-azure-native
- License
- Apache-2.0