1. Registry
  2. Packages
  3. Azure Native
  4. API Docs
  5. security
  6. SecurityConnector
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.26.0
published on Thursday, Aug 13, 2026 by Pulumi
azure-native logo
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Viewing docs for Azure Native v3.26.0
published on Thursday, Aug 13, 2026 by Pulumi

    The security connector resource.

    Uses Azure REST API version 2024-08-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-03-01-preview.

    Other available API versions: 2021-07-01-preview, 2021-12-01-preview, 2022-05-01-preview, 2022-08-01-preview, 2023-03-01-preview, 2023-10-01-preview, 2024-03-01-preview, 2024-07-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native security [ApiVersion]. See the version guide for details.

    Example Usage

    Create or update a security connector

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var securityConnector = new AzureNative.Security.SecurityConnector("securityConnector", new()
        {
            EnvironmentData = new AzureNative.Security.Inputs.AwsEnvironmentDataArgs
            {
                EnvironmentType = "AwsAccount",
                ScanInterval = 4,
            },
            EnvironmentName = AzureNative.Security.CloudName.AWS,
            HierarchyIdentifier = "exampleHierarchyId",
            Location = "Central US",
            Offerings = new[]
            {
                new AzureNative.Security.Inputs.CspmMonitorAwsOfferingArgs
                {
                    NativeCloudConnection = new AzureNative.Security.Inputs.CspmMonitorAwsOfferingNativeCloudConnectionArgs
                    {
                        CloudRoleArn = "arn:aws:iam::00000000:role/ASCMonitor",
                    },
                    OfferingType = "CspmMonitorAws",
                },
            },
            ResourceGroupName = "exampleResourceGroup",
            SecurityConnectorName = "exampleSecurityConnectorName",
            Tags = null,
        });
    
    });
    
    package main
    
    import (
    	security "github.com/pulumi/pulumi-azure-native-sdk/security/v3"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := security.NewSecurityConnector(ctx, "securityConnector", &security.SecurityConnectorArgs{
    			EnvironmentData: &security.AwsEnvironmentDataArgs{
    				EnvironmentType: pulumi.String("AwsAccount"),
    				ScanInterval:    pulumi.Float64(4),
    			},
    			EnvironmentName:     pulumi.String(security.CloudNameAWS),
    			HierarchyIdentifier: pulumi.String("exampleHierarchyId"),
    			Location:            pulumi.String("Central US"),
    			Offerings: pulumi.Array{
    				security.CspmMonitorAwsOffering{
    					NativeCloudConnection: security.CspmMonitorAwsOfferingNativeCloudConnection{
    						CloudRoleArn: "arn:aws:iam::00000000:role/ASCMonitor",
    					},
    					OfferingType: "CspmMonitorAws",
    				},
    			},
    			ResourceGroupName:     pulumi.String("exampleResourceGroup"),
    			SecurityConnectorName: pulumi.String("exampleSecurityConnectorName"),
    			Tags:                  pulumi.StringMap{},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    pulumi {
      required_providers {
        azure-native = {
          source = "pulumi/azure-native"
        }
      }
    }
    
    resource "azure-native_security_securityconnector" "securityConnector" {
      environment_data = {
        "environmentType" = "AwsAccount"
        "scanInterval"    = 4
      }
      environment_name     = "AWS"
      hierarchy_identifier = "exampleHierarchyId"
      location             = "Central US"
      offerings = [{
        "nativeCloudConnection" = {
          "cloudRoleArn" = "arn:aws:iam::00000000:role/ASCMonitor"
        }
        "offeringType" = "CspmMonitorAws"
      }]
      resource_group_name     = "exampleResourceGroup"
      security_connector_name = "exampleSecurityConnectorName"
      tags                    = {}
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azurenative.security.SecurityConnector;
    import com.pulumi.azurenative.security.SecurityConnectorArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var securityConnector = new SecurityConnector("securityConnector", SecurityConnectorArgs.builder()
                .environmentData(AwsEnvironmentDataArgs.builder()
                    .environmentType("AwsAccount")
                    .scanInterval(4.0)
                    .build())
                .environmentName("AWS")
                .hierarchyIdentifier("exampleHierarchyId")
                .location("Central US")
                .offerings(CspmMonitorAwsOfferingArgs.builder()
                    .nativeCloudConnection(CspmMonitorAwsOfferingNativeCloudConnectionArgs.builder()
                        .cloudRoleArn("arn:aws:iam::00000000:role/ASCMonitor")
                        .build())
                    .offeringType("CspmMonitorAws")
                    .build())
                .resourceGroupName("exampleResourceGroup")
                .securityConnectorName("exampleSecurityConnectorName")
                .tags(Map.ofEntries(
                ))
                .build());
    
        }
    }
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const securityConnector = new azure_native.security.SecurityConnector("securityConnector", {
        environmentData: {
            environmentType: "AwsAccount",
            scanInterval: 4,
        },
        environmentName: azure_native.security.CloudName.AWS,
        hierarchyIdentifier: "exampleHierarchyId",
        location: "Central US",
        offerings: [{
            nativeCloudConnection: {
                cloudRoleArn: "arn:aws:iam::00000000:role/ASCMonitor",
            },
            offeringType: "CspmMonitorAws",
        }],
        resourceGroupName: "exampleResourceGroup",
        securityConnectorName: "exampleSecurityConnectorName",
        tags: {},
    });
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    security_connector = azure_native.security.SecurityConnector("securityConnector",
        environment_data={
            "environment_type": "AwsAccount",
            "scan_interval": float(4),
        },
        environment_name=azure_native.security.CloudName.AWS,
        hierarchy_identifier="exampleHierarchyId",
        location="Central US",
        offerings=[{
            "native_cloud_connection": {
                "cloud_role_arn": "arn:aws:iam::00000000:role/ASCMonitor",
            },
            "offering_type": "CspmMonitorAws",
        }],
        resource_group_name="exampleResourceGroup",
        security_connector_name="exampleSecurityConnectorName",
        tags={})
    
    resources:
      securityConnector:
        type: azure-native:security:SecurityConnector
        properties:
          environmentData:
            environmentType: AwsAccount
            scanInterval: 4
          environmentName: AWS
          hierarchyIdentifier: exampleHierarchyId
          location: Central US
          offerings:
            - nativeCloudConnection:
                cloudRoleArn: arn:aws:iam::00000000:role/ASCMonitor
              offeringType: CspmMonitorAws
          resourceGroupName: exampleResourceGroup
          securityConnectorName: exampleSecurityConnectorName
          tags: {}
    

    Create SecurityConnector Resource

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

    Constructor syntax

    new SecurityConnector(name: string, args: SecurityConnectorArgs, opts?: CustomResourceOptions);
    @overload
    def SecurityConnector(resource_name: str,
                          args: SecurityConnectorArgs,
                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def SecurityConnector(resource_name: str,
                          opts: Optional[ResourceOptions] = None,
                          resource_group_name: Optional[str] = None,
                          environment_data: Optional[Union[AwsEnvironmentDataArgs, AzureDevOpsScopeEnvironmentDataArgs, DockerHubEnvironmentDataArgs, GcpProjectEnvironmentDataArgs, GithubScopeEnvironmentDataArgs, GitlabScopeEnvironmentDataArgs, JFrogEnvironmentDataArgs]] = None,
                          environment_name: Optional[Union[str, CloudName]] = None,
                          hierarchy_identifier: Optional[str] = None,
                          kind: Optional[str] = None,
                          location: Optional[str] = None,
                          offerings: Optional[Sequence[Union[CspmMonitorAwsOfferingArgs, CspmMonitorAzureDevOpsOfferingArgs, CspmMonitorDockerHubOfferingArgs, CspmMonitorGcpOfferingArgs, CspmMonitorGitLabOfferingArgs, CspmMonitorGithubOfferingArgs, CspmMonitorJFrogOfferingArgs, DefenderCspmAwsOfferingArgs, DefenderCspmDockerHubOfferingArgs, DefenderCspmGcpOfferingArgs, DefenderCspmJFrogOfferingArgs, DefenderFoDatabasesAwsOfferingArgs, DefenderForContainersAwsOfferingArgs, DefenderForContainersDockerHubOfferingArgs, DefenderForContainersGcpOfferingArgs, DefenderForContainersJFrogOfferingArgs, DefenderForDatabasesGcpOfferingArgs, DefenderForServersAwsOfferingArgs, DefenderForServersGcpOfferingArgs]]] = None,
                          security_connector_name: Optional[str] = None,
                          tags: Optional[Mapping[str, str]] = None)
    func NewSecurityConnector(ctx *Context, name string, args SecurityConnectorArgs, opts ...ResourceOption) (*SecurityConnector, error)
    public SecurityConnector(string name, SecurityConnectorArgs args, CustomResourceOptions? opts = null)
    public SecurityConnector(String name, SecurityConnectorArgs args)
    public SecurityConnector(String name, SecurityConnectorArgs args, CustomResourceOptions options)
    
    type: azure-native:security:SecurityConnector
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "azure-native_security_security_connector" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args SecurityConnectorArgs
    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 SecurityConnectorArgs
    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 SecurityConnectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityConnectorArgs
    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 securityConnectorResource = new AzureNative.Security.SecurityConnector("securityConnectorResource", new()
    {
        ResourceGroupName = "string",
        EnvironmentData = new AzureNative.Security.Inputs.AwsEnvironmentDataArgs
        {
            EnvironmentType = "AwsAccount",
            OrganizationalData = new AzureNative.Security.Inputs.AwsOrganizationalDataMasterArgs
            {
                OrganizationMembershipType = "Organization",
                ExcludedAccountIds = new[]
                {
                    "string",
                },
                StacksetName = "string",
            },
            Regions = new[]
            {
                "string",
            },
            ScanInterval = 0,
        },
        EnvironmentName = "string",
        HierarchyIdentifier = "string",
        Kind = "string",
        Location = "string",
        Offerings = 
        {
            new AzureNative.Security.Inputs.CspmMonitorAwsOfferingArgs
            {
                OfferingType = "CspmMonitorAws",
                NativeCloudConnection = new AzureNative.Security.Inputs.CspmMonitorAwsOfferingNativeCloudConnectionArgs
                {
                    CloudRoleArn = "string",
                },
            },
        },
        SecurityConnectorName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := security.NewSecurityConnector(ctx, "securityConnectorResource", &security.SecurityConnectorArgs{
    	ResourceGroupName: pulumi.String("string"),
    	EnvironmentData: &security.AwsEnvironmentDataArgs{
    		EnvironmentType: pulumi.String("AwsAccount"),
    		OrganizationalData: &security.AwsOrganizationalDataMasterArgs{
    			OrganizationMembershipType: pulumi.String("Organization"),
    			ExcludedAccountIds: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			StacksetName: pulumi.String("string"),
    		},
    		Regions: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		ScanInterval: pulumi.Float64(0),
    	},
    	EnvironmentName:     pulumi.String("string"),
    	HierarchyIdentifier: pulumi.String("string"),
    	Kind:                pulumi.String("string"),
    	Location:            pulumi.String("string"),
    	Offerings: pulumi.Array{
    		&security.CspmMonitorAwsOfferingArgs{
    			OfferingType: pulumi.String("CspmMonitorAws"),
    			NativeCloudConnection: &security.CspmMonitorAwsOfferingNativeCloudConnectionArgs{
    				CloudRoleArn: pulumi.String("string"),
    			},
    		},
    	},
    	SecurityConnectorName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    resource "azure-native_security_security_connector" "securityConnectorResource" {
      lifecycle {
        create_before_destroy = true
      }
      resource_group_name = "string"
      environment_data = {
        environment_type = "AwsAccount"
        organizational_data = {
          organization_membership_type = "Organization"
          excluded_account_ids         = ["string"]
          stackset_name                = "string"
        }
        regions       = ["string"]
        scan_interval = 0
      }
      environment_name     = "string"
      hierarchy_identifier = "string"
      kind                 = "string"
      location             = "string"
      offerings = [{
        offering_type = "CspmMonitorAws"
        native_cloud_connection = {
          cloud_role_arn = "string"
        }
      }]
      security_connector_name = "string"
      tags = {
        "string" = "string"
      }
    }
    
    var securityConnectorResource = new SecurityConnector("securityConnectorResource", SecurityConnectorArgs.builder()
        .resourceGroupName("string")
        .environmentData(AwsEnvironmentDataArgs.builder()
            .environmentType("AwsAccount")
            .organizationalData(AwsOrganizationalDataMasterArgs.builder()
                .organizationMembershipType("Organization")
                .excludedAccountIds("string")
                .stacksetName("string")
                .build())
            .regions("string")
            .scanInterval(0.0)
            .build())
        .environmentName("string")
        .hierarchyIdentifier("string")
        .kind("string")
        .location("string")
        .offerings(CspmMonitorAwsOfferingArgs.builder()
            .offeringType("CspmMonitorAws")
            .nativeCloudConnection(CspmMonitorAwsOfferingNativeCloudConnectionArgs.builder()
                .cloudRoleArn("string")
                .build())
            .build())
        .securityConnectorName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    security_connector_resource = azure_native.security.SecurityConnector("securityConnectorResource",
        resource_group_name="string",
        environment_data={
            "environment_type": "AwsAccount",
            "organizational_data": {
                "organization_membership_type": "Organization",
                "excluded_account_ids": ["string"],
                "stackset_name": "string",
            },
            "regions": ["string"],
            "scan_interval": float(0),
        },
        environment_name="string",
        hierarchy_identifier="string",
        kind="string",
        location="string",
        offerings=[{
            "offering_type": "CspmMonitorAws",
            "native_cloud_connection": {
                "cloud_role_arn": "string",
            },
        }],
        security_connector_name="string",
        tags={
            "string": "string",
        })
    
    const securityConnectorResource = new azure_native.security.SecurityConnector("securityConnectorResource", {
        resourceGroupName: "string",
        environmentData: {
            environmentType: "AwsAccount",
            organizationalData: {
                organizationMembershipType: "Organization",
                excludedAccountIds: ["string"],
                stacksetName: "string",
            },
            regions: ["string"],
            scanInterval: 0,
        },
        environmentName: "string",
        hierarchyIdentifier: "string",
        kind: "string",
        location: "string",
        offerings: [{
            offeringType: "CspmMonitorAws",
            nativeCloudConnection: {
                cloudRoleArn: "string",
            },
        }],
        securityConnectorName: "string",
        tags: {
            string: "string",
        },
    });
    
    type: azure-native:security:SecurityConnector
    properties:
        environmentData:
            environmentType: AwsAccount
            organizationalData:
                excludedAccountIds:
                    - string
                organizationMembershipType: Organization
                stacksetName: string
            regions:
                - string
            scanInterval: 0
        environmentName: string
        hierarchyIdentifier: string
        kind: string
        location: string
        offerings:
            - nativeCloudConnection:
                cloudRoleArn: string
              offeringType: CspmMonitorAws
        resourceGroupName: string
        securityConnectorName: string
        tags:
            string: string
    

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

    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    EnvironmentData Pulumi.AzureNative.Security.Inputs.AwsEnvironmentData | Pulumi.AzureNative.Security.Inputs.AzureDevOpsScopeEnvironmentData | Pulumi.AzureNative.Security.Inputs.DockerHubEnvironmentData | Pulumi.AzureNative.Security.Inputs.GcpProjectEnvironmentData | Pulumi.AzureNative.Security.Inputs.GithubScopeEnvironmentData | Pulumi.AzureNative.Security.Inputs.GitlabScopeEnvironmentData | Pulumi.AzureNative.Security.Inputs.JFrogEnvironmentData
    The security connector environment data.
    EnvironmentName string | Pulumi.AzureNative.Security.CloudName
    The multi cloud resource's cloud name.
    HierarchyIdentifier string
    The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
    Kind string
    Kind of the resource
    Location string
    The geo-location where the resource lives
    Offerings List<object>
    A collection of offerings for the security connector.
    SecurityConnectorName string
    The security connector name.
    Tags Dictionary<string, string>
    Resource tags.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    EnvironmentData AwsEnvironmentDataArgs | AzureDevOpsScopeEnvironmentDataArgs | DockerHubEnvironmentDataArgs | GcpProjectEnvironmentDataArgs | GithubScopeEnvironmentDataArgs | GitlabScopeEnvironmentDataArgs | JFrogEnvironmentDataArgs
    The security connector environment data.
    EnvironmentName string | CloudName
    The multi cloud resource's cloud name.
    HierarchyIdentifier string
    The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
    Kind string
    Kind of the resource
    Location string
    The geo-location where the resource lives
    Offerings []interface{}
    A collection of offerings for the security connector.
    SecurityConnectorName string
    The security connector name.
    Tags map[string]string
    Resource tags.
    resource_group_name string
    The name of the resource group. The name is case insensitive.
    environment_data object | object | object | object | object | object | object
    The security connector environment data.
    environment_name string | "Azure" | "AWS" | "GCP" | "Github" | "AzureDevOps" | "GitLab" | "DockerHub" | "JFrog"
    The multi cloud resource's cloud name.
    hierarchy_identifier string
    The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
    kind string
    Kind of the resource
    location string
    The geo-location where the resource lives
    offerings list(object | object | object | object | object | object | object | object | object | object | object | object | object | object | object | object | object | object | object)
    A collection of offerings for the security connector.
    security_connector_name string
    The security connector name.
    tags map(string)
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    environmentData AwsEnvironmentData | AzureDevOpsScopeEnvironmentData | DockerHubEnvironmentData | GcpProjectEnvironmentData | GithubScopeEnvironmentData | GitlabScopeEnvironmentData | JFrogEnvironmentData
    The security connector environment data.
    environmentName String | CloudName
    The multi cloud resource's cloud name.
    hierarchyIdentifier String
    The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
    kind String
    Kind of the resource
    location String
    The geo-location where the resource lives
    offerings List<Object>
    A collection of offerings for the security connector.
    securityConnectorName String
    The security connector name.
    tags Map<String,String>
    Resource tags.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    environmentData AwsEnvironmentData | AzureDevOpsScopeEnvironmentData | DockerHubEnvironmentData | GcpProjectEnvironmentData | GithubScopeEnvironmentData | GitlabScopeEnvironmentData | JFrogEnvironmentData
    The security connector environment data.
    environmentName string | CloudName
    The multi cloud resource's cloud name.
    hierarchyIdentifier string
    The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
    kind string
    Kind of the resource
    location string
    The geo-location where the resource lives
    offerings (CspmMonitorAwsOffering | CspmMonitorAzureDevOpsOfferingArgs | CspmMonitorDockerHubOfferingArgs | CspmMonitorGcpOfferingArgs | CspmMonitorGitLabOfferingArgs | CspmMonitorGithubOfferingArgs | CspmMonitorJFrogOfferingArgs | DefenderCspmAwsOfferingArgs | DefenderCspmDockerHubOfferingArgs | DefenderCspmGcpOfferingArgs | DefenderCspmJFrogOfferingArgs | DefenderFoDatabasesAwsOfferingArgs | DefenderForContainersAwsOfferingArgs | DefenderForContainersDockerHubOfferingArgs | DefenderForContainersGcpOfferingArgs | DefenderForContainersJFrogOfferingArgs | DefenderForDatabasesGcpOfferingArgs | DefenderForServersAwsOfferingArgs | DefenderForServersGcpOfferingArgs)[]
    A collection of offerings for the security connector.
    securityConnectorName string
    The security connector name.
    tags {[key: string]: string}
    Resource tags.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    environment_data AwsEnvironmentDataArgs | AzureDevOpsScopeEnvironmentDataArgs | DockerHubEnvironmentDataArgs | GcpProjectEnvironmentDataArgs | GithubScopeEnvironmentDataArgs | GitlabScopeEnvironmentDataArgs | JFrogEnvironmentDataArgs
    The security connector environment data.
    environment_name str | CloudName
    The multi cloud resource's cloud name.
    hierarchy_identifier str
    The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
    kind str
    Kind of the resource
    location str
    The geo-location where the resource lives
    offerings Sequence[Union[CspmMonitorAwsOfferingArgs, CspmMonitorAzureDevOpsOfferingArgs, CspmMonitorDockerHubOfferingArgs, CspmMonitorGcpOfferingArgs, CspmMonitorGitLabOfferingArgs, CspmMonitorGithubOfferingArgs, CspmMonitorJFrogOfferingArgs, DefenderCspmAwsOfferingArgs, DefenderCspmDockerHubOfferingArgs, DefenderCspmGcpOfferingArgs, DefenderCspmJFrogOfferingArgs, DefenderFoDatabasesAwsOfferingArgs, DefenderForContainersAwsOfferingArgs, DefenderForContainersDockerHubOfferingArgs, DefenderForContainersGcpOfferingArgs, DefenderForContainersJFrogOfferingArgs, DefenderForDatabasesGcpOfferingArgs, DefenderForServersAwsOfferingArgs, DefenderForServersGcpOfferingArgs]]
    A collection of offerings for the security connector.
    security_connector_name str
    The security connector name.
    tags Mapping[str, str]
    Resource tags.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    environmentData Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    The security connector environment data.
    environmentName String | "Azure" | "AWS" | "GCP" | "Github" | "AzureDevOps" | "GitLab" | "DockerHub" | "JFrog"
    The multi cloud resource's cloud name.
    hierarchyIdentifier String
    The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
    kind String
    Kind of the resource
    location String
    The geo-location where the resource lives
    offerings List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map>
    A collection of offerings for the security connector.
    securityConnectorName String
    The security connector name.
    tags Map<String>
    Resource tags.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SecurityConnector resource produces the following output properties:

    AzureApiVersion string
    The Azure API version of the resource.
    HierarchyIdentifierTrialEndDate string
    The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.Security.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Etag string
    Entity tag is used for comparing two or more entities from the same requested resource.
    AzureApiVersion string
    The Azure API version of the resource.
    HierarchyIdentifierTrialEndDate string
    The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Etag string
    Entity tag is used for comparing two or more entities from the same requested resource.
    azure_api_version string
    The Azure API version of the resource.
    hierarchy_identifier_trial_end_date string
    The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    system_data object
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag string
    Entity tag is used for comparing two or more entities from the same requested resource.
    azureApiVersion String
    The Azure API version of the resource.
    hierarchyIdentifierTrialEndDate String
    The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag String
    Entity tag is used for comparing two or more entities from the same requested resource.
    azureApiVersion string
    The Azure API version of the resource.
    hierarchyIdentifierTrialEndDate string
    The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag string
    Entity tag is used for comparing two or more entities from the same requested resource.
    azure_api_version str
    The Azure API version of the resource.
    hierarchy_identifier_trial_end_date str
    The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag str
    Entity tag is used for comparing two or more entities from the same requested resource.
    azureApiVersion String
    The Azure API version of the resource.
    hierarchyIdentifierTrialEndDate String
    The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag String
    Entity tag is used for comparing two or more entities from the same requested resource.

    Supporting Types

    AccessTokenAuthentication, AccessTokenAuthenticationArgs

    The environment authentication details
    AccessToken string
    The access token that will be used while authenticating with the onboarded environment
    Username string
    The user name that will be used while authenticating with the onboarded environment
    AccessToken string
    The access token that will be used while authenticating with the onboarded environment
    Username string
    The user name that will be used while authenticating with the onboarded environment
    access_token string
    The access token that will be used while authenticating with the onboarded environment
    username string
    The user name that will be used while authenticating with the onboarded environment
    accessToken String
    The access token that will be used while authenticating with the onboarded environment
    username String
    The user name that will be used while authenticating with the onboarded environment
    accessToken string
    The access token that will be used while authenticating with the onboarded environment
    username string
    The user name that will be used while authenticating with the onboarded environment
    access_token str
    The access token that will be used while authenticating with the onboarded environment
    username str
    The user name that will be used while authenticating with the onboarded environment
    accessToken String
    The access token that will be used while authenticating with the onboarded environment
    username String
    The user name that will be used while authenticating with the onboarded environment

    AccessTokenAuthenticationResponse, AccessTokenAuthenticationResponseArgs

    The environment authentication details
    AccessToken string
    The access token that will be used while authenticating with the onboarded environment
    Username string
    The user name that will be used while authenticating with the onboarded environment
    AccessToken string
    The access token that will be used while authenticating with the onboarded environment
    Username string
    The user name that will be used while authenticating with the onboarded environment
    access_token string
    The access token that will be used while authenticating with the onboarded environment
    username string
    The user name that will be used while authenticating with the onboarded environment
    accessToken String
    The access token that will be used while authenticating with the onboarded environment
    username String
    The user name that will be used while authenticating with the onboarded environment
    accessToken string
    The access token that will be used while authenticating with the onboarded environment
    username string
    The user name that will be used while authenticating with the onboarded environment
    access_token str
    The access token that will be used while authenticating with the onboarded environment
    username str
    The user name that will be used while authenticating with the onboarded environment
    accessToken String
    The access token that will be used while authenticating with the onboarded environment
    username String
    The user name that will be used while authenticating with the onboarded environment

    ArcAutoProvisioningConfiguration, ArcAutoProvisioningConfigurationArgs

    Configuration for servers Arc auto provisioning for a given environment
    PrivateLinkScope string
    Optional Arc private link scope resource id to link the Arc agent
    Proxy string
    Optional HTTP proxy endpoint to use for the Arc agent
    PrivateLinkScope string
    Optional Arc private link scope resource id to link the Arc agent
    Proxy string
    Optional HTTP proxy endpoint to use for the Arc agent
    private_link_scope string
    Optional Arc private link scope resource id to link the Arc agent
    proxy string
    Optional HTTP proxy endpoint to use for the Arc agent
    privateLinkScope String
    Optional Arc private link scope resource id to link the Arc agent
    proxy String
    Optional HTTP proxy endpoint to use for the Arc agent
    privateLinkScope string
    Optional Arc private link scope resource id to link the Arc agent
    proxy string
    Optional HTTP proxy endpoint to use for the Arc agent
    private_link_scope str
    Optional Arc private link scope resource id to link the Arc agent
    proxy str
    Optional HTTP proxy endpoint to use for the Arc agent
    privateLinkScope String
    Optional Arc private link scope resource id to link the Arc agent
    proxy String
    Optional HTTP proxy endpoint to use for the Arc agent

    ArcAutoProvisioningConfigurationResponse, ArcAutoProvisioningConfigurationResponseArgs

    Configuration for servers Arc auto provisioning for a given environment
    PrivateLinkScope string
    Optional Arc private link scope resource id to link the Arc agent
    Proxy string
    Optional HTTP proxy endpoint to use for the Arc agent
    PrivateLinkScope string
    Optional Arc private link scope resource id to link the Arc agent
    Proxy string
    Optional HTTP proxy endpoint to use for the Arc agent
    private_link_scope string
    Optional Arc private link scope resource id to link the Arc agent
    proxy string
    Optional HTTP proxy endpoint to use for the Arc agent
    privateLinkScope String
    Optional Arc private link scope resource id to link the Arc agent
    proxy String
    Optional HTTP proxy endpoint to use for the Arc agent
    privateLinkScope string
    Optional Arc private link scope resource id to link the Arc agent
    proxy string
    Optional HTTP proxy endpoint to use for the Arc agent
    private_link_scope str
    Optional Arc private link scope resource id to link the Arc agent
    proxy str
    Optional HTTP proxy endpoint to use for the Arc agent
    privateLinkScope String
    Optional Arc private link scope resource id to link the Arc agent
    proxy String
    Optional HTTP proxy endpoint to use for the Arc agent

    AwsEnvironmentData, AwsEnvironmentDataArgs

    The AWS connector environment data
    OrganizationalData Pulumi.AzureNative.Security.Inputs.AwsOrganizationalDataMaster | Pulumi.AzureNative.Security.Inputs.AwsOrganizationalDataMember
    The AWS account's organizational data
    Regions List<string>
    list of regions to scan
    ScanInterval double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    OrganizationalData AwsOrganizationalDataMaster | AwsOrganizationalDataMember
    The AWS account's organizational data
    Regions []string
    list of regions to scan
    ScanInterval float64
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizational_data object | object
    The AWS account's organizational data
    regions list(string)
    list of regions to scan
    scan_interval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizationalData AwsOrganizationalDataMaster | AwsOrganizationalDataMember
    The AWS account's organizational data
    regions List<String>
    list of regions to scan
    scanInterval Double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizationalData AwsOrganizationalDataMaster | AwsOrganizationalDataMember
    The AWS account's organizational data
    regions string[]
    list of regions to scan
    scanInterval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizational_data AwsOrganizationalDataMaster | AwsOrganizationalDataMember
    The AWS account's organizational data
    regions Sequence[str]
    list of regions to scan
    scan_interval float
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizationalData Property Map | Property Map
    The AWS account's organizational data
    regions List<String>
    list of regions to scan
    scanInterval Number
    Scan interval in hours (value should be between 1-hour to 24-hours)

    AwsEnvironmentDataResponse, AwsEnvironmentDataResponseArgs

    The AWS connector environment data
    AccountName string
    The AWS account name
    OrganizationalData Pulumi.AzureNative.Security.Inputs.AwsOrganizationalDataMasterResponse | Pulumi.AzureNative.Security.Inputs.AwsOrganizationalDataMemberResponse
    The AWS account's organizational data
    Regions List<string>
    list of regions to scan
    ScanInterval double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    AccountName string
    The AWS account name
    OrganizationalData AwsOrganizationalDataMasterResponse | AwsOrganizationalDataMemberResponse
    The AWS account's organizational data
    Regions []string
    list of regions to scan
    ScanInterval float64
    Scan interval in hours (value should be between 1-hour to 24-hours)
    account_name string
    The AWS account name
    organizational_data object | object
    The AWS account's organizational data
    regions list(string)
    list of regions to scan
    scan_interval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    accountName String
    The AWS account name
    organizationalData AwsOrganizationalDataMasterResponse | AwsOrganizationalDataMemberResponse
    The AWS account's organizational data
    regions List<String>
    list of regions to scan
    scanInterval Double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    accountName string
    The AWS account name
    organizationalData AwsOrganizationalDataMasterResponse | AwsOrganizationalDataMemberResponse
    The AWS account's organizational data
    regions string[]
    list of regions to scan
    scanInterval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    account_name str
    The AWS account name
    organizational_data AwsOrganizationalDataMasterResponse | AwsOrganizationalDataMemberResponse
    The AWS account's organizational data
    regions Sequence[str]
    list of regions to scan
    scan_interval float
    Scan interval in hours (value should be between 1-hour to 24-hours)
    accountName String
    The AWS account name
    organizationalData Property Map | Property Map
    The AWS account's organizational data
    regions List<String>
    list of regions to scan
    scanInterval Number
    Scan interval in hours (value should be between 1-hour to 24-hours)

    AwsOrganizationalDataMaster, AwsOrganizationalDataMasterArgs

    The AWS organization data for the master account
    ExcludedAccountIds List<string>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    StacksetName string
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    ExcludedAccountIds []string
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    StacksetName string
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excluded_account_ids list(string)
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stackset_name string
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excludedAccountIds List<String>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stacksetName String
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excludedAccountIds string[]
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stacksetName string
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excluded_account_ids Sequence[str]
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stackset_name str
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excludedAccountIds List<String>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stacksetName String
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset

    AwsOrganizationalDataMasterResponse, AwsOrganizationalDataMasterResponseArgs

    The AWS organization data for the master account
    ExcludedAccountIds List<string>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    StacksetName string
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    ExcludedAccountIds []string
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    StacksetName string
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excluded_account_ids list(string)
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stackset_name string
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excludedAccountIds List<String>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stacksetName String
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excludedAccountIds string[]
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stacksetName string
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excluded_account_ids Sequence[str]
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stackset_name str
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
    excludedAccountIds List<String>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    stacksetName String
    If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset

    AwsOrganizationalDataMember, AwsOrganizationalDataMemberArgs

    The AWS organization data for the member account
    ParentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    ParentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parent_hierarchy_id string
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parentHierarchyId String
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parent_hierarchy_id str
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parentHierarchyId String
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent

    AwsOrganizationalDataMemberResponse, AwsOrganizationalDataMemberResponseArgs

    The AWS organization data for the member account
    ParentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    ParentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parent_hierarchy_id string
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parentHierarchyId String
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parent_hierarchy_id str
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
    parentHierarchyId String
    If the multi cloud account is not of membership type organization, this will be the ID of the account's parent

    AzureDevOpsScopeEnvironmentData, AzureDevOpsScopeEnvironmentDataArgs

    The AzureDevOps scope connector's environment data

    AzureDevOpsScopeEnvironmentDataResponse, AzureDevOpsScopeEnvironmentDataResponseArgs

    The AzureDevOps scope connector's environment data

    CloudName, CloudNameArgs

    Azure
    Azure Azure
    AWS
    AWS AWS
    GCP
    GCP GCP
    Github
    Github Github
    AzureDevOps
    AzureDevOps AzureDevOps
    GitLab
    GitLab GitLab
    DockerHub
    DockerHub DockerHub
    JFrog
    JFrog JFrog
    CloudNameAzure
    Azure Azure
    CloudNameAWS
    AWS AWS
    CloudNameGCP
    GCP GCP
    CloudNameGithub
    Github Github
    CloudNameAzureDevOps
    AzureDevOps AzureDevOps
    CloudNameGitLab
    GitLab GitLab
    CloudNameDockerHub
    DockerHub DockerHub
    CloudNameJFrog
    JFrog JFrog
    "Azure"
    Azure Azure
    "AWS"
    AWS AWS
    "GCP"
    GCP GCP
    "Github"
    Github Github
    "AzureDevOps"
    AzureDevOps AzureDevOps
    "GitLab"
    GitLab GitLab
    "DockerHub"
    DockerHub DockerHub
    "JFrog"
    JFrog JFrog
    Azure
    Azure Azure
    AWS
    AWS AWS
    GCP
    GCP GCP
    Github
    Github Github
    AzureDevOps
    AzureDevOps AzureDevOps
    GitLab
    GitLab GitLab
    DockerHub
    DockerHub DockerHub
    JFrog
    JFrog JFrog
    Azure
    Azure Azure
    AWS
    AWS AWS
    GCP
    GCP GCP
    Github
    Github Github
    AzureDevOps
    AzureDevOps AzureDevOps
    GitLab
    GitLab GitLab
    DockerHub
    DockerHub DockerHub
    JFrog
    JFrog JFrog
    AZURE
    Azure Azure
    AWS
    AWS AWS
    GCP
    GCP GCP
    GITHUB
    Github Github
    AZURE_DEV_OPS
    AzureDevOps AzureDevOps
    GIT_LAB
    GitLab GitLab
    DOCKER_HUB
    DockerHub DockerHub
    J_FROG
    JFrog JFrog
    "Azure"
    Azure Azure
    "AWS"
    AWS AWS
    "GCP"
    GCP GCP
    "Github"
    Github Github
    "AzureDevOps"
    AzureDevOps AzureDevOps
    "GitLab"
    GitLab GitLab
    "DockerHub"
    DockerHub DockerHub
    "JFrog"
    JFrog JFrog

    CspmMonitorAwsOffering, CspmMonitorAwsOfferingArgs

    The CSPM monitoring for AWS offering
    native_cloud_connection object
    The native cloud connection configuration
    nativeCloudConnection Property Map
    The native cloud connection configuration

    CspmMonitorAwsOfferingNativeCloudConnection, CspmMonitorAwsOfferingNativeCloudConnectionArgs

    The native cloud connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    cloudRoleArn String
    The cloud role ARN in AWS for this feature

    CspmMonitorAwsOfferingNativeCloudConnectionResponse, CspmMonitorAwsOfferingNativeCloudConnectionResponseArgs

    The native cloud connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    cloudRoleArn String
    The cloud role ARN in AWS for this feature

    CspmMonitorAwsOfferingResponse, CspmMonitorAwsOfferingResponseArgs

    The CSPM monitoring for AWS offering
    Description string
    The offering description.
    NativeCloudConnection CspmMonitorAwsOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    description string
    The offering description.
    native_cloud_connection object
    The native cloud connection configuration
    description String
    The offering description.
    nativeCloudConnection CspmMonitorAwsOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    description string
    The offering description.
    nativeCloudConnection CspmMonitorAwsOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    description str
    The offering description.
    native_cloud_connection CspmMonitorAwsOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    description String
    The offering description.
    nativeCloudConnection Property Map
    The native cloud connection configuration

    CspmMonitorAzureDevOpsOffering, CspmMonitorAzureDevOpsOfferingArgs

    The CSPM monitoring for AzureDevOps offering

    CspmMonitorAzureDevOpsOfferingResponse, CspmMonitorAzureDevOpsOfferingResponseArgs

    The CSPM monitoring for AzureDevOps offering
    Description string
    The offering description.
    Description string
    The offering description.
    description string
    The offering description.
    description String
    The offering description.
    description string
    The offering description.
    description str
    The offering description.
    description String
    The offering description.

    CspmMonitorDockerHubOffering, CspmMonitorDockerHubOfferingArgs

    The CSPM (Cloud security posture management) monitoring for Docker Hub offering

    CspmMonitorDockerHubOfferingResponse, CspmMonitorDockerHubOfferingResponseArgs

    The CSPM (Cloud security posture management) monitoring for Docker Hub offering
    Description string
    The offering description.
    Description string
    The offering description.
    description string
    The offering description.
    description String
    The offering description.
    description string
    The offering description.
    description str
    The offering description.
    description String
    The offering description.

    CspmMonitorGcpOffering, CspmMonitorGcpOfferingArgs

    The CSPM monitoring for GCP offering
    native_cloud_connection object
    The native cloud connection configuration
    nativeCloudConnection Property Map
    The native cloud connection configuration

    CspmMonitorGcpOfferingNativeCloudConnection, CspmMonitorGcpOfferingNativeCloudConnectionArgs

    The native cloud connection configuration
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for the offering
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for the offering
    service_account_email_address string
    The service account email address in GCP for this offering
    workload_identity_provider_id string
    The GCP workload identity provider id for the offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for the offering
    serviceAccountEmailAddress string
    The service account email address in GCP for this offering
    workloadIdentityProviderId string
    The GCP workload identity provider id for the offering
    service_account_email_address str
    The service account email address in GCP for this offering
    workload_identity_provider_id str
    The GCP workload identity provider id for the offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for the offering

    CspmMonitorGcpOfferingNativeCloudConnectionResponse, CspmMonitorGcpOfferingNativeCloudConnectionResponseArgs

    The native cloud connection configuration
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for the offering
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for the offering
    service_account_email_address string
    The service account email address in GCP for this offering
    workload_identity_provider_id string
    The GCP workload identity provider id for the offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for the offering
    serviceAccountEmailAddress string
    The service account email address in GCP for this offering
    workloadIdentityProviderId string
    The GCP workload identity provider id for the offering
    service_account_email_address str
    The service account email address in GCP for this offering
    workload_identity_provider_id str
    The GCP workload identity provider id for the offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for the offering

    CspmMonitorGcpOfferingResponse, CspmMonitorGcpOfferingResponseArgs

    The CSPM monitoring for GCP offering
    Description string
    The offering description.
    NativeCloudConnection CspmMonitorGcpOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    description string
    The offering description.
    native_cloud_connection object
    The native cloud connection configuration
    description String
    The offering description.
    nativeCloudConnection CspmMonitorGcpOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    description string
    The offering description.
    nativeCloudConnection CspmMonitorGcpOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    description str
    The offering description.
    native_cloud_connection CspmMonitorGcpOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    description String
    The offering description.
    nativeCloudConnection Property Map
    The native cloud connection configuration

    CspmMonitorGitLabOffering, CspmMonitorGitLabOfferingArgs

    The CSPM (Cloud security posture management) monitoring for gitlab offering

    CspmMonitorGitLabOfferingResponse, CspmMonitorGitLabOfferingResponseArgs

    The CSPM (Cloud security posture management) monitoring for gitlab offering
    Description string
    The offering description.
    Description string
    The offering description.
    description string
    The offering description.
    description String
    The offering description.
    description string
    The offering description.
    description str
    The offering description.
    description String
    The offering description.

    CspmMonitorGithubOffering, CspmMonitorGithubOfferingArgs

    The CSPM monitoring for github offering

    CspmMonitorGithubOfferingResponse, CspmMonitorGithubOfferingResponseArgs

    The CSPM monitoring for github offering
    Description string
    The offering description.
    Description string
    The offering description.
    description string
    The offering description.
    description String
    The offering description.
    description string
    The offering description.
    description str
    The offering description.
    description String
    The offering description.

    CspmMonitorJFrogOffering, CspmMonitorJFrogOfferingArgs

    The CSPM (Cloud security posture management) monitoring for JFrog Artifactory offering

    CspmMonitorJFrogOfferingResponse, CspmMonitorJFrogOfferingResponseArgs

    The CSPM (Cloud security posture management) monitoring for JFrog Artifactory offering
    Description string
    The offering description.
    Description string
    The offering description.
    description string
    The offering description.
    description String
    The offering description.
    description string
    The offering description.
    description str
    The offering description.
    description String
    The offering description.

    DefenderCspmAwsOffering, DefenderCspmAwsOfferingArgs

    The CSPM P1 for AWS offering
    Ciem Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingCiem
    Defenders CSPM Permissions Management offering configurations
    DataSensitivityDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    DatabasesDspm Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingDatabasesDspm
    The databases DSPM configuration
    MdcContainersAgentlessDiscoveryK8S Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingVmScanners
    The Microsoft Defender for CSPM offering VM scanning configuration
    Ciem DefenderCspmAwsOfferingCiem
    Defenders CSPM Permissions Management offering configurations
    DataSensitivityDiscovery DefenderCspmAwsOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    DatabasesDspm DefenderCspmAwsOfferingDatabasesDspm
    The databases DSPM configuration
    MdcContainersAgentlessDiscoveryK8S DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment DefenderCspmAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    VmScanners DefenderCspmAwsOfferingVmScanners
    The Microsoft Defender for CSPM offering VM scanning configuration
    ciem object
    Defenders CSPM Permissions Management offering configurations
    data_sensitivity_discovery object
    The Microsoft Defender Data Sensitivity discovery configuration
    databases_dspm object
    The databases DSPM configuration
    mdc_containers_agentless_discovery_k8_s object
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment object
    The Microsoft Defender container image assessment configuration
    vm_scanners object
    The Microsoft Defender for CSPM offering VM scanning configuration
    ciem DefenderCspmAwsOfferingCiem
    Defenders CSPM Permissions Management offering configurations
    dataSensitivityDiscovery DefenderCspmAwsOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    databasesDspm DefenderCspmAwsOfferingDatabasesDspm
    The databases DSPM configuration
    mdcContainersAgentlessDiscoveryK8S DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderCspmAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderCspmAwsOfferingVmScanners
    The Microsoft Defender for CSPM offering VM scanning configuration
    ciem DefenderCspmAwsOfferingCiem
    Defenders CSPM Permissions Management offering configurations
    dataSensitivityDiscovery DefenderCspmAwsOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    databasesDspm DefenderCspmAwsOfferingDatabasesDspm
    The databases DSPM configuration
    mdcContainersAgentlessDiscoveryK8S DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderCspmAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderCspmAwsOfferingVmScanners
    The Microsoft Defender for CSPM offering VM scanning configuration
    ciem DefenderCspmAwsOfferingCiem
    Defenders CSPM Permissions Management offering configurations
    data_sensitivity_discovery DefenderCspmAwsOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    databases_dspm DefenderCspmAwsOfferingDatabasesDspm
    The databases DSPM configuration
    mdc_containers_agentless_discovery_k8_s DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment DefenderCspmAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vm_scanners DefenderCspmAwsOfferingVmScanners
    The Microsoft Defender for CSPM offering VM scanning configuration
    ciem Property Map
    Defenders CSPM Permissions Management offering configurations
    dataSensitivityDiscovery Property Map
    The Microsoft Defender Data Sensitivity discovery configuration
    databasesDspm Property Map
    The databases DSPM configuration
    mdcContainersAgentlessDiscoveryK8S Property Map
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment Property Map
    The Microsoft Defender container image assessment configuration
    vmScanners Property Map
    The Microsoft Defender for CSPM offering VM scanning configuration

    DefenderCspmAwsOfferingCiem, DefenderCspmAwsOfferingCiemArgs

    Defenders CSPM Permissions Management offering configurations
    CiemDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingCiemCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    CiemOidc Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingCiemCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    CiemDiscovery DefenderCspmAwsOfferingCiemCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    CiemOidc DefenderCspmAwsOfferingCiemCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciem_discovery object
    Defender CSPM Permissions Management discovery configuration
    ciem_oidc object
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery DefenderCspmAwsOfferingCiemCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    ciemOidc DefenderCspmAwsOfferingCiemCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery DefenderCspmAwsOfferingCiemCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    ciemOidc DefenderCspmAwsOfferingCiemCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciem_discovery DefenderCspmAwsOfferingCiemCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    ciem_oidc DefenderCspmAwsOfferingCiemCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery Property Map
    Defender CSPM Permissions Management discovery configuration
    ciemOidc Property Map
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations

    DefenderCspmAwsOfferingCiemCiemDiscovery, DefenderCspmAwsOfferingCiemCiemDiscoveryArgs

    Defender CSPM Permissions Management discovery configuration
    CloudRoleArn string
    The cloud role ARN in AWS for Permissions Management discovery
    CloudRoleArn string
    The cloud role ARN in AWS for Permissions Management discovery
    cloud_role_arn string
    The cloud role ARN in AWS for Permissions Management discovery
    cloudRoleArn String
    The cloud role ARN in AWS for Permissions Management discovery
    cloudRoleArn string
    The cloud role ARN in AWS for Permissions Management discovery
    cloud_role_arn str
    The cloud role ARN in AWS for Permissions Management discovery
    cloudRoleArn String
    The cloud role ARN in AWS for Permissions Management discovery

    DefenderCspmAwsOfferingCiemCiemDiscoveryResponse, DefenderCspmAwsOfferingCiemCiemDiscoveryResponseArgs

    Defender CSPM Permissions Management discovery configuration
    CloudRoleArn string
    The cloud role ARN in AWS for Permissions Management discovery
    CloudRoleArn string
    The cloud role ARN in AWS for Permissions Management discovery
    cloud_role_arn string
    The cloud role ARN in AWS for Permissions Management discovery
    cloudRoleArn String
    The cloud role ARN in AWS for Permissions Management discovery
    cloudRoleArn string
    The cloud role ARN in AWS for Permissions Management discovery
    cloud_role_arn str
    The cloud role ARN in AWS for Permissions Management discovery
    cloudRoleArn String
    The cloud role ARN in AWS for Permissions Management discovery

    DefenderCspmAwsOfferingCiemCiemOidc, DefenderCspmAwsOfferingCiemCiemOidcArgs

    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    AzureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against AWS
    CloudRoleArn string
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    AzureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against AWS
    CloudRoleArn string
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azure_active_directory_app_name string
    the azure active directory app name used of authenticating against AWS
    cloud_role_arn string
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azureActiveDirectoryAppName String
    the azure active directory app name used of authenticating against AWS
    cloudRoleArn String
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against AWS
    cloudRoleArn string
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azure_active_directory_app_name str
    the azure active directory app name used of authenticating against AWS
    cloud_role_arn str
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azureActiveDirectoryAppName String
    the azure active directory app name used of authenticating against AWS
    cloudRoleArn String
    The cloud role ARN in AWS for Permissions Management used for oidc connection

    DefenderCspmAwsOfferingCiemCiemOidcResponse, DefenderCspmAwsOfferingCiemCiemOidcResponseArgs

    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    AzureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against AWS
    CloudRoleArn string
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    AzureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against AWS
    CloudRoleArn string
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azure_active_directory_app_name string
    the azure active directory app name used of authenticating against AWS
    cloud_role_arn string
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azureActiveDirectoryAppName String
    the azure active directory app name used of authenticating against AWS
    cloudRoleArn String
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against AWS
    cloudRoleArn string
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azure_active_directory_app_name str
    the azure active directory app name used of authenticating against AWS
    cloud_role_arn str
    The cloud role ARN in AWS for Permissions Management used for oidc connection
    azureActiveDirectoryAppName String
    the azure active directory app name used of authenticating against AWS
    cloudRoleArn String
    The cloud role ARN in AWS for Permissions Management used for oidc connection

    DefenderCspmAwsOfferingCiemResponse, DefenderCspmAwsOfferingCiemResponseArgs

    Defenders CSPM Permissions Management offering configurations
    CiemDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingCiemCiemDiscoveryResponse
    Defender CSPM Permissions Management discovery configuration
    CiemOidc Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingCiemCiemOidcResponse
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    CiemDiscovery DefenderCspmAwsOfferingCiemCiemDiscoveryResponse
    Defender CSPM Permissions Management discovery configuration
    CiemOidc DefenderCspmAwsOfferingCiemCiemOidcResponse
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciem_discovery object
    Defender CSPM Permissions Management discovery configuration
    ciem_oidc object
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery DefenderCspmAwsOfferingCiemCiemDiscoveryResponse
    Defender CSPM Permissions Management discovery configuration
    ciemOidc DefenderCspmAwsOfferingCiemCiemOidcResponse
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery DefenderCspmAwsOfferingCiemCiemDiscoveryResponse
    Defender CSPM Permissions Management discovery configuration
    ciemOidc DefenderCspmAwsOfferingCiemCiemOidcResponse
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciem_discovery DefenderCspmAwsOfferingCiemCiemDiscoveryResponse
    Defender CSPM Permissions Management discovery configuration
    ciem_oidc DefenderCspmAwsOfferingCiemCiemOidcResponse
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery Property Map
    Defender CSPM Permissions Management discovery configuration
    ciemOidc Property Map
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations

    DefenderCspmAwsOfferingDataSensitivityDiscovery, DefenderCspmAwsOfferingDataSensitivityDiscoveryArgs

    The Microsoft Defender Data Sensitivity discovery configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender Data Sensitivity discovery enabled

    DefenderCspmAwsOfferingDataSensitivityDiscoveryResponse, DefenderCspmAwsOfferingDataSensitivityDiscoveryResponseArgs

    The Microsoft Defender Data Sensitivity discovery configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender Data Sensitivity discovery enabled

    DefenderCspmAwsOfferingDatabasesDspm, DefenderCspmAwsOfferingDatabasesDspmArgs

    The databases DSPM configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is databases DSPM protection enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is databases DSPM protection enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is databases DSPM protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is databases DSPM protection enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is databases DSPM protection enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is databases DSPM protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is databases DSPM protection enabled

    DefenderCspmAwsOfferingDatabasesDspmResponse, DefenderCspmAwsOfferingDatabasesDspmResponseArgs

    The databases DSPM configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is databases DSPM protection enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is databases DSPM protection enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is databases DSPM protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is databases DSPM protection enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is databases DSPM protection enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is databases DSPM protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is databases DSPM protection enabled

    DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8S, DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SArgs

    The Microsoft Defender container agentless discovery K8s configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender container agentless discovery K8s enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery K8s enabled

    DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse, DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SResponseArgs

    The Microsoft Defender container agentless discovery K8s configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender container agentless discovery K8s enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery K8s enabled

    DefenderCspmAwsOfferingMdcContainersImageAssessment, DefenderCspmAwsOfferingMdcContainersImageAssessmentArgs

    The Microsoft Defender container image assessment configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled

    DefenderCspmAwsOfferingMdcContainersImageAssessmentResponse, DefenderCspmAwsOfferingMdcContainersImageAssessmentResponseArgs

    The Microsoft Defender container image assessment configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled

    DefenderCspmAwsOfferingResponse, DefenderCspmAwsOfferingResponseArgs

    The CSPM P1 for AWS offering
    Description string
    The offering description.
    Ciem Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingCiemResponse
    Defenders CSPM Permissions Management offering configurations
    DataSensitivityDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    DatabasesDspm Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingDatabasesDspmResponse
    The databases DSPM configuration
    MdcContainersAgentlessDiscoveryK8S Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingVmScannersResponse
    The Microsoft Defender for CSPM offering VM scanning configuration
    Description string
    The offering description.
    Ciem DefenderCspmAwsOfferingCiemResponse
    Defenders CSPM Permissions Management offering configurations
    DataSensitivityDiscovery DefenderCspmAwsOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    DatabasesDspm DefenderCspmAwsOfferingDatabasesDspmResponse
    The databases DSPM configuration
    MdcContainersAgentlessDiscoveryK8S DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment DefenderCspmAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    VmScanners DefenderCspmAwsOfferingVmScannersResponse
    The Microsoft Defender for CSPM offering VM scanning configuration
    description string
    The offering description.
    ciem object
    Defenders CSPM Permissions Management offering configurations
    data_sensitivity_discovery object
    The Microsoft Defender Data Sensitivity discovery configuration
    databases_dspm object
    The databases DSPM configuration
    mdc_containers_agentless_discovery_k8_s object
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment object
    The Microsoft Defender container image assessment configuration
    vm_scanners object
    The Microsoft Defender for CSPM offering VM scanning configuration
    description String
    The offering description.
    ciem DefenderCspmAwsOfferingCiemResponse
    Defenders CSPM Permissions Management offering configurations
    dataSensitivityDiscovery DefenderCspmAwsOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    databasesDspm DefenderCspmAwsOfferingDatabasesDspmResponse
    The databases DSPM configuration
    mdcContainersAgentlessDiscoveryK8S DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderCspmAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderCspmAwsOfferingVmScannersResponse
    The Microsoft Defender for CSPM offering VM scanning configuration
    description string
    The offering description.
    ciem DefenderCspmAwsOfferingCiemResponse
    Defenders CSPM Permissions Management offering configurations
    dataSensitivityDiscovery DefenderCspmAwsOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    databasesDspm DefenderCspmAwsOfferingDatabasesDspmResponse
    The databases DSPM configuration
    mdcContainersAgentlessDiscoveryK8S DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderCspmAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderCspmAwsOfferingVmScannersResponse
    The Microsoft Defender for CSPM offering VM scanning configuration
    description str
    The offering description.
    ciem DefenderCspmAwsOfferingCiemResponse
    Defenders CSPM Permissions Management offering configurations
    data_sensitivity_discovery DefenderCspmAwsOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    databases_dspm DefenderCspmAwsOfferingDatabasesDspmResponse
    The databases DSPM configuration
    mdc_containers_agentless_discovery_k8_s DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment DefenderCspmAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    vm_scanners DefenderCspmAwsOfferingVmScannersResponse
    The Microsoft Defender for CSPM offering VM scanning configuration
    description String
    The offering description.
    ciem Property Map
    Defenders CSPM Permissions Management offering configurations
    dataSensitivityDiscovery Property Map
    The Microsoft Defender Data Sensitivity discovery configuration
    databasesDspm Property Map
    The databases DSPM configuration
    mdcContainersAgentlessDiscoveryK8S Property Map
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment Property Map
    The Microsoft Defender container image assessment configuration
    vmScanners Property Map
    The Microsoft Defender for CSPM offering VM scanning configuration

    DefenderCspmAwsOfferingVmScanners, DefenderCspmAwsOfferingVmScannersArgs

    The Microsoft Defender for CSPM offering VM scanning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderCspmAwsOfferingVmScannersResponse, DefenderCspmAwsOfferingVmScannersResponseArgs

    The Microsoft Defender for CSPM offering VM scanning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderCspmDockerHubOffering, DefenderCspmDockerHubOfferingArgs

    The Defender for CSPM Docker Hub offering configurations

    DefenderCspmDockerHubOfferingResponse, DefenderCspmDockerHubOfferingResponseArgs

    The Defender for CSPM Docker Hub offering configurations
    Description string
    The offering description.
    Description string
    The offering description.
    description string
    The offering description.
    description String
    The offering description.
    description string
    The offering description.
    description str
    The offering description.
    description String
    The offering description.

    DefenderCspmGcpOffering, DefenderCspmGcpOfferingArgs

    The CSPM P1 for GCP offering
    CiemDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    DataSensitivityDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    MdcContainersAgentlessDiscoveryK8S Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingVmScanners
    The Microsoft Defender for CSPM VM scanning configuration
    CiemDiscovery DefenderCspmGcpOfferingCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    DataSensitivityDiscovery DefenderCspmGcpOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    MdcContainersAgentlessDiscoveryK8S DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment DefenderCspmGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    VmScanners DefenderCspmGcpOfferingVmScanners
    The Microsoft Defender for CSPM VM scanning configuration
    ciem_discovery object
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    data_sensitivity_discovery object
    The Microsoft Defender Data Sensitivity discovery configuration
    mdc_containers_agentless_discovery_k8_s object
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment object
    The Microsoft Defender Container image assessment configuration
    vm_scanners object
    The Microsoft Defender for CSPM VM scanning configuration
    ciemDiscovery DefenderCspmGcpOfferingCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    dataSensitivityDiscovery DefenderCspmGcpOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    mdcContainersAgentlessDiscoveryK8S DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderCspmGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    vmScanners DefenderCspmGcpOfferingVmScanners
    The Microsoft Defender for CSPM VM scanning configuration
    ciemDiscovery DefenderCspmGcpOfferingCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    dataSensitivityDiscovery DefenderCspmGcpOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    mdcContainersAgentlessDiscoveryK8S DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderCspmGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    vmScanners DefenderCspmGcpOfferingVmScanners
    The Microsoft Defender for CSPM VM scanning configuration
    ciem_discovery DefenderCspmGcpOfferingCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    data_sensitivity_discovery DefenderCspmGcpOfferingDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    mdc_containers_agentless_discovery_k8_s DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment DefenderCspmGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    vm_scanners DefenderCspmGcpOfferingVmScanners
    The Microsoft Defender for CSPM VM scanning configuration
    ciemDiscovery Property Map
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    dataSensitivityDiscovery Property Map
    The Microsoft Defender Data Sensitivity discovery configuration
    mdcContainersAgentlessDiscoveryK8S Property Map
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment Property Map
    The Microsoft Defender Container image assessment configuration
    vmScanners Property Map
    The Microsoft Defender for CSPM VM scanning configuration

    DefenderCspmGcpOfferingCiemDiscovery, DefenderCspmGcpOfferingCiemDiscoveryArgs

    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    AzureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against GCP workload identity federation
    ServiceAccountEmailAddress string
    The service account email address in GCP for Permissions Management offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for Permissions Management offering
    AzureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against GCP workload identity federation
    ServiceAccountEmailAddress string
    The service account email address in GCP for Permissions Management offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for Permissions Management offering
    azure_active_directory_app_name string
    the azure active directory app name used of authenticating against GCP workload identity federation
    service_account_email_address string
    The service account email address in GCP for Permissions Management offering
    workload_identity_provider_id string
    The GCP workload identity provider id for Permissions Management offering
    azureActiveDirectoryAppName String
    the azure active directory app name used of authenticating against GCP workload identity federation
    serviceAccountEmailAddress String
    The service account email address in GCP for Permissions Management offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for Permissions Management offering
    azureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against GCP workload identity federation
    serviceAccountEmailAddress string
    The service account email address in GCP for Permissions Management offering
    workloadIdentityProviderId string
    The GCP workload identity provider id for Permissions Management offering
    azure_active_directory_app_name str
    the azure active directory app name used of authenticating against GCP workload identity federation
    service_account_email_address str
    The service account email address in GCP for Permissions Management offering
    workload_identity_provider_id str
    The GCP workload identity provider id for Permissions Management offering
    azureActiveDirectoryAppName String
    the azure active directory app name used of authenticating against GCP workload identity federation
    serviceAccountEmailAddress String
    The service account email address in GCP for Permissions Management offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for Permissions Management offering

    DefenderCspmGcpOfferingCiemDiscoveryResponse, DefenderCspmGcpOfferingCiemDiscoveryResponseArgs

    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    AzureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against GCP workload identity federation
    ServiceAccountEmailAddress string
    The service account email address in GCP for Permissions Management offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for Permissions Management offering
    AzureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against GCP workload identity federation
    ServiceAccountEmailAddress string
    The service account email address in GCP for Permissions Management offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for Permissions Management offering
    azure_active_directory_app_name string
    the azure active directory app name used of authenticating against GCP workload identity federation
    service_account_email_address string
    The service account email address in GCP for Permissions Management offering
    workload_identity_provider_id string
    The GCP workload identity provider id for Permissions Management offering
    azureActiveDirectoryAppName String
    the azure active directory app name used of authenticating against GCP workload identity federation
    serviceAccountEmailAddress String
    The service account email address in GCP for Permissions Management offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for Permissions Management offering
    azureActiveDirectoryAppName string
    the azure active directory app name used of authenticating against GCP workload identity federation
    serviceAccountEmailAddress string
    The service account email address in GCP for Permissions Management offering
    workloadIdentityProviderId string
    The GCP workload identity provider id for Permissions Management offering
    azure_active_directory_app_name str
    the azure active directory app name used of authenticating against GCP workload identity federation
    service_account_email_address str
    The service account email address in GCP for Permissions Management offering
    workload_identity_provider_id str
    The GCP workload identity provider id for Permissions Management offering
    azureActiveDirectoryAppName String
    the azure active directory app name used of authenticating against GCP workload identity federation
    serviceAccountEmailAddress String
    The service account email address in GCP for Permissions Management offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for Permissions Management offering

    DefenderCspmGcpOfferingDataSensitivityDiscovery, DefenderCspmGcpOfferingDataSensitivityDiscoveryArgs

    The Microsoft Defender Data Sensitivity discovery configuration
    Enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderCspmGcpOfferingDataSensitivityDiscoveryResponse, DefenderCspmGcpOfferingDataSensitivityDiscoveryResponseArgs

    The Microsoft Defender Data Sensitivity discovery configuration
    Enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender Data Sensitivity discovery enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender Data Sensitivity discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8S, DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SArgs

    The Microsoft Defender Container agentless discovery configuration
    Enabled bool
    Is Microsoft Defender container agentless discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse, DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SResponseArgs

    The Microsoft Defender Container agentless discovery configuration
    Enabled bool
    Is Microsoft Defender container agentless discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderCspmGcpOfferingMdcContainersImageAssessment, DefenderCspmGcpOfferingMdcContainersImageAssessmentArgs

    The Microsoft Defender Container image assessment configuration
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderCspmGcpOfferingMdcContainersImageAssessmentResponse, DefenderCspmGcpOfferingMdcContainersImageAssessmentResponseArgs

    The Microsoft Defender Container image assessment configuration
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderCspmGcpOfferingResponse, DefenderCspmGcpOfferingResponseArgs

    The CSPM P1 for GCP offering
    Description string
    The offering description.
    CiemDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingCiemDiscoveryResponse
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    DataSensitivityDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    MdcContainersAgentlessDiscoveryK8S Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingVmScannersResponse
    The Microsoft Defender for CSPM VM scanning configuration
    Description string
    The offering description.
    CiemDiscovery DefenderCspmGcpOfferingCiemDiscoveryResponse
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    DataSensitivityDiscovery DefenderCspmGcpOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    MdcContainersAgentlessDiscoveryK8S DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment DefenderCspmGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    VmScanners DefenderCspmGcpOfferingVmScannersResponse
    The Microsoft Defender for CSPM VM scanning configuration
    description string
    The offering description.
    ciem_discovery object
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    data_sensitivity_discovery object
    The Microsoft Defender Data Sensitivity discovery configuration
    mdc_containers_agentless_discovery_k8_s object
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment object
    The Microsoft Defender Container image assessment configuration
    vm_scanners object
    The Microsoft Defender for CSPM VM scanning configuration
    description String
    The offering description.
    ciemDiscovery DefenderCspmGcpOfferingCiemDiscoveryResponse
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    dataSensitivityDiscovery DefenderCspmGcpOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    mdcContainersAgentlessDiscoveryK8S DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderCspmGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    vmScanners DefenderCspmGcpOfferingVmScannersResponse
    The Microsoft Defender for CSPM VM scanning configuration
    description string
    The offering description.
    ciemDiscovery DefenderCspmGcpOfferingCiemDiscoveryResponse
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    dataSensitivityDiscovery DefenderCspmGcpOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    mdcContainersAgentlessDiscoveryK8S DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderCspmGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    vmScanners DefenderCspmGcpOfferingVmScannersResponse
    The Microsoft Defender for CSPM VM scanning configuration
    description str
    The offering description.
    ciem_discovery DefenderCspmGcpOfferingCiemDiscoveryResponse
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    data_sensitivity_discovery DefenderCspmGcpOfferingDataSensitivityDiscoveryResponse
    The Microsoft Defender Data Sensitivity discovery configuration
    mdc_containers_agentless_discovery_k8_s DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment DefenderCspmGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    vm_scanners DefenderCspmGcpOfferingVmScannersResponse
    The Microsoft Defender for CSPM VM scanning configuration
    description String
    The offering description.
    ciemDiscovery Property Map
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    dataSensitivityDiscovery Property Map
    The Microsoft Defender Data Sensitivity discovery configuration
    mdcContainersAgentlessDiscoveryK8S Property Map
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment Property Map
    The Microsoft Defender Container image assessment configuration
    vmScanners Property Map
    The Microsoft Defender for CSPM VM scanning configuration

    DefenderCspmGcpOfferingVmScanners, DefenderCspmGcpOfferingVmScannersArgs

    The Microsoft Defender for CSPM VM scanning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    Configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderCspmGcpOfferingVmScannersResponse, DefenderCspmGcpOfferingVmScannersResponseArgs

    The Microsoft Defender for CSPM VM scanning configuration
    Configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderCspmJFrogOffering, DefenderCspmJFrogOfferingArgs

    The CSPM P1 for JFrog Artifactory offering
    MdcContainersImageAssessment DefenderCspmJFrogOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    mdc_containers_image_assessment object
    The Microsoft Defender Container image assessment configuration
    mdcContainersImageAssessment DefenderCspmJFrogOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    mdcContainersImageAssessment DefenderCspmJFrogOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    mdc_containers_image_assessment DefenderCspmJFrogOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    mdcContainersImageAssessment Property Map
    The Microsoft Defender Container image assessment configuration

    DefenderCspmJFrogOfferingMdcContainersImageAssessment, DefenderCspmJFrogOfferingMdcContainersImageAssessmentArgs

    The Microsoft Defender Container image assessment configuration
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    enabled bool
    Is Microsoft Defender container image assessment enabled
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    enabled bool
    Is Microsoft Defender container image assessment enabled
    enabled Boolean
    Is Microsoft Defender container image assessment enabled

    DefenderCspmJFrogOfferingMdcContainersImageAssessmentResponse, DefenderCspmJFrogOfferingMdcContainersImageAssessmentResponseArgs

    The Microsoft Defender Container image assessment configuration
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    enabled bool
    Is Microsoft Defender container image assessment enabled
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    enabled bool
    Is Microsoft Defender container image assessment enabled
    enabled Boolean
    Is Microsoft Defender container image assessment enabled

    DefenderCspmJFrogOfferingResponse, DefenderCspmJFrogOfferingResponseArgs

    The CSPM P1 for JFrog Artifactory offering
    Description string
    The offering description.
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderCspmJFrogOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    Description string
    The offering description.
    MdcContainersImageAssessment DefenderCspmJFrogOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    description string
    The offering description.
    mdc_containers_image_assessment object
    The Microsoft Defender Container image assessment configuration
    description String
    The offering description.
    mdcContainersImageAssessment DefenderCspmJFrogOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    description string
    The offering description.
    mdcContainersImageAssessment DefenderCspmJFrogOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    description str
    The offering description.
    mdc_containers_image_assessment DefenderCspmJFrogOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    description String
    The offering description.
    mdcContainersImageAssessment Property Map
    The Microsoft Defender Container image assessment configuration

    DefenderFoDatabasesAwsOffering, DefenderFoDatabasesAwsOfferingArgs

    The Defender for Databases AWS offering
    ArcAutoProvisioning DefenderFoDatabasesAwsOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    DatabasesDspm DefenderFoDatabasesAwsOfferingDatabasesDspm
    The databases data security posture management (DSPM) configuration
    Rds DefenderFoDatabasesAwsOfferingRds
    The RDS configuration
    arc_auto_provisioning object
    The ARC autoprovisioning configuration
    databases_dspm object
    The databases data security posture management (DSPM) configuration
    rds object
    The RDS configuration
    arcAutoProvisioning DefenderFoDatabasesAwsOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    databasesDspm DefenderFoDatabasesAwsOfferingDatabasesDspm
    The databases data security posture management (DSPM) configuration
    rds DefenderFoDatabasesAwsOfferingRds
    The RDS configuration
    arcAutoProvisioning DefenderFoDatabasesAwsOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    databasesDspm DefenderFoDatabasesAwsOfferingDatabasesDspm
    The databases data security posture management (DSPM) configuration
    rds DefenderFoDatabasesAwsOfferingRds
    The RDS configuration
    arc_auto_provisioning DefenderFoDatabasesAwsOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    databases_dspm DefenderFoDatabasesAwsOfferingDatabasesDspm
    The databases data security posture management (DSPM) configuration
    rds DefenderFoDatabasesAwsOfferingRds
    The RDS configuration
    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    databasesDspm Property Map
    The databases data security posture management (DSPM) configuration
    rds Property Map
    The RDS configuration

    DefenderFoDatabasesAwsOfferingArcAutoProvisioning, DefenderFoDatabasesAwsOfferingArcAutoProvisioningArgs

    The ARC autoprovisioning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled

    DefenderFoDatabasesAwsOfferingArcAutoProvisioningResponse, DefenderFoDatabasesAwsOfferingArcAutoProvisioningResponseArgs

    The ARC autoprovisioning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled

    DefenderFoDatabasesAwsOfferingDatabasesDspm, DefenderFoDatabasesAwsOfferingDatabasesDspmArgs

    The databases data security posture management (DSPM) configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is databases data security posture management (DSPM) protection enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is databases data security posture management (DSPM) protection enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is databases data security posture management (DSPM) protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is databases data security posture management (DSPM) protection enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is databases data security posture management (DSPM) protection enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is databases data security posture management (DSPM) protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is databases data security posture management (DSPM) protection enabled

    DefenderFoDatabasesAwsOfferingDatabasesDspmResponse, DefenderFoDatabasesAwsOfferingDatabasesDspmResponseArgs

    The databases data security posture management (DSPM) configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is databases data security posture management (DSPM) protection enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is databases data security posture management (DSPM) protection enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is databases data security posture management (DSPM) protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is databases data security posture management (DSPM) protection enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is databases data security posture management (DSPM) protection enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is databases data security posture management (DSPM) protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is databases data security posture management (DSPM) protection enabled

    DefenderFoDatabasesAwsOfferingRds, DefenderFoDatabasesAwsOfferingRdsArgs

    The RDS configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is RDS protection enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is RDS protection enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is RDS protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is RDS protection enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is RDS protection enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is RDS protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is RDS protection enabled

    DefenderFoDatabasesAwsOfferingRdsResponse, DefenderFoDatabasesAwsOfferingRdsResponseArgs

    The RDS configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is RDS protection enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is RDS protection enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is RDS protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is RDS protection enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is RDS protection enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is RDS protection enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is RDS protection enabled

    DefenderFoDatabasesAwsOfferingResponse, DefenderFoDatabasesAwsOfferingResponseArgs

    The Defender for Databases AWS offering
    Description string
    The offering description.
    ArcAutoProvisioning DefenderFoDatabasesAwsOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    DatabasesDspm DefenderFoDatabasesAwsOfferingDatabasesDspmResponse
    The databases data security posture management (DSPM) configuration
    Rds DefenderFoDatabasesAwsOfferingRdsResponse
    The RDS configuration
    description string
    The offering description.
    arc_auto_provisioning object
    The ARC autoprovisioning configuration
    databases_dspm object
    The databases data security posture management (DSPM) configuration
    rds object
    The RDS configuration
    description String
    The offering description.
    arcAutoProvisioning DefenderFoDatabasesAwsOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    databasesDspm DefenderFoDatabasesAwsOfferingDatabasesDspmResponse
    The databases data security posture management (DSPM) configuration
    rds DefenderFoDatabasesAwsOfferingRdsResponse
    The RDS configuration
    description string
    The offering description.
    arcAutoProvisioning DefenderFoDatabasesAwsOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    databasesDspm DefenderFoDatabasesAwsOfferingDatabasesDspmResponse
    The databases data security posture management (DSPM) configuration
    rds DefenderFoDatabasesAwsOfferingRdsResponse
    The RDS configuration
    description str
    The offering description.
    arc_auto_provisioning DefenderFoDatabasesAwsOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    databases_dspm DefenderFoDatabasesAwsOfferingDatabasesDspmResponse
    The databases data security posture management (DSPM) configuration
    rds DefenderFoDatabasesAwsOfferingRdsResponse
    The RDS configuration
    description String
    The offering description.
    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    databasesDspm Property Map
    The databases data security posture management (DSPM) configuration
    rds Property Map
    The RDS configuration

    DefenderForContainersAwsOffering, DefenderForContainersAwsOfferingArgs

    The Defender for Containers AWS offering
    CloudWatchToKinesis Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingCloudWatchToKinesis
    The cloudwatch to kinesis connection configuration
    DataCollectionExternalId string
    The externalId used by the data reader to prevent the confused deputy attack
    EnableAuditLogsAutoProvisioning bool
    Is audit logs data collection enabled
    EnableDefenderAgentAutoProvisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    EnablePolicyAgentAutoProvisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    KinesisToS3 Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingKinesisToS3
    The kinesis to s3 connection configuration
    KubeAuditRetentionTime double
    The retention time in days of kube audit logs set on the CloudWatch log group
    KubernetesDataCollection Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingKubernetesDataCollection
    The kubernetes data collection connection configuration
    KubernetesService Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingKubernetesService
    The kubernetes service connection configuration
    MdcContainersAgentlessDiscoveryK8S Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    CloudWatchToKinesis DefenderForContainersAwsOfferingCloudWatchToKinesis
    The cloudwatch to kinesis connection configuration
    DataCollectionExternalId string
    The externalId used by the data reader to prevent the confused deputy attack
    EnableAuditLogsAutoProvisioning bool
    Is audit logs data collection enabled
    EnableDefenderAgentAutoProvisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    EnablePolicyAgentAutoProvisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    KinesisToS3 DefenderForContainersAwsOfferingKinesisToS3
    The kinesis to s3 connection configuration
    KubeAuditRetentionTime float64
    The retention time in days of kube audit logs set on the CloudWatch log group
    KubernetesDataCollection DefenderForContainersAwsOfferingKubernetesDataCollection
    The kubernetes data collection connection configuration
    KubernetesService DefenderForContainersAwsOfferingKubernetesService
    The kubernetes service connection configuration
    MdcContainersAgentlessDiscoveryK8S DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment DefenderForContainersAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    VmScanners DefenderForContainersAwsOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    cloud_watch_to_kinesis object
    The cloudwatch to kinesis connection configuration
    data_collection_external_id string
    The externalId used by the data reader to prevent the confused deputy attack
    enable_audit_logs_auto_provisioning bool
    Is audit logs data collection enabled
    enable_defender_agent_auto_provisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enable_policy_agent_auto_provisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    kinesis_to_s3 object
    The kinesis to s3 connection configuration
    kube_audit_retention_time number
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetes_data_collection object
    The kubernetes data collection connection configuration
    kubernetes_service object
    The kubernetes service connection configuration
    mdc_containers_agentless_discovery_k8_s object
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment object
    The Microsoft Defender container image assessment configuration
    vm_scanners object
    The Microsoft Defender for Container K8s VM host scanning configuration
    cloudWatchToKinesis DefenderForContainersAwsOfferingCloudWatchToKinesis
    The cloudwatch to kinesis connection configuration
    dataCollectionExternalId String
    The externalId used by the data reader to prevent the confused deputy attack
    enableAuditLogsAutoProvisioning Boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning Boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning Boolean
    Is Policy Kubernetes agent auto provisioning enabled
    kinesisToS3 DefenderForContainersAwsOfferingKinesisToS3
    The kinesis to s3 connection configuration
    kubeAuditRetentionTime Double
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetesDataCollection DefenderForContainersAwsOfferingKubernetesDataCollection
    The kubernetes data collection connection configuration
    kubernetesService DefenderForContainersAwsOfferingKubernetesService
    The kubernetes service connection configuration
    mdcContainersAgentlessDiscoveryK8S DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderForContainersAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderForContainersAwsOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    cloudWatchToKinesis DefenderForContainersAwsOfferingCloudWatchToKinesis
    The cloudwatch to kinesis connection configuration
    dataCollectionExternalId string
    The externalId used by the data reader to prevent the confused deputy attack
    enableAuditLogsAutoProvisioning boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning boolean
    Is Policy Kubernetes agent auto provisioning enabled
    kinesisToS3 DefenderForContainersAwsOfferingKinesisToS3
    The kinesis to s3 connection configuration
    kubeAuditRetentionTime number
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetesDataCollection DefenderForContainersAwsOfferingKubernetesDataCollection
    The kubernetes data collection connection configuration
    kubernetesService DefenderForContainersAwsOfferingKubernetesService
    The kubernetes service connection configuration
    mdcContainersAgentlessDiscoveryK8S DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderForContainersAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderForContainersAwsOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    cloud_watch_to_kinesis DefenderForContainersAwsOfferingCloudWatchToKinesis
    The cloudwatch to kinesis connection configuration
    data_collection_external_id str
    The externalId used by the data reader to prevent the confused deputy attack
    enable_audit_logs_auto_provisioning bool
    Is audit logs data collection enabled
    enable_defender_agent_auto_provisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enable_policy_agent_auto_provisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    kinesis_to_s3 DefenderForContainersAwsOfferingKinesisToS3
    The kinesis to s3 connection configuration
    kube_audit_retention_time float
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetes_data_collection DefenderForContainersAwsOfferingKubernetesDataCollection
    The kubernetes data collection connection configuration
    kubernetes_service DefenderForContainersAwsOfferingKubernetesService
    The kubernetes service connection configuration
    mdc_containers_agentless_discovery_k8_s DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment DefenderForContainersAwsOfferingMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vm_scanners DefenderForContainersAwsOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    cloudWatchToKinesis Property Map
    The cloudwatch to kinesis connection configuration
    dataCollectionExternalId String
    The externalId used by the data reader to prevent the confused deputy attack
    enableAuditLogsAutoProvisioning Boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning Boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning Boolean
    Is Policy Kubernetes agent auto provisioning enabled
    kinesisToS3 Property Map
    The kinesis to s3 connection configuration
    kubeAuditRetentionTime Number
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetesDataCollection Property Map
    The kubernetes data collection connection configuration
    kubernetesService Property Map
    The kubernetes service connection configuration
    mdcContainersAgentlessDiscoveryK8S Property Map
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment Property Map
    The Microsoft Defender container image assessment configuration
    vmScanners Property Map
    The Microsoft Defender for Container K8s VM host scanning configuration

    DefenderForContainersAwsOfferingCloudWatchToKinesis, DefenderForContainersAwsOfferingCloudWatchToKinesisArgs

    The cloudwatch to kinesis connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    CloudRoleArn string
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloud_role_arn string
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloudRoleArn String
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloudRoleArn string
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloud_role_arn str
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloudRoleArn String
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis

    DefenderForContainersAwsOfferingCloudWatchToKinesisResponse, DefenderForContainersAwsOfferingCloudWatchToKinesisResponseArgs

    The cloudwatch to kinesis connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    CloudRoleArn string
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloud_role_arn string
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloudRoleArn String
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloudRoleArn string
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloud_role_arn str
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
    cloudRoleArn String
    The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis

    DefenderForContainersAwsOfferingKinesisToS3, DefenderForContainersAwsOfferingKinesisToS3Args

    The kinesis to s3 connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    CloudRoleArn string
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloud_role_arn string
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloudRoleArn String
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloudRoleArn string
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloud_role_arn str
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloudRoleArn String
    The cloud role ARN in AWS used by Kinesis to transfer data into S3

    DefenderForContainersAwsOfferingKinesisToS3Response, DefenderForContainersAwsOfferingKinesisToS3ResponseArgs

    The kinesis to s3 connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    CloudRoleArn string
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloud_role_arn string
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloudRoleArn String
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloudRoleArn string
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloud_role_arn str
    The cloud role ARN in AWS used by Kinesis to transfer data into S3
    cloudRoleArn String
    The cloud role ARN in AWS used by Kinesis to transfer data into S3

    DefenderForContainersAwsOfferingKubernetesDataCollection, DefenderForContainersAwsOfferingKubernetesDataCollectionArgs

    The kubernetes data collection connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature used for reading data
    CloudRoleArn string
    The cloud role ARN in AWS for this feature used for reading data
    cloud_role_arn string
    The cloud role ARN in AWS for this feature used for reading data
    cloudRoleArn String
    The cloud role ARN in AWS for this feature used for reading data
    cloudRoleArn string
    The cloud role ARN in AWS for this feature used for reading data
    cloud_role_arn str
    The cloud role ARN in AWS for this feature used for reading data
    cloudRoleArn String
    The cloud role ARN in AWS for this feature used for reading data

    DefenderForContainersAwsOfferingKubernetesDataCollectionResponse, DefenderForContainersAwsOfferingKubernetesDataCollectionResponseArgs

    The kubernetes data collection connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature used for reading data
    CloudRoleArn string
    The cloud role ARN in AWS for this feature used for reading data
    cloud_role_arn string
    The cloud role ARN in AWS for this feature used for reading data
    cloudRoleArn String
    The cloud role ARN in AWS for this feature used for reading data
    cloudRoleArn string
    The cloud role ARN in AWS for this feature used for reading data
    cloud_role_arn str
    The cloud role ARN in AWS for this feature used for reading data
    cloudRoleArn String
    The cloud role ARN in AWS for this feature used for reading data

    DefenderForContainersAwsOfferingKubernetesService, DefenderForContainersAwsOfferingKubernetesServiceArgs

    The kubernetes service connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature used for provisioning resources
    CloudRoleArn string
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloud_role_arn string
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloudRoleArn String
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloudRoleArn string
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloud_role_arn str
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloudRoleArn String
    The cloud role ARN in AWS for this feature used for provisioning resources

    DefenderForContainersAwsOfferingKubernetesServiceResponse, DefenderForContainersAwsOfferingKubernetesServiceResponseArgs

    The kubernetes service connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature used for provisioning resources
    CloudRoleArn string
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloud_role_arn string
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloudRoleArn String
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloudRoleArn string
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloud_role_arn str
    The cloud role ARN in AWS for this feature used for provisioning resources
    cloudRoleArn String
    The cloud role ARN in AWS for this feature used for provisioning resources

    DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8S, DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SArgs

    The Microsoft Defender container agentless discovery K8s configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender container agentless discovery K8s enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery K8s enabled

    DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse, DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SResponseArgs

    The Microsoft Defender container agentless discovery K8s configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender container agentless discovery K8s enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery K8s enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery K8s enabled

    DefenderForContainersAwsOfferingMdcContainersImageAssessment, DefenderForContainersAwsOfferingMdcContainersImageAssessmentArgs

    The Microsoft Defender container image assessment configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled

    DefenderForContainersAwsOfferingMdcContainersImageAssessmentResponse, DefenderForContainersAwsOfferingMdcContainersImageAssessmentResponseArgs

    The Microsoft Defender container image assessment configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled

    DefenderForContainersAwsOfferingResponse, DefenderForContainersAwsOfferingResponseArgs

    The Defender for Containers AWS offering
    Description string
    The offering description.
    CloudWatchToKinesis Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingCloudWatchToKinesisResponse
    The cloudwatch to kinesis connection configuration
    DataCollectionExternalId string
    The externalId used by the data reader to prevent the confused deputy attack
    EnableAuditLogsAutoProvisioning bool
    Is audit logs data collection enabled
    EnableDefenderAgentAutoProvisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    EnablePolicyAgentAutoProvisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    KinesisToS3 Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingKinesisToS3Response
    The kinesis to s3 connection configuration
    KubeAuditRetentionTime double
    The retention time in days of kube audit logs set on the CloudWatch log group
    KubernetesDataCollection Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingKubernetesDataCollectionResponse
    The kubernetes data collection connection configuration
    KubernetesService Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingKubernetesServiceResponse
    The kubernetes service connection configuration
    MdcContainersAgentlessDiscoveryK8S Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    Description string
    The offering description.
    CloudWatchToKinesis DefenderForContainersAwsOfferingCloudWatchToKinesisResponse
    The cloudwatch to kinesis connection configuration
    DataCollectionExternalId string
    The externalId used by the data reader to prevent the confused deputy attack
    EnableAuditLogsAutoProvisioning bool
    Is audit logs data collection enabled
    EnableDefenderAgentAutoProvisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    EnablePolicyAgentAutoProvisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    KinesisToS3 DefenderForContainersAwsOfferingKinesisToS3Response
    The kinesis to s3 connection configuration
    KubeAuditRetentionTime float64
    The retention time in days of kube audit logs set on the CloudWatch log group
    KubernetesDataCollection DefenderForContainersAwsOfferingKubernetesDataCollectionResponse
    The kubernetes data collection connection configuration
    KubernetesService DefenderForContainersAwsOfferingKubernetesServiceResponse
    The kubernetes service connection configuration
    MdcContainersAgentlessDiscoveryK8S DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment DefenderForContainersAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    VmScanners DefenderForContainersAwsOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    description string
    The offering description.
    cloud_watch_to_kinesis object
    The cloudwatch to kinesis connection configuration
    data_collection_external_id string
    The externalId used by the data reader to prevent the confused deputy attack
    enable_audit_logs_auto_provisioning bool
    Is audit logs data collection enabled
    enable_defender_agent_auto_provisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enable_policy_agent_auto_provisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    kinesis_to_s3 object
    The kinesis to s3 connection configuration
    kube_audit_retention_time number
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetes_data_collection object
    The kubernetes data collection connection configuration
    kubernetes_service object
    The kubernetes service connection configuration
    mdc_containers_agentless_discovery_k8_s object
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment object
    The Microsoft Defender container image assessment configuration
    vm_scanners object
    The Microsoft Defender for Container K8s VM host scanning configuration
    description String
    The offering description.
    cloudWatchToKinesis DefenderForContainersAwsOfferingCloudWatchToKinesisResponse
    The cloudwatch to kinesis connection configuration
    dataCollectionExternalId String
    The externalId used by the data reader to prevent the confused deputy attack
    enableAuditLogsAutoProvisioning Boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning Boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning Boolean
    Is Policy Kubernetes agent auto provisioning enabled
    kinesisToS3 DefenderForContainersAwsOfferingKinesisToS3Response
    The kinesis to s3 connection configuration
    kubeAuditRetentionTime Double
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetesDataCollection DefenderForContainersAwsOfferingKubernetesDataCollectionResponse
    The kubernetes data collection connection configuration
    kubernetesService DefenderForContainersAwsOfferingKubernetesServiceResponse
    The kubernetes service connection configuration
    mdcContainersAgentlessDiscoveryK8S DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderForContainersAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderForContainersAwsOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    description string
    The offering description.
    cloudWatchToKinesis DefenderForContainersAwsOfferingCloudWatchToKinesisResponse
    The cloudwatch to kinesis connection configuration
    dataCollectionExternalId string
    The externalId used by the data reader to prevent the confused deputy attack
    enableAuditLogsAutoProvisioning boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning boolean
    Is Policy Kubernetes agent auto provisioning enabled
    kinesisToS3 DefenderForContainersAwsOfferingKinesisToS3Response
    The kinesis to s3 connection configuration
    kubeAuditRetentionTime number
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetesDataCollection DefenderForContainersAwsOfferingKubernetesDataCollectionResponse
    The kubernetes data collection connection configuration
    kubernetesService DefenderForContainersAwsOfferingKubernetesServiceResponse
    The kubernetes service connection configuration
    mdcContainersAgentlessDiscoveryK8S DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderForContainersAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderForContainersAwsOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    description str
    The offering description.
    cloud_watch_to_kinesis DefenderForContainersAwsOfferingCloudWatchToKinesisResponse
    The cloudwatch to kinesis connection configuration
    data_collection_external_id str
    The externalId used by the data reader to prevent the confused deputy attack
    enable_audit_logs_auto_provisioning bool
    Is audit logs data collection enabled
    enable_defender_agent_auto_provisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enable_policy_agent_auto_provisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    kinesis_to_s3 DefenderForContainersAwsOfferingKinesisToS3Response
    The kinesis to s3 connection configuration
    kube_audit_retention_time float
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetes_data_collection DefenderForContainersAwsOfferingKubernetesDataCollectionResponse
    The kubernetes data collection connection configuration
    kubernetes_service DefenderForContainersAwsOfferingKubernetesServiceResponse
    The kubernetes service connection configuration
    mdc_containers_agentless_discovery_k8_s DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment DefenderForContainersAwsOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender container image assessment configuration
    vm_scanners DefenderForContainersAwsOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    description String
    The offering description.
    cloudWatchToKinesis Property Map
    The cloudwatch to kinesis connection configuration
    dataCollectionExternalId String
    The externalId used by the data reader to prevent the confused deputy attack
    enableAuditLogsAutoProvisioning Boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning Boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning Boolean
    Is Policy Kubernetes agent auto provisioning enabled
    kinesisToS3 Property Map
    The kinesis to s3 connection configuration
    kubeAuditRetentionTime Number
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetesDataCollection Property Map
    The kubernetes data collection connection configuration
    kubernetesService Property Map
    The kubernetes service connection configuration
    mdcContainersAgentlessDiscoveryK8S Property Map
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment Property Map
    The Microsoft Defender container image assessment configuration
    vmScanners Property Map
    The Microsoft Defender for Container K8s VM host scanning configuration

    DefenderForContainersAwsOfferingVmScanners, DefenderForContainersAwsOfferingVmScannersArgs

    The Microsoft Defender for Container K8s VM host scanning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderForContainersAwsOfferingVmScannersResponse, DefenderForContainersAwsOfferingVmScannersResponseArgs

    The Microsoft Defender for Container K8s VM host scanning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderForContainersDockerHubOffering, DefenderForContainersDockerHubOfferingArgs

    The Defender for containers Docker Hub offering configurations

    DefenderForContainersDockerHubOfferingResponse, DefenderForContainersDockerHubOfferingResponseArgs

    The Defender for containers Docker Hub offering configurations
    Description string
    The offering description.
    Description string
    The offering description.
    description string
    The offering description.
    description String
    The offering description.
    description string
    The offering description.
    description str
    The offering description.
    description String
    The offering description.

    DefenderForContainersGcpOffering, DefenderForContainersGcpOfferingArgs

    The containers GCP offering
    DataPipelineNativeCloudConnection Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingDataPipelineNativeCloudConnection
    The native cloud connection configuration
    EnableAuditLogsAutoProvisioning bool
    Is audit logs data collection enabled
    EnableDefenderAgentAutoProvisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    EnablePolicyAgentAutoProvisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    MdcContainersAgentlessDiscoveryK8S Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    NativeCloudConnection Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingNativeCloudConnection
    The native cloud connection configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    DataPipelineNativeCloudConnection DefenderForContainersGcpOfferingDataPipelineNativeCloudConnection
    The native cloud connection configuration
    EnableAuditLogsAutoProvisioning bool
    Is audit logs data collection enabled
    EnableDefenderAgentAutoProvisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    EnablePolicyAgentAutoProvisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    MdcContainersAgentlessDiscoveryK8S DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment DefenderForContainersGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    NativeCloudConnection DefenderForContainersGcpOfferingNativeCloudConnection
    The native cloud connection configuration
    VmScanners DefenderForContainersGcpOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    data_pipeline_native_cloud_connection object
    The native cloud connection configuration
    enable_audit_logs_auto_provisioning bool
    Is audit logs data collection enabled
    enable_defender_agent_auto_provisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enable_policy_agent_auto_provisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    mdc_containers_agentless_discovery_k8_s object
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment object
    The Microsoft Defender Container image assessment configuration
    native_cloud_connection object
    The native cloud connection configuration
    vm_scanners object
    The Microsoft Defender for Container K8s VM host scanning configuration
    dataPipelineNativeCloudConnection DefenderForContainersGcpOfferingDataPipelineNativeCloudConnection
    The native cloud connection configuration
    enableAuditLogsAutoProvisioning Boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning Boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning Boolean
    Is Policy Kubernetes agent auto provisioning enabled
    mdcContainersAgentlessDiscoveryK8S DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderForContainersGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    nativeCloudConnection DefenderForContainersGcpOfferingNativeCloudConnection
    The native cloud connection configuration
    vmScanners DefenderForContainersGcpOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    dataPipelineNativeCloudConnection DefenderForContainersGcpOfferingDataPipelineNativeCloudConnection
    The native cloud connection configuration
    enableAuditLogsAutoProvisioning boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning boolean
    Is Policy Kubernetes agent auto provisioning enabled
    mdcContainersAgentlessDiscoveryK8S DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderForContainersGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    nativeCloudConnection DefenderForContainersGcpOfferingNativeCloudConnection
    The native cloud connection configuration
    vmScanners DefenderForContainersGcpOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    data_pipeline_native_cloud_connection DefenderForContainersGcpOfferingDataPipelineNativeCloudConnection
    The native cloud connection configuration
    enable_audit_logs_auto_provisioning bool
    Is audit logs data collection enabled
    enable_defender_agent_auto_provisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enable_policy_agent_auto_provisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    mdc_containers_agentless_discovery_k8_s DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8S
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment DefenderForContainersGcpOfferingMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    native_cloud_connection DefenderForContainersGcpOfferingNativeCloudConnection
    The native cloud connection configuration
    vm_scanners DefenderForContainersGcpOfferingVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    dataPipelineNativeCloudConnection Property Map
    The native cloud connection configuration
    enableAuditLogsAutoProvisioning Boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning Boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning Boolean
    Is Policy Kubernetes agent auto provisioning enabled
    mdcContainersAgentlessDiscoveryK8S Property Map
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment Property Map
    The Microsoft Defender Container image assessment configuration
    nativeCloudConnection Property Map
    The native cloud connection configuration
    vmScanners Property Map
    The Microsoft Defender for Container K8s VM host scanning configuration

    DefenderForContainersGcpOfferingDataPipelineNativeCloudConnection, DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionArgs

    The native cloud connection configuration
    ServiceAccountEmailAddress string
    The data collection service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The data collection GCP workload identity provider id for this offering
    ServiceAccountEmailAddress string
    The data collection service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The data collection GCP workload identity provider id for this offering
    service_account_email_address string
    The data collection service account email address in GCP for this offering
    workload_identity_provider_id string
    The data collection GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The data collection service account email address in GCP for this offering
    workloadIdentityProviderId String
    The data collection GCP workload identity provider id for this offering
    serviceAccountEmailAddress string
    The data collection service account email address in GCP for this offering
    workloadIdentityProviderId string
    The data collection GCP workload identity provider id for this offering
    service_account_email_address str
    The data collection service account email address in GCP for this offering
    workload_identity_provider_id str
    The data collection GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The data collection service account email address in GCP for this offering
    workloadIdentityProviderId String
    The data collection GCP workload identity provider id for this offering

    DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionResponse, DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionResponseArgs

    The native cloud connection configuration
    ServiceAccountEmailAddress string
    The data collection service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The data collection GCP workload identity provider id for this offering
    ServiceAccountEmailAddress string
    The data collection service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The data collection GCP workload identity provider id for this offering
    service_account_email_address string
    The data collection service account email address in GCP for this offering
    workload_identity_provider_id string
    The data collection GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The data collection service account email address in GCP for this offering
    workloadIdentityProviderId String
    The data collection GCP workload identity provider id for this offering
    serviceAccountEmailAddress string
    The data collection service account email address in GCP for this offering
    workloadIdentityProviderId string
    The data collection GCP workload identity provider id for this offering
    service_account_email_address str
    The data collection service account email address in GCP for this offering
    workload_identity_provider_id str
    The data collection GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The data collection service account email address in GCP for this offering
    workloadIdentityProviderId String
    The data collection GCP workload identity provider id for this offering

    DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8S, DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SArgs

    The Microsoft Defender Container agentless discovery configuration
    Enabled bool
    Is Microsoft Defender container agentless discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse, DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SResponseArgs

    The Microsoft Defender Container agentless discovery configuration
    Enabled bool
    Is Microsoft Defender container agentless discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender container agentless discovery enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container agentless discovery enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container agentless discovery enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderForContainersGcpOfferingMdcContainersImageAssessment, DefenderForContainersGcpOfferingMdcContainersImageAssessmentArgs

    The Microsoft Defender Container image assessment configuration
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderForContainersGcpOfferingMdcContainersImageAssessmentResponse, DefenderForContainersGcpOfferingMdcContainersImageAssessmentResponseArgs

    The Microsoft Defender Container image assessment configuration
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    Enabled bool
    Is Microsoft Defender container image assessment enabled
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    enabled boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    enabled bool
    Is Microsoft Defender container image assessment enabled
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    enabled Boolean
    Is Microsoft Defender container image assessment enabled
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderForContainersGcpOfferingNativeCloudConnection, DefenderForContainersGcpOfferingNativeCloudConnectionArgs

    The native cloud connection configuration
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    service_account_email_address string
    The service account email address in GCP for this offering
    workload_identity_provider_id string
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress string
    The service account email address in GCP for this offering
    workloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    service_account_email_address str
    The service account email address in GCP for this offering
    workload_identity_provider_id str
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for this offering

    DefenderForContainersGcpOfferingNativeCloudConnectionResponse, DefenderForContainersGcpOfferingNativeCloudConnectionResponseArgs

    The native cloud connection configuration
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    service_account_email_address string
    The service account email address in GCP for this offering
    workload_identity_provider_id string
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress string
    The service account email address in GCP for this offering
    workloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    service_account_email_address str
    The service account email address in GCP for this offering
    workload_identity_provider_id str
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for this offering

    DefenderForContainersGcpOfferingResponse, DefenderForContainersGcpOfferingResponseArgs

    The containers GCP offering
    Description string
    The offering description.
    DataPipelineNativeCloudConnection Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionResponse
    The native cloud connection configuration
    EnableAuditLogsAutoProvisioning bool
    Is audit logs data collection enabled
    EnableDefenderAgentAutoProvisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    EnablePolicyAgentAutoProvisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    MdcContainersAgentlessDiscoveryK8S Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    NativeCloudConnection Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    Description string
    The offering description.
    DataPipelineNativeCloudConnection DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionResponse
    The native cloud connection configuration
    EnableAuditLogsAutoProvisioning bool
    Is audit logs data collection enabled
    EnableDefenderAgentAutoProvisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    EnablePolicyAgentAutoProvisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    MdcContainersAgentlessDiscoveryK8S DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment DefenderForContainersGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    NativeCloudConnection DefenderForContainersGcpOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    VmScanners DefenderForContainersGcpOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    description string
    The offering description.
    data_pipeline_native_cloud_connection object
    The native cloud connection configuration
    enable_audit_logs_auto_provisioning bool
    Is audit logs data collection enabled
    enable_defender_agent_auto_provisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enable_policy_agent_auto_provisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    mdc_containers_agentless_discovery_k8_s object
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment object
    The Microsoft Defender Container image assessment configuration
    native_cloud_connection object
    The native cloud connection configuration
    vm_scanners object
    The Microsoft Defender for Container K8s VM host scanning configuration
    description String
    The offering description.
    dataPipelineNativeCloudConnection DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionResponse
    The native cloud connection configuration
    enableAuditLogsAutoProvisioning Boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning Boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning Boolean
    Is Policy Kubernetes agent auto provisioning enabled
    mdcContainersAgentlessDiscoveryK8S DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderForContainersGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    nativeCloudConnection DefenderForContainersGcpOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    vmScanners DefenderForContainersGcpOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    description string
    The offering description.
    dataPipelineNativeCloudConnection DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionResponse
    The native cloud connection configuration
    enableAuditLogsAutoProvisioning boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning boolean
    Is Policy Kubernetes agent auto provisioning enabled
    mdcContainersAgentlessDiscoveryK8S DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderForContainersGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    nativeCloudConnection DefenderForContainersGcpOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    vmScanners DefenderForContainersGcpOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    description str
    The offering description.
    data_pipeline_native_cloud_connection DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionResponse
    The native cloud connection configuration
    enable_audit_logs_auto_provisioning bool
    Is audit logs data collection enabled
    enable_defender_agent_auto_provisioning bool
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enable_policy_agent_auto_provisioning bool
    Is Policy Kubernetes agent auto provisioning enabled
    mdc_containers_agentless_discovery_k8_s DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment DefenderForContainersGcpOfferingMdcContainersImageAssessmentResponse
    The Microsoft Defender Container image assessment configuration
    native_cloud_connection DefenderForContainersGcpOfferingNativeCloudConnectionResponse
    The native cloud connection configuration
    vm_scanners DefenderForContainersGcpOfferingVmScannersResponse
    The Microsoft Defender for Container K8s VM host scanning configuration
    description String
    The offering description.
    dataPipelineNativeCloudConnection Property Map
    The native cloud connection configuration
    enableAuditLogsAutoProvisioning Boolean
    Is audit logs data collection enabled
    enableDefenderAgentAutoProvisioning Boolean
    Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
    enablePolicyAgentAutoProvisioning Boolean
    Is Policy Kubernetes agent auto provisioning enabled
    mdcContainersAgentlessDiscoveryK8S Property Map
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment Property Map
    The Microsoft Defender Container image assessment configuration
    nativeCloudConnection Property Map
    The native cloud connection configuration
    vmScanners Property Map
    The Microsoft Defender for Container K8s VM host scanning configuration

    DefenderForContainersGcpOfferingVmScanners, DefenderForContainersGcpOfferingVmScannersArgs

    The Microsoft Defender for Container K8s VM host scanning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    Configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderForContainersGcpOfferingVmScannersResponse, DefenderForContainersGcpOfferingVmScannersResponseArgs

    The Microsoft Defender for Container K8s VM host scanning configuration
    Configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderForContainersJFrogOffering, DefenderForContainersJFrogOfferingArgs

    The Defender for Containers for JFrog Artifactory offering

    DefenderForContainersJFrogOfferingResponse, DefenderForContainersJFrogOfferingResponseArgs

    The Defender for Containers for JFrog Artifactory offering
    Description string
    The offering description.
    Description string
    The offering description.
    description string
    The offering description.
    description String
    The offering description.
    description string
    The offering description.
    description str
    The offering description.
    description String
    The offering description.

    DefenderForDatabasesGcpOffering, DefenderForDatabasesGcpOfferingArgs

    The Defender for Databases GCP offering configurations
    arc_auto_provisioning object
    The ARC autoprovisioning configuration
    defender_for_databases_arc_auto_provisioning object
    The native cloud connection configuration
    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    defenderForDatabasesArcAutoProvisioning Property Map
    The native cloud connection configuration

    DefenderForDatabasesGcpOfferingArcAutoProvisioning, DefenderForDatabasesGcpOfferingArcAutoProvisioningArgs

    The ARC autoprovisioning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    Configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    configuration object
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    configuration Property Map
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled

    DefenderForDatabasesGcpOfferingArcAutoProvisioningResponse, DefenderForDatabasesGcpOfferingArcAutoProvisioningResponseArgs

    The ARC autoprovisioning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    Configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    configuration object
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    configuration Property Map
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled

    DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioning, DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioningArgs

    The native cloud connection configuration
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    service_account_email_address string
    The service account email address in GCP for this offering
    workload_identity_provider_id string
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress string
    The service account email address in GCP for this offering
    workloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    service_account_email_address str
    The service account email address in GCP for this offering
    workload_identity_provider_id str
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for this offering

    DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioningResponse, DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioningResponseArgs

    The native cloud connection configuration
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    ServiceAccountEmailAddress string
    The service account email address in GCP for this offering
    WorkloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    service_account_email_address string
    The service account email address in GCP for this offering
    workload_identity_provider_id string
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress string
    The service account email address in GCP for this offering
    workloadIdentityProviderId string
    The GCP workload identity provider id for this offering
    service_account_email_address str
    The service account email address in GCP for this offering
    workload_identity_provider_id str
    The GCP workload identity provider id for this offering
    serviceAccountEmailAddress String
    The service account email address in GCP for this offering
    workloadIdentityProviderId String
    The GCP workload identity provider id for this offering

    DefenderForDatabasesGcpOfferingResponse, DefenderForDatabasesGcpOfferingResponseArgs

    The Defender for Databases GCP offering configurations
    description string
    The offering description.
    arc_auto_provisioning object
    The ARC autoprovisioning configuration
    defender_for_databases_arc_auto_provisioning object
    The native cloud connection configuration
    description String
    The offering description.
    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    defenderForDatabasesArcAutoProvisioning Property Map
    The native cloud connection configuration

    DefenderForServersAwsOffering, DefenderForServersAwsOfferingArgs

    The Defender for Servers AWS offering
    ArcAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    DefenderForServers Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingDefenderForServers
    The Defender for servers connection configuration
    MdeAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingSubPlan
    configuration for the servers offering subPlan
    VaAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    ArcAutoProvisioning DefenderForServersAwsOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    DefenderForServers DefenderForServersAwsOfferingDefenderForServers
    The Defender for servers connection configuration
    MdeAutoProvisioning DefenderForServersAwsOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan DefenderForServersAwsOfferingSubPlan
    configuration for the servers offering subPlan
    VaAutoProvisioning DefenderForServersAwsOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners DefenderForServersAwsOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    arc_auto_provisioning object
    The ARC autoprovisioning configuration
    defender_for_servers object
    The Defender for servers connection configuration
    mde_auto_provisioning object
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan object
    configuration for the servers offering subPlan
    va_auto_provisioning object
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners object
    The Microsoft Defender for Server VM scanning configuration
    arcAutoProvisioning DefenderForServersAwsOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersAwsOfferingDefenderForServers
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersAwsOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersAwsOfferingSubPlan
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersAwsOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersAwsOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    arcAutoProvisioning DefenderForServersAwsOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersAwsOfferingDefenderForServers
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersAwsOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersAwsOfferingSubPlan
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersAwsOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersAwsOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    arc_auto_provisioning DefenderForServersAwsOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    defender_for_servers DefenderForServersAwsOfferingDefenderForServers
    The Defender for servers connection configuration
    mde_auto_provisioning DefenderForServersAwsOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan DefenderForServersAwsOfferingSubPlan
    configuration for the servers offering subPlan
    va_auto_provisioning DefenderForServersAwsOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners DefenderForServersAwsOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    defenderForServers Property Map
    The Defender for servers connection configuration
    mdeAutoProvisioning Property Map
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan Property Map
    configuration for the servers offering subPlan
    vaAutoProvisioning Property Map
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners Property Map
    The Microsoft Defender for Server VM scanning configuration

    DefenderForServersAwsOfferingArcAutoProvisioning, DefenderForServersAwsOfferingArcAutoProvisioningArgs

    The ARC autoprovisioning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled

    DefenderForServersAwsOfferingArcAutoProvisioningResponse, DefenderForServersAwsOfferingArcAutoProvisioningResponseArgs

    The ARC autoprovisioning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled

    DefenderForServersAwsOfferingDefenderForServers, DefenderForServersAwsOfferingDefenderForServersArgs

    The Defender for servers connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    cloudRoleArn String
    The cloud role ARN in AWS for this feature

    DefenderForServersAwsOfferingDefenderForServersResponse, DefenderForServersAwsOfferingDefenderForServersResponseArgs

    The Defender for servers connection configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    cloudRoleArn String
    The cloud role ARN in AWS for this feature

    DefenderForServersAwsOfferingMdeAutoProvisioning, DefenderForServersAwsOfferingMdeAutoProvisioningArgs

    The Microsoft Defender for Endpoint autoprovisioning configuration
    Configuration object
    configuration for Microsoft Defender for Endpoint autoprovisioning
    Enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    Configuration interface{}
    configuration for Microsoft Defender for Endpoint autoprovisioning
    Enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Object
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled Boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled Boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled

    DefenderForServersAwsOfferingMdeAutoProvisioningResponse, DefenderForServersAwsOfferingMdeAutoProvisioningResponseArgs

    The Microsoft Defender for Endpoint autoprovisioning configuration
    Configuration object
    configuration for Microsoft Defender for Endpoint autoprovisioning
    Enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    Configuration interface{}
    configuration for Microsoft Defender for Endpoint autoprovisioning
    Enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Object
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled Boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled Boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled

    DefenderForServersAwsOfferingResponse, DefenderForServersAwsOfferingResponseArgs

    The Defender for Servers AWS offering
    Description string
    The offering description.
    ArcAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    DefenderForServers Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    MdeAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingSubPlanResponse
    configuration for the servers offering subPlan
    VaAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    Description string
    The offering description.
    ArcAutoProvisioning DefenderForServersAwsOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    DefenderForServers DefenderForServersAwsOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    MdeAutoProvisioning DefenderForServersAwsOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan DefenderForServersAwsOfferingSubPlanResponse
    configuration for the servers offering subPlan
    VaAutoProvisioning DefenderForServersAwsOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners DefenderForServersAwsOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    description string
    The offering description.
    arc_auto_provisioning object
    The ARC autoprovisioning configuration
    defender_for_servers object
    The Defender for servers connection configuration
    mde_auto_provisioning object
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan object
    configuration for the servers offering subPlan
    va_auto_provisioning object
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners object
    The Microsoft Defender for Server VM scanning configuration
    description String
    The offering description.
    arcAutoProvisioning DefenderForServersAwsOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersAwsOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersAwsOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersAwsOfferingSubPlanResponse
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersAwsOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersAwsOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    description string
    The offering description.
    arcAutoProvisioning DefenderForServersAwsOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersAwsOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersAwsOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersAwsOfferingSubPlanResponse
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersAwsOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersAwsOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    description str
    The offering description.
    arc_auto_provisioning DefenderForServersAwsOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    defender_for_servers DefenderForServersAwsOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    mde_auto_provisioning DefenderForServersAwsOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan DefenderForServersAwsOfferingSubPlanResponse
    configuration for the servers offering subPlan
    va_auto_provisioning DefenderForServersAwsOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners DefenderForServersAwsOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    description String
    The offering description.
    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    defenderForServers Property Map
    The Defender for servers connection configuration
    mdeAutoProvisioning Property Map
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan Property Map
    configuration for the servers offering subPlan
    vaAutoProvisioning Property Map
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners Property Map
    The Microsoft Defender for Server VM scanning configuration

    DefenderForServersAwsOfferingSubPlan, DefenderForServersAwsOfferingSubPlanArgs

    configuration for the servers offering subPlan
    Type string | Pulumi.AzureNative.Security.SubPlan
    The available sub plans
    Type string | SubPlan
    The available sub plans
    type string | "P1" | "P2"
    The available sub plans
    type String | SubPlan
    The available sub plans
    type string | SubPlan
    The available sub plans
    type str | SubPlan
    The available sub plans
    type String | "P1" | "P2"
    The available sub plans

    DefenderForServersAwsOfferingSubPlanResponse, DefenderForServersAwsOfferingSubPlanResponseArgs

    configuration for the servers offering subPlan
    Type string
    The available sub plans
    Type string
    The available sub plans
    type string
    The available sub plans
    type String
    The available sub plans
    type string
    The available sub plans
    type str
    The available sub plans
    type String
    The available sub plans

    DefenderForServersAwsOfferingVaAutoProvisioning, DefenderForServersAwsOfferingVaAutoProvisioningArgs

    The Vulnerability Assessment autoprovisioning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    Configuration DefenderForServersAwsOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration object
    configuration for Vulnerability Assessment autoprovisioning
    enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration Property Map
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled

    DefenderForServersAwsOfferingVaAutoProvisioningConfiguration, DefenderForServersAwsOfferingVaAutoProvisioningConfigurationArgs

    configuration for Vulnerability Assessment autoprovisioning
    Type string | Pulumi.AzureNative.Security.Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    Type string | Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type string | "Qualys" | "TVM"
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type String | Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type string | Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type str | Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type String | "Qualys" | "TVM"
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'

    DefenderForServersAwsOfferingVaAutoProvisioningConfigurationResponse, DefenderForServersAwsOfferingVaAutoProvisioningConfigurationResponseArgs

    configuration for Vulnerability Assessment autoprovisioning
    Type string
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    Type string
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type string
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type String
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type string
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type str
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type String
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'

    DefenderForServersAwsOfferingVaAutoProvisioningResponse, DefenderForServersAwsOfferingVaAutoProvisioningResponseArgs

    The Vulnerability Assessment autoprovisioning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    Configuration DefenderForServersAwsOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration object
    configuration for Vulnerability Assessment autoprovisioning
    enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    enabled boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration Property Map
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled

    DefenderForServersAwsOfferingVmScanners, DefenderForServersAwsOfferingVmScannersArgs

    The Microsoft Defender for Server VM scanning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderForServersAwsOfferingVmScannersResponse, DefenderForServersAwsOfferingVmScannersResponseArgs

    The Microsoft Defender for Server VM scanning configuration
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    cloud_role_arn string
    The cloud role ARN in AWS for this feature
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderForServersGcpOffering, DefenderForServersGcpOfferingArgs

    The Defender for Servers GCP offering configurations
    ArcAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    DefenderForServers Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingDefenderForServers
    The Defender for servers connection configuration
    MdeAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingSubPlan
    configuration for the servers offering subPlan
    VaAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    ArcAutoProvisioning DefenderForServersGcpOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    DefenderForServers DefenderForServersGcpOfferingDefenderForServers
    The Defender for servers connection configuration
    MdeAutoProvisioning DefenderForServersGcpOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan DefenderForServersGcpOfferingSubPlan
    configuration for the servers offering subPlan
    VaAutoProvisioning DefenderForServersGcpOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners DefenderForServersGcpOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    arc_auto_provisioning object
    The ARC autoprovisioning configuration
    defender_for_servers object
    The Defender for servers connection configuration
    mde_auto_provisioning object
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan object
    configuration for the servers offering subPlan
    va_auto_provisioning object
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners object
    The Microsoft Defender for Server VM scanning configuration
    arcAutoProvisioning DefenderForServersGcpOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersGcpOfferingDefenderForServers
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersGcpOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersGcpOfferingSubPlan
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersGcpOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersGcpOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    arcAutoProvisioning DefenderForServersGcpOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersGcpOfferingDefenderForServers
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersGcpOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersGcpOfferingSubPlan
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersGcpOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersGcpOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    arc_auto_provisioning DefenderForServersGcpOfferingArcAutoProvisioning
    The ARC autoprovisioning configuration
    defender_for_servers DefenderForServersGcpOfferingDefenderForServers
    The Defender for servers connection configuration
    mde_auto_provisioning DefenderForServersGcpOfferingMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan DefenderForServersGcpOfferingSubPlan
    configuration for the servers offering subPlan
    va_auto_provisioning DefenderForServersGcpOfferingVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners DefenderForServersGcpOfferingVmScanners
    The Microsoft Defender for Server VM scanning configuration
    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    defenderForServers Property Map
    The Defender for servers connection configuration
    mdeAutoProvisioning Property Map
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan Property Map
    configuration for the servers offering subPlan
    vaAutoProvisioning Property Map
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners Property Map
    The Microsoft Defender for Server VM scanning configuration

    DefenderForServersGcpOfferingArcAutoProvisioning, DefenderForServersGcpOfferingArcAutoProvisioningArgs

    The ARC autoprovisioning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    Configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    configuration object
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    configuration Property Map
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled

    DefenderForServersGcpOfferingArcAutoProvisioningResponse, DefenderForServersGcpOfferingArcAutoProvisioningResponseArgs

    The ARC autoprovisioning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    Configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    configuration object
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningConfigurationResponse
    Configuration for servers Arc auto provisioning for a given environment
    enabled bool
    Is arc auto provisioning enabled
    configuration Property Map
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled

    DefenderForServersGcpOfferingDefenderForServers, DefenderForServersGcpOfferingDefenderForServersArgs

    The Defender for servers connection configuration
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderForServersGcpOfferingDefenderForServersResponse, DefenderForServersGcpOfferingDefenderForServersResponseArgs

    The Defender for servers connection configuration
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    ServiceAccountEmailAddress string
    The service account email address in GCP for this feature
    WorkloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    service_account_email_address string
    The service account email address in GCP for this feature
    workload_identity_provider_id string
    The workload identity provider id in GCP for this feature
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature
    serviceAccountEmailAddress string
    The service account email address in GCP for this feature
    workloadIdentityProviderId string
    The workload identity provider id in GCP for this feature
    service_account_email_address str
    The service account email address in GCP for this feature
    workload_identity_provider_id str
    The workload identity provider id in GCP for this feature
    serviceAccountEmailAddress String
    The service account email address in GCP for this feature
    workloadIdentityProviderId String
    The workload identity provider id in GCP for this feature

    DefenderForServersGcpOfferingMdeAutoProvisioning, DefenderForServersGcpOfferingMdeAutoProvisioningArgs

    The Microsoft Defender for Endpoint autoprovisioning configuration
    Configuration object
    configuration for Microsoft Defender for Endpoint autoprovisioning
    Enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    Configuration interface{}
    configuration for Microsoft Defender for Endpoint autoprovisioning
    Enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Object
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled Boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled Boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled

    DefenderForServersGcpOfferingMdeAutoProvisioningResponse, DefenderForServersGcpOfferingMdeAutoProvisioningResponseArgs

    The Microsoft Defender for Endpoint autoprovisioning configuration
    Configuration object
    configuration for Microsoft Defender for Endpoint autoprovisioning
    Enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    Configuration interface{}
    configuration for Microsoft Defender for Endpoint autoprovisioning
    Enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Object
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled Boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled bool
    Is Microsoft Defender for Endpoint auto provisioning enabled
    configuration Any
    configuration for Microsoft Defender for Endpoint autoprovisioning
    enabled Boolean
    Is Microsoft Defender for Endpoint auto provisioning enabled

    DefenderForServersGcpOfferingResponse, DefenderForServersGcpOfferingResponseArgs

    The Defender for Servers GCP offering configurations
    Description string
    The offering description.
    ArcAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    DefenderForServers Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    MdeAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingSubPlanResponse
    configuration for the servers offering subPlan
    VaAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    Description string
    The offering description.
    ArcAutoProvisioning DefenderForServersGcpOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    DefenderForServers DefenderForServersGcpOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    MdeAutoProvisioning DefenderForServersGcpOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan DefenderForServersGcpOfferingSubPlanResponse
    configuration for the servers offering subPlan
    VaAutoProvisioning DefenderForServersGcpOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners DefenderForServersGcpOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    description string
    The offering description.
    arc_auto_provisioning object
    The ARC autoprovisioning configuration
    defender_for_servers object
    The Defender for servers connection configuration
    mde_auto_provisioning object
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan object
    configuration for the servers offering subPlan
    va_auto_provisioning object
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners object
    The Microsoft Defender for Server VM scanning configuration
    description String
    The offering description.
    arcAutoProvisioning DefenderForServersGcpOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersGcpOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersGcpOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersGcpOfferingSubPlanResponse
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersGcpOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersGcpOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    description string
    The offering description.
    arcAutoProvisioning DefenderForServersGcpOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersGcpOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersGcpOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersGcpOfferingSubPlanResponse
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersGcpOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersGcpOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    description str
    The offering description.
    arc_auto_provisioning DefenderForServersGcpOfferingArcAutoProvisioningResponse
    The ARC autoprovisioning configuration
    defender_for_servers DefenderForServersGcpOfferingDefenderForServersResponse
    The Defender for servers connection configuration
    mde_auto_provisioning DefenderForServersGcpOfferingMdeAutoProvisioningResponse
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan DefenderForServersGcpOfferingSubPlanResponse
    configuration for the servers offering subPlan
    va_auto_provisioning DefenderForServersGcpOfferingVaAutoProvisioningResponse
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners DefenderForServersGcpOfferingVmScannersResponse
    The Microsoft Defender for Server VM scanning configuration
    description String
    The offering description.
    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    defenderForServers Property Map
    The Defender for servers connection configuration
    mdeAutoProvisioning Property Map
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan Property Map
    configuration for the servers offering subPlan
    vaAutoProvisioning Property Map
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners Property Map
    The Microsoft Defender for Server VM scanning configuration

    DefenderForServersGcpOfferingSubPlan, DefenderForServersGcpOfferingSubPlanArgs

    configuration for the servers offering subPlan
    Type string | Pulumi.AzureNative.Security.SubPlan
    The available sub plans
    Type string | SubPlan
    The available sub plans
    type string | "P1" | "P2"
    The available sub plans
    type String | SubPlan
    The available sub plans
    type string | SubPlan
    The available sub plans
    type str | SubPlan
    The available sub plans
    type String | "P1" | "P2"
    The available sub plans

    DefenderForServersGcpOfferingSubPlanResponse, DefenderForServersGcpOfferingSubPlanResponseArgs

    configuration for the servers offering subPlan
    Type string
    The available sub plans
    Type string
    The available sub plans
    type string
    The available sub plans
    type String
    The available sub plans
    type string
    The available sub plans
    type str
    The available sub plans
    type String
    The available sub plans

    DefenderForServersGcpOfferingVaAutoProvisioning, DefenderForServersGcpOfferingVaAutoProvisioningArgs

    The Vulnerability Assessment autoprovisioning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    Configuration DefenderForServersGcpOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration object
    configuration for Vulnerability Assessment autoprovisioning
    enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingVaAutoProvisioningConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration Property Map
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled

    DefenderForServersGcpOfferingVaAutoProvisioningConfiguration, DefenderForServersGcpOfferingVaAutoProvisioningConfigurationArgs

    configuration for Vulnerability Assessment autoprovisioning
    Type string | Pulumi.AzureNative.Security.Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    Type string | Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type string | "Qualys" | "TVM"
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type String | Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type string | Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type str | Type
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type String | "Qualys" | "TVM"
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'

    DefenderForServersGcpOfferingVaAutoProvisioningConfigurationResponse, DefenderForServersGcpOfferingVaAutoProvisioningConfigurationResponseArgs

    configuration for Vulnerability Assessment autoprovisioning
    Type string
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    Type string
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type string
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type String
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type string
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type str
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
    type String
    The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'

    DefenderForServersGcpOfferingVaAutoProvisioningResponse, DefenderForServersGcpOfferingVaAutoProvisioningResponseArgs

    The Vulnerability Assessment autoprovisioning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    Configuration DefenderForServersGcpOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration object
    configuration for Vulnerability Assessment autoprovisioning
    enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    enabled boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingVaAutoProvisioningConfigurationResponse
    configuration for Vulnerability Assessment autoprovisioning
    enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration Property Map
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled

    DefenderForServersGcpOfferingVmScanners, DefenderForServersGcpOfferingVmScannersArgs

    The Microsoft Defender for Server VM scanning configuration
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    Configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfiguration
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderForServersGcpOfferingVmScannersResponse, DefenderForServersGcpOfferingVmScannersResponseArgs

    The Microsoft Defender for Server VM scanning configuration
    Configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    configuration object
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    configuration VmScannersBaseConfigurationResponse
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DockerHubEnvironmentData, DockerHubEnvironmentDataArgs

    The Docker Hub connector environment data
    Authentication Pulumi.AzureNative.Security.Inputs.AccessTokenAuthentication
    The Docker Hub organization authentication details
    ScanInterval double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    Authentication AccessTokenAuthentication
    The Docker Hub organization authentication details
    ScanInterval float64
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication object
    The Docker Hub organization authentication details
    scan_interval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication AccessTokenAuthentication
    The Docker Hub organization authentication details
    scanInterval Double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication AccessTokenAuthentication
    The Docker Hub organization authentication details
    scanInterval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication AccessTokenAuthentication
    The Docker Hub organization authentication details
    scan_interval float
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication Property Map
    The Docker Hub organization authentication details
    scanInterval Number
    Scan interval in hours (value should be between 1-hour to 24-hours)

    DockerHubEnvironmentDataResponse, DockerHubEnvironmentDataResponseArgs

    The Docker Hub connector environment data
    Authentication Pulumi.AzureNative.Security.Inputs.AccessTokenAuthenticationResponse
    The Docker Hub organization authentication details
    ScanInterval double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    Authentication AccessTokenAuthenticationResponse
    The Docker Hub organization authentication details
    ScanInterval float64
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication object
    The Docker Hub organization authentication details
    scan_interval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication AccessTokenAuthenticationResponse
    The Docker Hub organization authentication details
    scanInterval Double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication AccessTokenAuthenticationResponse
    The Docker Hub organization authentication details
    scanInterval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication AccessTokenAuthenticationResponse
    The Docker Hub organization authentication details
    scan_interval float
    Scan interval in hours (value should be between 1-hour to 24-hours)
    authentication Property Map
    The Docker Hub organization authentication details
    scanInterval Number
    Scan interval in hours (value should be between 1-hour to 24-hours)

    GcpOrganizationalDataMember, GcpOrganizationalDataMemberArgs

    The gcpOrganization data for the member account
    ManagementProjectNumber string
    The GCP management project number from organizational onboarding
    ParentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    ManagementProjectNumber string
    The GCP management project number from organizational onboarding
    ParentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    management_project_number string
    The GCP management project number from organizational onboarding
    parent_hierarchy_id string
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    managementProjectNumber String
    The GCP management project number from organizational onboarding
    parentHierarchyId String
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    managementProjectNumber string
    The GCP management project number from organizational onboarding
    parentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    management_project_number str
    The GCP management project number from organizational onboarding
    parent_hierarchy_id str
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    managementProjectNumber String
    The GCP management project number from organizational onboarding
    parentHierarchyId String
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent

    GcpOrganizationalDataMemberResponse, GcpOrganizationalDataMemberResponseArgs

    The gcpOrganization data for the member account
    ManagementProjectNumber string
    The GCP management project number from organizational onboarding
    ParentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    ManagementProjectNumber string
    The GCP management project number from organizational onboarding
    ParentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    management_project_number string
    The GCP management project number from organizational onboarding
    parent_hierarchy_id string
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    managementProjectNumber String
    The GCP management project number from organizational onboarding
    parentHierarchyId String
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    managementProjectNumber string
    The GCP management project number from organizational onboarding
    parentHierarchyId string
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    management_project_number str
    The GCP management project number from organizational onboarding
    parent_hierarchy_id str
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
    managementProjectNumber String
    The GCP management project number from organizational onboarding
    parentHierarchyId String
    If the multi cloud account is not of membership type organization, this will be the ID of the project's parent

    GcpOrganizationalDataOrganization, GcpOrganizationalDataOrganizationArgs

    The gcpOrganization data for the parent account
    ExcludedProjectNumbers List<string>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    ServiceAccountEmailAddress string
    The service account email address which represents the organization level permissions container.
    WorkloadIdentityProviderId string
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    ExcludedProjectNumbers []string
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    ServiceAccountEmailAddress string
    The service account email address which represents the organization level permissions container.
    WorkloadIdentityProviderId string
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    excluded_project_numbers list(string)
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    service_account_email_address string
    The service account email address which represents the organization level permissions container.
    workload_identity_provider_id string
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    excludedProjectNumbers List<String>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    serviceAccountEmailAddress String
    The service account email address which represents the organization level permissions container.
    workloadIdentityProviderId String
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    excludedProjectNumbers string[]
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    serviceAccountEmailAddress string
    The service account email address which represents the organization level permissions container.
    workloadIdentityProviderId string
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    excluded_project_numbers Sequence[str]
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    service_account_email_address str
    The service account email address which represents the organization level permissions container.
    workload_identity_provider_id str
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    excludedProjectNumbers List<String>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    serviceAccountEmailAddress String
    The service account email address which represents the organization level permissions container.
    workloadIdentityProviderId String
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors

    GcpOrganizationalDataOrganizationResponse, GcpOrganizationalDataOrganizationResponseArgs

    The gcpOrganization data for the parent account
    OrganizationName string
    GCP organization name
    ExcludedProjectNumbers List<string>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    ServiceAccountEmailAddress string
    The service account email address which represents the organization level permissions container.
    WorkloadIdentityProviderId string
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    OrganizationName string
    GCP organization name
    ExcludedProjectNumbers []string
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    ServiceAccountEmailAddress string
    The service account email address which represents the organization level permissions container.
    WorkloadIdentityProviderId string
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    organization_name string
    GCP organization name
    excluded_project_numbers list(string)
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    service_account_email_address string
    The service account email address which represents the organization level permissions container.
    workload_identity_provider_id string
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    organizationName String
    GCP organization name
    excludedProjectNumbers List<String>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    serviceAccountEmailAddress String
    The service account email address which represents the organization level permissions container.
    workloadIdentityProviderId String
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    organizationName string
    GCP organization name
    excludedProjectNumbers string[]
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    serviceAccountEmailAddress string
    The service account email address which represents the organization level permissions container.
    workloadIdentityProviderId string
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    organization_name str
    GCP organization name
    excluded_project_numbers Sequence[str]
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    service_account_email_address str
    The service account email address which represents the organization level permissions container.
    workload_identity_provider_id str
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors
    organizationName String
    GCP organization name
    excludedProjectNumbers List<String>
    If the multi cloud account is of membership type organization, list of accounts excluded from offering
    serviceAccountEmailAddress String
    The service account email address which represents the organization level permissions container.
    workloadIdentityProviderId String
    The GCP workload identity provider id which represents the permissions required to auto provision security connectors

    GcpProjectDetails, GcpProjectDetailsArgs

    The details about the project represented by the security connector
    ProjectId string
    The GCP Project id
    ProjectNumber string
    The unique GCP Project number
    ProjectId string
    The GCP Project id
    ProjectNumber string
    The unique GCP Project number
    project_id string
    The GCP Project id
    project_number string
    The unique GCP Project number
    projectId String
    The GCP Project id
    projectNumber String
    The unique GCP Project number
    projectId string
    The GCP Project id
    projectNumber string
    The unique GCP Project number
    project_id str
    The GCP Project id
    project_number str
    The unique GCP Project number
    projectId String
    The GCP Project id
    projectNumber String
    The unique GCP Project number

    GcpProjectDetailsResponse, GcpProjectDetailsResponseArgs

    The details about the project represented by the security connector
    ProjectName string
    GCP project name
    WorkloadIdentityPoolId string
    The GCP workload identity federation pool id
    ProjectId string
    The GCP Project id
    ProjectNumber string
    The unique GCP Project number
    ProjectName string
    GCP project name
    WorkloadIdentityPoolId string
    The GCP workload identity federation pool id
    ProjectId string
    The GCP Project id
    ProjectNumber string
    The unique GCP Project number
    project_name string
    GCP project name
    workload_identity_pool_id string
    The GCP workload identity federation pool id
    project_id string
    The GCP Project id
    project_number string
    The unique GCP Project number
    projectName String
    GCP project name
    workloadIdentityPoolId String
    The GCP workload identity federation pool id
    projectId String
    The GCP Project id
    projectNumber String
    The unique GCP Project number
    projectName string
    GCP project name
    workloadIdentityPoolId string
    The GCP workload identity federation pool id
    projectId string
    The GCP Project id
    projectNumber string
    The unique GCP Project number
    project_name str
    GCP project name
    workload_identity_pool_id str
    The GCP workload identity federation pool id
    project_id str
    The GCP Project id
    project_number str
    The unique GCP Project number
    projectName String
    GCP project name
    workloadIdentityPoolId String
    The GCP workload identity federation pool id
    projectId String
    The GCP Project id
    projectNumber String
    The unique GCP Project number

    GcpProjectEnvironmentData, GcpProjectEnvironmentDataArgs

    The GCP project connector environment data
    OrganizationalData GcpOrganizationalDataMember | GcpOrganizationalDataOrganization
    The Gcp project's organizational data
    ProjectDetails GcpProjectDetails
    The Gcp project's details
    ScanInterval float64
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizational_data object | object
    The Gcp project's organizational data
    project_details object
    The Gcp project's details
    scan_interval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizationalData GcpOrganizationalDataMember | GcpOrganizationalDataOrganization
    The Gcp project's organizational data
    projectDetails GcpProjectDetails
    The Gcp project's details
    scanInterval Double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizationalData GcpOrganizationalDataMember | GcpOrganizationalDataOrganization
    The Gcp project's organizational data
    projectDetails GcpProjectDetails
    The Gcp project's details
    scanInterval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizational_data GcpOrganizationalDataMember | GcpOrganizationalDataOrganization
    The Gcp project's organizational data
    project_details GcpProjectDetails
    The Gcp project's details
    scan_interval float
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizationalData Property Map | Property Map
    The Gcp project's organizational data
    projectDetails Property Map
    The Gcp project's details
    scanInterval Number
    Scan interval in hours (value should be between 1-hour to 24-hours)

    GcpProjectEnvironmentDataResponse, GcpProjectEnvironmentDataResponseArgs

    The GCP project connector environment data
    OrganizationalData GcpOrganizationalDataMemberResponse | GcpOrganizationalDataOrganizationResponse
    The Gcp project's organizational data
    ProjectDetails GcpProjectDetailsResponse
    The Gcp project's details
    ScanInterval float64
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizational_data object | object
    The Gcp project's organizational data
    project_details object
    The Gcp project's details
    scan_interval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizationalData GcpOrganizationalDataMemberResponse | GcpOrganizationalDataOrganizationResponse
    The Gcp project's organizational data
    projectDetails GcpProjectDetailsResponse
    The Gcp project's details
    scanInterval Double
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizationalData GcpOrganizationalDataMemberResponse | GcpOrganizationalDataOrganizationResponse
    The Gcp project's organizational data
    projectDetails GcpProjectDetailsResponse
    The Gcp project's details
    scanInterval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizational_data GcpOrganizationalDataMemberResponse | GcpOrganizationalDataOrganizationResponse
    The Gcp project's organizational data
    project_details GcpProjectDetailsResponse
    The Gcp project's details
    scan_interval float
    Scan interval in hours (value should be between 1-hour to 24-hours)
    organizationalData Property Map | Property Map
    The Gcp project's organizational data
    projectDetails Property Map
    The Gcp project's details
    scanInterval Number
    Scan interval in hours (value should be between 1-hour to 24-hours)

    GithubScopeEnvironmentData, GithubScopeEnvironmentDataArgs

    The github scope connector's environment data

    GithubScopeEnvironmentDataResponse, GithubScopeEnvironmentDataResponseArgs

    The github scope connector's environment data

    GitlabScopeEnvironmentData, GitlabScopeEnvironmentDataArgs

    The GitLab scope connector's environment data

    GitlabScopeEnvironmentDataResponse, GitlabScopeEnvironmentDataResponseArgs

    The GitLab scope connector's environment data

    JFrogEnvironmentData, JFrogEnvironmentDataArgs

    The JFrog Artifactory connector environment data
    ScanInterval int
    Scan interval in hours (value should be between 1-hour to 24-hours)
    ScanInterval int
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scan_interval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scanInterval Integer
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scanInterval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scan_interval int
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scanInterval Number
    Scan interval in hours (value should be between 1-hour to 24-hours)

    JFrogEnvironmentDataResponse, JFrogEnvironmentDataResponseArgs

    The JFrog Artifactory connector environment data
    ScanInterval int
    Scan interval in hours (value should be between 1-hour to 24-hours)
    ScanInterval int
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scan_interval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scanInterval Integer
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scanInterval number
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scan_interval int
    Scan interval in hours (value should be between 1-hour to 24-hours)
    scanInterval Number
    Scan interval in hours (value should be between 1-hour to 24-hours)

    ScanningMode, ScanningModeArgs

    Default
    Default Default
    ScanningModeDefault
    Default Default
    "Default"
    Default Default
    Default
    Default Default
    Default
    Default Default
    DEFAULT
    Default Default
    "Default"
    Default Default

    SubPlan, SubPlanArgs

    P1
    P1 P1
    P2
    P2 P2
    SubPlanP1
    P1 P1
    SubPlanP2
    P2 P2
    "P1"
    P1 P1
    "P2"
    P2 P2
    P1
    P1 P1
    P2
    P2 P2
    P1
    P1 P1
    P2
    P2 P2
    P1
    P1 P1
    P2
    P2 P2
    "P1"
    P1 P1
    "P2"
    P2 P2

    SystemDataResponse, SystemDataResponseArgs

    Metadata pertaining to creation and last modification of 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 string
    The timestamp of resource creation (UTC).
    created_by string
    The identity that created the resource.
    created_by_type string
    The type of identity that created the resource.
    last_modified_at string
    The timestamp of resource last modification (UTC)
    last_modified_by string
    The identity that last modified the resource.
    last_modified_by_type 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.

    Type, TypeArgs

    Qualys
    Qualys Qualys
    TVM
    TVM TVM
    TypeQualys
    Qualys Qualys
    TypeTVM
    TVM TVM
    "Qualys"
    Qualys Qualys
    "TVM"
    TVM TVM
    Qualys
    Qualys Qualys
    TVM
    TVM TVM
    Qualys
    Qualys Qualys
    TVM
    TVM TVM
    QUALYS
    Qualys Qualys
    TVM
    TVM TVM
    "Qualys"
    Qualys Qualys
    "TVM"
    TVM TVM

    VmScannersBaseConfiguration, VmScannersBaseConfigurationArgs

    Configuration for VM scanning
    ExclusionTags Dictionary<string, string>
    Tags that indicates that a resource should not be scanned
    ScanningMode string | Pulumi.AzureNative.Security.ScanningMode
    The scanning mode for the VM scan.
    ExclusionTags map[string]string
    Tags that indicates that a resource should not be scanned
    ScanningMode string | ScanningMode
    The scanning mode for the VM scan.
    exclusion_tags map(string)
    Tags that indicates that a resource should not be scanned
    scanning_mode string | "Default"
    The scanning mode for the VM scan.
    exclusionTags Map<String,String>
    Tags that indicates that a resource should not be scanned
    scanningMode String | ScanningMode
    The scanning mode for the VM scan.
    exclusionTags {[key: string]: string}
    Tags that indicates that a resource should not be scanned
    scanningMode string | ScanningMode
    The scanning mode for the VM scan.
    exclusion_tags Mapping[str, str]
    Tags that indicates that a resource should not be scanned
    scanning_mode str | ScanningMode
    The scanning mode for the VM scan.
    exclusionTags Map<String>
    Tags that indicates that a resource should not be scanned
    scanningMode String | "Default"
    The scanning mode for the VM scan.

    VmScannersBaseConfigurationResponse, VmScannersBaseConfigurationResponseArgs

    Configuration for VM scanning
    ExclusionTags Dictionary<string, string>
    Tags that indicates that a resource should not be scanned
    ScanningMode string
    The scanning mode for the VM scan.
    ExclusionTags map[string]string
    Tags that indicates that a resource should not be scanned
    ScanningMode string
    The scanning mode for the VM scan.
    exclusion_tags map(string)
    Tags that indicates that a resource should not be scanned
    scanning_mode string
    The scanning mode for the VM scan.
    exclusionTags Map<String,String>
    Tags that indicates that a resource should not be scanned
    scanningMode String
    The scanning mode for the VM scan.
    exclusionTags {[key: string]: string}
    Tags that indicates that a resource should not be scanned
    scanningMode string
    The scanning mode for the VM scan.
    exclusion_tags Mapping[str, str]
    Tags that indicates that a resource should not be scanned
    scanning_mode str
    The scanning mode for the VM scan.
    exclusionTags Map<String>
    Tags that indicates that a resource should not be scanned
    scanningMode String
    The scanning mode for the VM scan.

    Import

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

    $ pulumi import azure-native:security:SecurityConnector exampleSecurityConnectorName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Security/securityConnectors/{securityConnectorName} 
    

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

    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 v2 docs if using the v2 version of this package.
    Viewing docs for Azure Native v3.26.0
    published on Thursday, Aug 13, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial