1. Packages
  2. Azure Native
  3. API Docs
  4. security
  5. DevOpsConfiguration
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi

azure-native.security.DevOpsConfiguration

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi

    DevOps Configuration resource. Azure REST API version: 2023-09-01-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 = "Enabled",
            },
            ResourceGroupName = "myRg",
            SecurityConnectorName = "mySecurityConnectorName",
        });
    
    });
    
    package main
    
    import (
    	"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.DevOpsConfigurationPropertiesResponse{
    				Authorization: &security.AuthorizationArgs{
    					Code: pulumi.String("00000000000000000000"),
    				},
    				AutoDiscovery: pulumi.String("Enabled"),
    			},
    			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 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(Map.ofEntries(
                    Map.entry("authorization", Map.of("code", "00000000000000000000")),
                    Map.entry("autoDiscovery", "Enabled")
                ))
                .resourceGroupName("myRg")
                .securityConnectorName("mySecurityConnectorName")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    dev_ops_configuration = azure_native.security.DevOpsConfiguration("devOpsConfiguration",
        properties=azure_native.security.DevOpsConfigurationPropertiesResponseArgs(
            authorization=azure_native.security.AuthorizationArgs(
                code="00000000000000000000",
            ),
            auto_discovery="Enabled",
        ),
        resource_group_name="myRg",
        security_connector_name="mySecurityConnectorName")
    
    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: "Enabled",
        },
        resourceGroupName: "myRg",
        securityConnectorName: "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 = "Disabled",
            },
            ResourceGroupName = "myRg",
            SecurityConnectorName = "mySecurityConnectorName",
        });
    
    });
    
    package main
    
    import (
    	"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.DevOpsConfigurationPropertiesResponse{
    				Authorization: &security.AuthorizationArgs{
    					Code: pulumi.String("00000000000000000000"),
    				},
    				AutoDiscovery: pulumi.String("Disabled"),
    			},
    			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 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(Map.ofEntries(
                    Map.entry("authorization", Map.of("code", "00000000000000000000")),
                    Map.entry("autoDiscovery", "Disabled")
                ))
                .resourceGroupName("myRg")
                .securityConnectorName("mySecurityConnectorName")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    dev_ops_configuration = azure_native.security.DevOpsConfiguration("devOpsConfiguration",
        properties=azure_native.security.DevOpsConfigurationPropertiesResponseArgs(
            authorization=azure_native.security.AuthorizationArgs(
                code="00000000000000000000",
            ),
            auto_discovery="Disabled",
        ),
        resource_group_name="myRg",
        security_connector_name="mySecurityConnectorName")
    
    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: "Disabled",
        },
        resourceGroupName: "myRg",
        securityConnectorName: "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 = "Disabled",
                TopLevelInventoryList = new[]
                {
                    "org1",
                    "org2",
                },
            },
            ResourceGroupName = "myRg",
            SecurityConnectorName = "mySecurityConnectorName",
        });
    
    });
    
    package main
    
    import (
    	"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.DevOpsConfigurationPropertiesResponse{
    				Authorization: &security.AuthorizationArgs{
    					Code: pulumi.String("00000000000000000000"),
    				},
    				AutoDiscovery: pulumi.String("Disabled"),
    				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 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(Map.ofEntries(
                    Map.entry("authorization", Map.of("code", "00000000000000000000")),
                    Map.entry("autoDiscovery", "Disabled"),
                    Map.entry("topLevelInventoryList",                 
                        "org1",
                        "org2")
                ))
                .resourceGroupName("myRg")
                .securityConnectorName("mySecurityConnectorName")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    dev_ops_configuration = azure_native.security.DevOpsConfiguration("devOpsConfiguration",
        properties=azure_native.security.DevOpsConfigurationPropertiesResponseArgs(
            authorization=azure_native.security.AuthorizationArgs(
                code="00000000000000000000",
            ),
            auto_discovery="Disabled",
            top_level_inventory_list=[
                "org1",
                "org2",
            ],
        ),
        resource_group_name="myRg",
        security_connector_name="mySecurityConnectorName")
    
    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: "Disabled",
            topLevelInventoryList: [
                "org1",
                "org2",
            ],
        },
        resourceGroupName: "myRg",
        securityConnectorName: "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

    new DevOpsConfiguration(name: string, args: DevOpsConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def DevOpsConfiguration(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            properties: Optional[DevOpsConfigurationPropertiesArgs] = None,
                            resource_group_name: Optional[str] = None,
                            security_connector_name: Optional[str] = None)
    @overload
    def DevOpsConfiguration(resource_name: str,
                            args: DevOpsConfigurationArgs,
                            opts: Optional[ResourceOptions] = 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.
    
    
    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.

    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

    The DevOpsConfiguration resource accepts the following input properties:

    ResourceGroupName string

    The name of the resource group. The name is case insensitive.

    SecurityConnectorName string

    The security connector name.

    Properties Pulumi.AzureNative.Security.Inputs.DevOpsConfigurationProperties

    DevOps Configuration properties.

    ResourceGroupName string

    The name of the resource group. The name is case insensitive.

    SecurityConnectorName string

    The security connector name.

    Properties DevOpsConfigurationPropertiesArgs

    DevOps Configuration properties.

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    securityConnectorName String

    The security connector name.

    properties DevOpsConfigurationProperties

    DevOps Configuration properties.

    resourceGroupName string

    The name of the resource group. The name is case insensitive.

    securityConnectorName string

    The security connector name.

    properties DevOpsConfigurationProperties

    DevOps Configuration properties.

    resource_group_name str

    The name of the resource group. The name is case insensitive.

    security_connector_name str

    The security connector name.

    properties DevOpsConfigurationPropertiesArgs

    DevOps Configuration properties.

    resourceGroupName String

    The name of the resource group. The name is case insensitive.

    securityConnectorName 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 string

    Gets or sets resource status message.

    ProvisioningStatusUpdateTimeUtc 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 string

    Gets or sets resource status message.

    ProvisioningStatusUpdateTimeUtc 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 String

    Gets or sets resource status message.

    provisioningStatusUpdateTimeUtc 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 string

    Gets or sets resource status message.

    provisioningStatusUpdateTimeUtc 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 str

    Gets or sets resource status message.

    provisioning_status_update_time_utc 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 String

    Gets or sets resource status message.

    provisioningStatusUpdateTimeUtc 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 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.8.0 published on Monday, Sep 18, 2023 by Pulumi