1. Packages
  2. Azure Native
  3. API Docs
  4. security
  5. SecurityConnector
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi

azure-native.security.SecurityConnector

Explore with Pulumi AI

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.
Azure Native v3.3.0 published on Monday, Apr 28, 2025 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
    	})
    }
    
    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.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var 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": 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.
    
    

    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[]
        {
            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.AwsOrganizationalDataMaster{
    			OrganizationMembershipType: "Organization",
    			ExcludedAccountIds: []string{
    				"string",
    			},
    			StacksetName: "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.CspmMonitorAwsOffering{
    			OfferingType: "CspmMonitorAws",
    			NativeCloudConnection: security.CspmMonitorAwsOfferingNativeCloudConnection{
    				CloudRoleArn: "string",
    			},
    		},
    	},
    	SecurityConnectorName: pulumi.String("string"),
    	Tags: pulumi.StringMap{
    		"string": pulumi.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)
            .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": 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 within the user's subscription. 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
    Location where the resource is stored
    Offerings List<object>
    A collection of offerings for the security connector.
    SecurityConnectorName string
    The security connector name.
    Tags Dictionary<string, string>
    A list of key value pairs that describe the resource.
    ResourceGroupName string
    The name of the resource group within the user's subscription. 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
    Location where the resource is stored
    Offerings []interface{}
    A collection of offerings for the security connector.
    SecurityConnectorName string
    The security connector name.
    Tags map[string]string
    A list of key value pairs that describe the resource.
    resourceGroupName String
    The name of the resource group within the user's subscription. 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
    Location where the resource is stored
    offerings List<Object>
    A collection of offerings for the security connector.
    securityConnectorName String
    The security connector name.
    tags Map<String,String>
    A list of key value pairs that describe the resource.
    resourceGroupName string
    The name of the resource group within the user's subscription. 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
    Location where the resource is stored
    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}
    A list of key value pairs that describe the resource.
    resource_group_name str
    The name of the resource group within the user's subscription. 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
    Location where the resource is stored
    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]
    A list of key value pairs that describe the resource.
    resourceGroupName String
    The name of the resource group within the user's subscription. 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
    Location where the resource is stored
    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>
    A list of key value pairs that describe the resource.

    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
    Resource name
    SystemData Pulumi.AzureNative.Security.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    Resource type
    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
    Resource name
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    Resource type
    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
    Resource name
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    Resource type
    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
    Resource name
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    Resource type
    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
    Resource name
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    Resource type
    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
    Resource name
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    Resource type
    etag String
    Entity tag is used for comparing two or more entities from the same requested resource.

    Supporting Types

    AccessTokenAuthentication, AccessTokenAuthenticationArgs

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

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

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

    ArcAutoProvisioningResponseConfiguration, ArcAutoProvisioningResponseConfigurationArgs

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

    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)
    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

    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)
    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

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

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

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

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

    AzureDevOpsScopeEnvironmentDataResponse, AzureDevOpsScopeEnvironmentDataResponseArgs

    CloudName, CloudNameArgs

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

    CspmMonitorAwsOffering, CspmMonitorAwsOfferingArgs

    nativeCloudConnection Property Map
    The native cloud connection configuration

    CspmMonitorAwsOfferingNativeCloudConnection, CspmMonitorAwsOfferingNativeCloudConnectionArgs

    CloudRoleArn 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
    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

    Description string
    The offering description.
    NativeCloudConnection CspmMonitorAwsOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    description String
    The offering description.
    nativeCloudConnection CspmMonitorAwsOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    description string
    The offering description.
    nativeCloudConnection CspmMonitorAwsOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    description str
    The offering description.
    native_cloud_connection CspmMonitorAwsOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    description String
    The offering description.
    nativeCloudConnection Property Map
    The native cloud connection configuration

    CspmMonitorAwsOfferingResponseNativeCloudConnection, CspmMonitorAwsOfferingResponseNativeCloudConnectionArgs

    CloudRoleArn 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
    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

    CspmMonitorAzureDevOpsOffering, CspmMonitorAzureDevOpsOfferingArgs

    CspmMonitorAzureDevOpsOfferingResponse, CspmMonitorAzureDevOpsOfferingResponseArgs

    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

    CspmMonitorDockerHubOfferingResponse, CspmMonitorDockerHubOfferingResponseArgs

    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

    nativeCloudConnection Property Map
    The native cloud connection configuration

    CspmMonitorGcpOfferingNativeCloudConnection, CspmMonitorGcpOfferingNativeCloudConnectionArgs

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

    Description string
    The offering description.
    NativeCloudConnection CspmMonitorGcpOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    description String
    The offering description.
    nativeCloudConnection CspmMonitorGcpOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    description string
    The offering description.
    nativeCloudConnection CspmMonitorGcpOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    description str
    The offering description.
    native_cloud_connection CspmMonitorGcpOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    description String
    The offering description.
    nativeCloudConnection Property Map
    The native cloud connection configuration

    CspmMonitorGcpOfferingResponseNativeCloudConnection, CspmMonitorGcpOfferingResponseNativeCloudConnectionArgs

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

    CspmMonitorGitLabOffering, CspmMonitorGitLabOfferingArgs

    CspmMonitorGitLabOfferingResponse, CspmMonitorGitLabOfferingResponseArgs

    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

    CspmMonitorGithubOfferingResponse, CspmMonitorGithubOfferingResponseArgs

    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

    CspmMonitorJFrogOfferingResponse, CspmMonitorJFrogOfferingResponseArgs

    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

    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 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_k8s 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

    CiemDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    CiemOidc Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    CiemDiscovery DefenderCspmAwsOfferingCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    CiemOidc DefenderCspmAwsOfferingCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery DefenderCspmAwsOfferingCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    ciemOidc DefenderCspmAwsOfferingCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery DefenderCspmAwsOfferingCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    ciemOidc DefenderCspmAwsOfferingCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciem_discovery DefenderCspmAwsOfferingCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    ciem_oidc DefenderCspmAwsOfferingCiemOidc
    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

    DefenderCspmAwsOfferingCiemDiscovery, DefenderCspmAwsOfferingCiemDiscoveryArgs

    CloudRoleArn 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
    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

    DefenderCspmAwsOfferingCiemOidc, DefenderCspmAwsOfferingCiemOidcArgs

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

    DefenderCspmAwsOfferingDataSensitivityDiscovery, DefenderCspmAwsOfferingDataSensitivityDiscoveryArgs

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

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

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

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

    Description string
    The offering description.
    Ciem Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingResponseCiem
    Defenders CSPM Permissions Management offering configurations
    DataSensitivityDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    DatabasesDspm Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingResponseDatabasesDspm
    The databases DSPM configuration
    MdcContainersAgentlessDiscoveryK8s Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingResponseVmScanners
    The Microsoft Defender for CSPM offering VM scanning configuration
    Description string
    The offering description.
    Ciem DefenderCspmAwsOfferingResponseCiem
    Defenders CSPM Permissions Management offering configurations
    DataSensitivityDiscovery DefenderCspmAwsOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    DatabasesDspm DefenderCspmAwsOfferingResponseDatabasesDspm
    The databases DSPM configuration
    MdcContainersAgentlessDiscoveryK8s DefenderCspmAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment DefenderCspmAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    VmScanners DefenderCspmAwsOfferingResponseVmScanners
    The Microsoft Defender for CSPM offering VM scanning configuration
    description String
    The offering description.
    ciem DefenderCspmAwsOfferingResponseCiem
    Defenders CSPM Permissions Management offering configurations
    dataSensitivityDiscovery DefenderCspmAwsOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    databasesDspm DefenderCspmAwsOfferingResponseDatabasesDspm
    The databases DSPM configuration
    mdcContainersAgentlessDiscoveryK8s DefenderCspmAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderCspmAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderCspmAwsOfferingResponseVmScanners
    The Microsoft Defender for CSPM offering VM scanning configuration
    description string
    The offering description.
    ciem DefenderCspmAwsOfferingResponseCiem
    Defenders CSPM Permissions Management offering configurations
    dataSensitivityDiscovery DefenderCspmAwsOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    databasesDspm DefenderCspmAwsOfferingResponseDatabasesDspm
    The databases DSPM configuration
    mdcContainersAgentlessDiscoveryK8s DefenderCspmAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderCspmAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderCspmAwsOfferingResponseVmScanners
    The Microsoft Defender for CSPM offering VM scanning configuration
    description str
    The offering description.
    ciem DefenderCspmAwsOfferingResponseCiem
    Defenders CSPM Permissions Management offering configurations
    data_sensitivity_discovery DefenderCspmAwsOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    databases_dspm DefenderCspmAwsOfferingResponseDatabasesDspm
    The databases DSPM configuration
    mdc_containers_agentless_discovery_k8s DefenderCspmAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment DefenderCspmAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vm_scanners DefenderCspmAwsOfferingResponseVmScanners
    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

    DefenderCspmAwsOfferingResponseCiem, DefenderCspmAwsOfferingResponseCiemArgs

    CiemDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingResponseCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    CiemOidc Pulumi.AzureNative.Security.Inputs.DefenderCspmAwsOfferingResponseCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    CiemDiscovery DefenderCspmAwsOfferingResponseCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    CiemOidc DefenderCspmAwsOfferingResponseCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery DefenderCspmAwsOfferingResponseCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    ciemOidc DefenderCspmAwsOfferingResponseCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciemDiscovery DefenderCspmAwsOfferingResponseCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    ciemOidc DefenderCspmAwsOfferingResponseCiemOidc
    AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
    ciem_discovery DefenderCspmAwsOfferingResponseCiemDiscovery
    Defender CSPM Permissions Management discovery configuration
    ciem_oidc DefenderCspmAwsOfferingResponseCiemOidc
    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

    DefenderCspmAwsOfferingResponseCiemDiscovery, DefenderCspmAwsOfferingResponseCiemDiscoveryArgs

    CloudRoleArn 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
    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

    DefenderCspmAwsOfferingResponseCiemOidc, DefenderCspmAwsOfferingResponseCiemOidcArgs

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

    DefenderCspmAwsOfferingResponseDataSensitivityDiscovery, DefenderCspmAwsOfferingResponseDataSensitivityDiscoveryArgs

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

    DefenderCspmAwsOfferingResponseDatabasesDspm, DefenderCspmAwsOfferingResponseDatabasesDspmArgs

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

    DefenderCspmAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s, DefenderCspmAwsOfferingResponseMdcContainersAgentlessDiscoveryK8sArgs

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

    DefenderCspmAwsOfferingResponseMdcContainersImageAssessment, DefenderCspmAwsOfferingResponseMdcContainersImageAssessmentArgs

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

    DefenderCspmAwsOfferingResponseVmScanners, DefenderCspmAwsOfferingResponseVmScannersArgs

    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseResponseConfiguration
    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

    DefenderCspmAwsOfferingVmScanners, DefenderCspmAwsOfferingVmScannersArgs

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

    DefenderCspmDockerHubOffering, DefenderCspmDockerHubOfferingArgs

    DefenderCspmDockerHubOfferingResponse, DefenderCspmDockerHubOfferingResponseArgs

    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

    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
    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_k8s 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

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

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

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

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

    Description string
    The offering description.
    CiemDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingResponseCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    DataSensitivityDiscovery Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    MdcContainersAgentlessDiscoveryK8s Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderCspmGcpOfferingResponseVmScanners
    The Microsoft Defender for CSPM VM scanning configuration
    Description string
    The offering description.
    CiemDiscovery DefenderCspmGcpOfferingResponseCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    DataSensitivityDiscovery DefenderCspmGcpOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    MdcContainersAgentlessDiscoveryK8s DefenderCspmGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment DefenderCspmGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    VmScanners DefenderCspmGcpOfferingResponseVmScanners
    The Microsoft Defender for CSPM VM scanning configuration
    description String
    The offering description.
    ciemDiscovery DefenderCspmGcpOfferingResponseCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    dataSensitivityDiscovery DefenderCspmGcpOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    mdcContainersAgentlessDiscoveryK8s DefenderCspmGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderCspmGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    vmScanners DefenderCspmGcpOfferingResponseVmScanners
    The Microsoft Defender for CSPM VM scanning configuration
    description string
    The offering description.
    ciemDiscovery DefenderCspmGcpOfferingResponseCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    dataSensitivityDiscovery DefenderCspmGcpOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    mdcContainersAgentlessDiscoveryK8s DefenderCspmGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderCspmGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    vmScanners DefenderCspmGcpOfferingResponseVmScanners
    The Microsoft Defender for CSPM VM scanning configuration
    description str
    The offering description.
    ciem_discovery DefenderCspmGcpOfferingResponseCiemDiscovery
    GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
    data_sensitivity_discovery DefenderCspmGcpOfferingResponseDataSensitivityDiscovery
    The Microsoft Defender Data Sensitivity discovery configuration
    mdc_containers_agentless_discovery_k8s DefenderCspmGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment DefenderCspmGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    vm_scanners DefenderCspmGcpOfferingResponseVmScanners
    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

    DefenderCspmGcpOfferingResponseCiemDiscovery, DefenderCspmGcpOfferingResponseCiemDiscoveryArgs

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

    DefenderCspmGcpOfferingResponseDataSensitivityDiscovery, DefenderCspmGcpOfferingResponseDataSensitivityDiscoveryArgs

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

    DefenderCspmGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s, DefenderCspmGcpOfferingResponseMdcContainersAgentlessDiscoveryK8sArgs

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

    DefenderCspmGcpOfferingResponseMdcContainersImageAssessment, DefenderCspmGcpOfferingResponseMdcContainersImageAssessmentArgs

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

    DefenderCspmGcpOfferingResponseVmScanners, DefenderCspmGcpOfferingResponseVmScannersArgs

    Configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderCspmGcpOfferingVmScanners, DefenderCspmGcpOfferingVmScannersArgs

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

    DefenderCspmJFrogOffering, DefenderCspmJFrogOfferingArgs

    MdcContainersImageAssessment DefenderCspmJFrogOfferingMdcContainersImageAssessment
    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

    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

    Description string
    The offering description.
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderCspmJFrogOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    Description string
    The offering description.
    MdcContainersImageAssessment DefenderCspmJFrogOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    description String
    The offering description.
    mdcContainersImageAssessment DefenderCspmJFrogOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    description string
    The offering description.
    mdcContainersImageAssessment DefenderCspmJFrogOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    description str
    The offering description.
    mdc_containers_image_assessment DefenderCspmJFrogOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    description String
    The offering description.
    mdcContainersImageAssessment Property Map
    The Microsoft Defender Container image assessment configuration

    DefenderCspmJFrogOfferingResponseMdcContainersImageAssessment, DefenderCspmJFrogOfferingResponseMdcContainersImageAssessmentArgs

    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

    DefenderFoDatabasesAwsOffering, DefenderFoDatabasesAwsOfferingArgs

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

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

    DefenderFoDatabasesAwsOfferingDatabasesDspm, DefenderFoDatabasesAwsOfferingDatabasesDspmArgs

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

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

    Description string
    The offering description.
    ArcAutoProvisioning DefenderFoDatabasesAwsOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    DatabasesDspm DefenderFoDatabasesAwsOfferingResponseDatabasesDspm
    The databases data security posture management (DSPM) configuration
    Rds DefenderFoDatabasesAwsOfferingResponseRds
    The RDS configuration
    description String
    The offering description.
    arcAutoProvisioning DefenderFoDatabasesAwsOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    databasesDspm DefenderFoDatabasesAwsOfferingResponseDatabasesDspm
    The databases data security posture management (DSPM) configuration
    rds DefenderFoDatabasesAwsOfferingResponseRds
    The RDS configuration
    description string
    The offering description.
    arcAutoProvisioning DefenderFoDatabasesAwsOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    databasesDspm DefenderFoDatabasesAwsOfferingResponseDatabasesDspm
    The databases data security posture management (DSPM) configuration
    rds DefenderFoDatabasesAwsOfferingResponseRds
    The RDS configuration
    description str
    The offering description.
    arc_auto_provisioning DefenderFoDatabasesAwsOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    databases_dspm DefenderFoDatabasesAwsOfferingResponseDatabasesDspm
    The databases data security posture management (DSPM) configuration
    rds DefenderFoDatabasesAwsOfferingResponseRds
    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

    DefenderFoDatabasesAwsOfferingResponseArcAutoProvisioning, DefenderFoDatabasesAwsOfferingResponseArcAutoProvisioningArgs

    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningResponseConfiguration
    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 ArcAutoProvisioningResponseConfiguration
    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 ArcAutoProvisioningResponseConfiguration
    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 ArcAutoProvisioningResponseConfiguration
    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 ArcAutoProvisioningResponseConfiguration
    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

    DefenderFoDatabasesAwsOfferingResponseDatabasesDspm, DefenderFoDatabasesAwsOfferingResponseDatabasesDspmArgs

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

    DefenderFoDatabasesAwsOfferingResponseRds, DefenderFoDatabasesAwsOfferingResponseRdsArgs

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

    DefenderForContainersAwsOffering, DefenderForContainersAwsOfferingArgs

    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
    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_k8s 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

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

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

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

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

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

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

    Description string
    The offering description.
    CloudWatchToKinesis Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingResponseCloudWatchToKinesis
    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.DefenderForContainersAwsOfferingResponseKinesisToS3
    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.DefenderForContainersAwsOfferingResponseKubernetesDataCollection
    The kubernetes data collection connection configuration
    KubernetesService Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingResponseKubernetesService
    The kubernetes service connection configuration
    MdcContainersAgentlessDiscoveryK8s Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForContainersAwsOfferingResponseVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    Description string
    The offering description.
    CloudWatchToKinesis DefenderForContainersAwsOfferingResponseCloudWatchToKinesis
    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 DefenderForContainersAwsOfferingResponseKinesisToS3
    The kinesis to s3 connection configuration
    KubeAuditRetentionTime float64
    The retention time in days of kube audit logs set on the CloudWatch log group
    KubernetesDataCollection DefenderForContainersAwsOfferingResponseKubernetesDataCollection
    The kubernetes data collection connection configuration
    KubernetesService DefenderForContainersAwsOfferingResponseKubernetesService
    The kubernetes service connection configuration
    MdcContainersAgentlessDiscoveryK8s DefenderForContainersAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    MdcContainersImageAssessment DefenderForContainersAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    VmScanners DefenderForContainersAwsOfferingResponseVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    description String
    The offering description.
    cloudWatchToKinesis DefenderForContainersAwsOfferingResponseCloudWatchToKinesis
    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 DefenderForContainersAwsOfferingResponseKinesisToS3
    The kinesis to s3 connection configuration
    kubeAuditRetentionTime Double
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetesDataCollection DefenderForContainersAwsOfferingResponseKubernetesDataCollection
    The kubernetes data collection connection configuration
    kubernetesService DefenderForContainersAwsOfferingResponseKubernetesService
    The kubernetes service connection configuration
    mdcContainersAgentlessDiscoveryK8s DefenderForContainersAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderForContainersAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderForContainersAwsOfferingResponseVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    description string
    The offering description.
    cloudWatchToKinesis DefenderForContainersAwsOfferingResponseCloudWatchToKinesis
    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 DefenderForContainersAwsOfferingResponseKinesisToS3
    The kinesis to s3 connection configuration
    kubeAuditRetentionTime number
    The retention time in days of kube audit logs set on the CloudWatch log group
    kubernetesDataCollection DefenderForContainersAwsOfferingResponseKubernetesDataCollection
    The kubernetes data collection connection configuration
    kubernetesService DefenderForContainersAwsOfferingResponseKubernetesService
    The kubernetes service connection configuration
    mdcContainersAgentlessDiscoveryK8s DefenderForContainersAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    mdcContainersImageAssessment DefenderForContainersAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vmScanners DefenderForContainersAwsOfferingResponseVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    description str
    The offering description.
    cloud_watch_to_kinesis DefenderForContainersAwsOfferingResponseCloudWatchToKinesis
    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 DefenderForContainersAwsOfferingResponseKinesisToS3
    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 DefenderForContainersAwsOfferingResponseKubernetesDataCollection
    The kubernetes data collection connection configuration
    kubernetes_service DefenderForContainersAwsOfferingResponseKubernetesService
    The kubernetes service connection configuration
    mdc_containers_agentless_discovery_k8s DefenderForContainersAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender container agentless discovery K8s configuration
    mdc_containers_image_assessment DefenderForContainersAwsOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender container image assessment configuration
    vm_scanners DefenderForContainersAwsOfferingResponseVmScanners
    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

    DefenderForContainersAwsOfferingResponseCloudWatchToKinesis, DefenderForContainersAwsOfferingResponseCloudWatchToKinesisArgs

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

    DefenderForContainersAwsOfferingResponseKinesisToS3, DefenderForContainersAwsOfferingResponseKinesisToS3Args

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

    DefenderForContainersAwsOfferingResponseKubernetesDataCollection, DefenderForContainersAwsOfferingResponseKubernetesDataCollectionArgs

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

    DefenderForContainersAwsOfferingResponseKubernetesService, DefenderForContainersAwsOfferingResponseKubernetesServiceArgs

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

    DefenderForContainersAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s, DefenderForContainersAwsOfferingResponseMdcContainersAgentlessDiscoveryK8sArgs

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

    DefenderForContainersAwsOfferingResponseMdcContainersImageAssessment, DefenderForContainersAwsOfferingResponseMdcContainersImageAssessmentArgs

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

    DefenderForContainersAwsOfferingResponseVmScanners, DefenderForContainersAwsOfferingResponseVmScannersArgs

    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseResponseConfiguration
    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

    DefenderForContainersAwsOfferingVmScanners, DefenderForContainersAwsOfferingVmScannersArgs

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

    DefenderForContainersDockerHubOffering, DefenderForContainersDockerHubOfferingArgs

    DefenderForContainersDockerHubOfferingResponse, DefenderForContainersDockerHubOfferingResponseArgs

    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

    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
    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_k8s 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

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

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

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

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

    Description string
    The offering description.
    DataPipelineNativeCloudConnection Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingResponseDataPipelineNativeCloudConnection
    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.DefenderForContainersGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    NativeCloudConnection Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForContainersGcpOfferingResponseVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    Description string
    The offering description.
    DataPipelineNativeCloudConnection DefenderForContainersGcpOfferingResponseDataPipelineNativeCloudConnection
    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 DefenderForContainersGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    MdcContainersImageAssessment DefenderForContainersGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    NativeCloudConnection DefenderForContainersGcpOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    VmScanners DefenderForContainersGcpOfferingResponseVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    description String
    The offering description.
    dataPipelineNativeCloudConnection DefenderForContainersGcpOfferingResponseDataPipelineNativeCloudConnection
    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 DefenderForContainersGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderForContainersGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    nativeCloudConnection DefenderForContainersGcpOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    vmScanners DefenderForContainersGcpOfferingResponseVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    description string
    The offering description.
    dataPipelineNativeCloudConnection DefenderForContainersGcpOfferingResponseDataPipelineNativeCloudConnection
    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 DefenderForContainersGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    mdcContainersImageAssessment DefenderForContainersGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    nativeCloudConnection DefenderForContainersGcpOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    vmScanners DefenderForContainersGcpOfferingResponseVmScanners
    The Microsoft Defender for Container K8s VM host scanning configuration
    description str
    The offering description.
    data_pipeline_native_cloud_connection DefenderForContainersGcpOfferingResponseDataPipelineNativeCloudConnection
    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_k8s DefenderForContainersGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s
    The Microsoft Defender Container agentless discovery configuration
    mdc_containers_image_assessment DefenderForContainersGcpOfferingResponseMdcContainersImageAssessment
    The Microsoft Defender Container image assessment configuration
    native_cloud_connection DefenderForContainersGcpOfferingResponseNativeCloudConnection
    The native cloud connection configuration
    vm_scanners DefenderForContainersGcpOfferingResponseVmScanners
    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

    DefenderForContainersGcpOfferingResponseDataPipelineNativeCloudConnection, DefenderForContainersGcpOfferingResponseDataPipelineNativeCloudConnectionArgs

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

    DefenderForContainersGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s, DefenderForContainersGcpOfferingResponseMdcContainersAgentlessDiscoveryK8sArgs

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

    DefenderForContainersGcpOfferingResponseMdcContainersImageAssessment, DefenderForContainersGcpOfferingResponseMdcContainersImageAssessmentArgs

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

    DefenderForContainersGcpOfferingResponseNativeCloudConnection, DefenderForContainersGcpOfferingResponseNativeCloudConnectionArgs

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

    DefenderForContainersGcpOfferingResponseVmScanners, DefenderForContainersGcpOfferingResponseVmScannersArgs

    Configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderForContainersGcpOfferingVmScanners, DefenderForContainersGcpOfferingVmScannersArgs

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

    DefenderForContainersJFrogOffering, DefenderForContainersJFrogOfferingArgs

    DefenderForContainersJFrogOfferingResponse, DefenderForContainersJFrogOfferingResponseArgs

    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

    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    defenderForDatabasesArcAutoProvisioning Property Map
    The native cloud connection configuration

    DefenderForDatabasesGcpOfferingArcAutoProvisioning, DefenderForDatabasesGcpOfferingArcAutoProvisioningArgs

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

    DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioning, DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioningArgs

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

    description String
    The offering description.
    arcAutoProvisioning Property Map
    The ARC autoprovisioning configuration
    defenderForDatabasesArcAutoProvisioning Property Map
    The native cloud connection configuration

    DefenderForDatabasesGcpOfferingResponseArcAutoProvisioning, DefenderForDatabasesGcpOfferingResponseArcAutoProvisioningArgs

    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningResponseConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    Configuration ArcAutoProvisioningResponseConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningResponseConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningResponseConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningResponseConfiguration
    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

    DefenderForDatabasesGcpOfferingResponseDefenderForDatabasesArcAutoProvisioning, DefenderForDatabasesGcpOfferingResponseDefenderForDatabasesArcAutoProvisioningArgs

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

    DefenderForServersAwsOffering, DefenderForServersAwsOfferingArgs

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

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

    DefenderForServersAwsOfferingConfiguration, DefenderForServersAwsOfferingConfigurationArgs

    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 | 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'

    DefenderForServersAwsOfferingDefenderForServers, DefenderForServersAwsOfferingDefenderForServersArgs

    CloudRoleArn 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
    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

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

    Description string
    The offering description.
    ArcAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    DefenderForServers Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    MdeAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingResponseSubPlan
    configuration for the servers offering subPlan
    VaAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingResponseVmScanners
    The Microsoft Defender for Server VM scanning configuration
    Description string
    The offering description.
    ArcAutoProvisioning DefenderForServersAwsOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    DefenderForServers DefenderForServersAwsOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    MdeAutoProvisioning DefenderForServersAwsOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan DefenderForServersAwsOfferingResponseSubPlan
    configuration for the servers offering subPlan
    VaAutoProvisioning DefenderForServersAwsOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners DefenderForServersAwsOfferingResponseVmScanners
    The Microsoft Defender for Server VM scanning configuration
    description String
    The offering description.
    arcAutoProvisioning DefenderForServersAwsOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersAwsOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersAwsOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersAwsOfferingResponseSubPlan
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersAwsOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersAwsOfferingResponseVmScanners
    The Microsoft Defender for Server VM scanning configuration
    description string
    The offering description.
    arcAutoProvisioning DefenderForServersAwsOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersAwsOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersAwsOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersAwsOfferingResponseSubPlan
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersAwsOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersAwsOfferingResponseVmScanners
    The Microsoft Defender for Server VM scanning configuration
    description str
    The offering description.
    arc_auto_provisioning DefenderForServersAwsOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    defender_for_servers DefenderForServersAwsOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    mde_auto_provisioning DefenderForServersAwsOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan DefenderForServersAwsOfferingResponseSubPlan
    configuration for the servers offering subPlan
    va_auto_provisioning DefenderForServersAwsOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners DefenderForServersAwsOfferingResponseVmScanners
    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

    DefenderForServersAwsOfferingResponseArcAutoProvisioning, DefenderForServersAwsOfferingResponseArcAutoProvisioningArgs

    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningResponseConfiguration
    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 ArcAutoProvisioningResponseConfiguration
    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 ArcAutoProvisioningResponseConfiguration
    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 ArcAutoProvisioningResponseConfiguration
    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 ArcAutoProvisioningResponseConfiguration
    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

    DefenderForServersAwsOfferingResponseConfiguration, DefenderForServersAwsOfferingResponseConfigurationArgs

    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'

    DefenderForServersAwsOfferingResponseDefenderForServers, DefenderForServersAwsOfferingResponseDefenderForServersArgs

    CloudRoleArn 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
    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

    DefenderForServersAwsOfferingResponseMdeAutoProvisioning, DefenderForServersAwsOfferingResponseMdeAutoProvisioningArgs

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

    DefenderForServersAwsOfferingResponseSubPlan, DefenderForServersAwsOfferingResponseSubPlanArgs

    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

    DefenderForServersAwsOfferingResponseVaAutoProvisioning, DefenderForServersAwsOfferingResponseVaAutoProvisioningArgs

    Configuration Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingResponseConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    Configuration DefenderForServersAwsOfferingResponseConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingResponseConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingResponseConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingResponseConfiguration
    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

    DefenderForServersAwsOfferingResponseVmScanners, DefenderForServersAwsOfferingResponseVmScannersArgs

    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration Pulumi.AzureNative.Security.Inputs.VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    CloudRoleArn string
    The cloud role ARN in AWS for this feature
    Configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    cloudRoleArn String
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    cloudRoleArn string
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    cloud_role_arn str
    The cloud role ARN in AWS for this feature
    configuration VmScannersBaseResponseConfiguration
    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

    DefenderForServersAwsOfferingSubPlan, DefenderForServersAwsOfferingSubPlanArgs

    Type string | Pulumi.AzureNative.Security.SubPlan
    The available sub plans
    Type string | SubPlan
    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

    DefenderForServersAwsOfferingVaAutoProvisioning, DefenderForServersAwsOfferingVaAutoProvisioningArgs

    Configuration Pulumi.AzureNative.Security.Inputs.DefenderForServersAwsOfferingConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    Configuration DefenderForServersAwsOfferingConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersAwsOfferingConfiguration
    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

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

    DefenderForServersGcpOffering, DefenderForServersGcpOfferingArgs

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

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

    DefenderForServersGcpOfferingConfiguration, DefenderForServersGcpOfferingConfigurationArgs

    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 | 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'

    DefenderForServersGcpOfferingDefenderForServers, DefenderForServersGcpOfferingDefenderForServersArgs

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

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

    Description string
    The offering description.
    ArcAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    DefenderForServers Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    MdeAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingResponseSubPlan
    configuration for the servers offering subPlan
    VaAutoProvisioning Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingResponseVmScanners
    The Microsoft Defender for Server VM scanning configuration
    Description string
    The offering description.
    ArcAutoProvisioning DefenderForServersGcpOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    DefenderForServers DefenderForServersGcpOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    MdeAutoProvisioning DefenderForServersGcpOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    SubPlan DefenderForServersGcpOfferingResponseSubPlan
    configuration for the servers offering subPlan
    VaAutoProvisioning DefenderForServersGcpOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    VmScanners DefenderForServersGcpOfferingResponseVmScanners
    The Microsoft Defender for Server VM scanning configuration
    description String
    The offering description.
    arcAutoProvisioning DefenderForServersGcpOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersGcpOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersGcpOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersGcpOfferingResponseSubPlan
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersGcpOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersGcpOfferingResponseVmScanners
    The Microsoft Defender for Server VM scanning configuration
    description string
    The offering description.
    arcAutoProvisioning DefenderForServersGcpOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    defenderForServers DefenderForServersGcpOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    mdeAutoProvisioning DefenderForServersGcpOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    subPlan DefenderForServersGcpOfferingResponseSubPlan
    configuration for the servers offering subPlan
    vaAutoProvisioning DefenderForServersGcpOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vmScanners DefenderForServersGcpOfferingResponseVmScanners
    The Microsoft Defender for Server VM scanning configuration
    description str
    The offering description.
    arc_auto_provisioning DefenderForServersGcpOfferingResponseArcAutoProvisioning
    The ARC autoprovisioning configuration
    defender_for_servers DefenderForServersGcpOfferingResponseDefenderForServers
    The Defender for servers connection configuration
    mde_auto_provisioning DefenderForServersGcpOfferingResponseMdeAutoProvisioning
    The Microsoft Defender for Endpoint autoprovisioning configuration
    sub_plan DefenderForServersGcpOfferingResponseSubPlan
    configuration for the servers offering subPlan
    va_auto_provisioning DefenderForServersGcpOfferingResponseVaAutoProvisioning
    The Vulnerability Assessment autoprovisioning configuration
    vm_scanners DefenderForServersGcpOfferingResponseVmScanners
    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

    DefenderForServersGcpOfferingResponseArcAutoProvisioning, DefenderForServersGcpOfferingResponseArcAutoProvisioningArgs

    Configuration Pulumi.AzureNative.Security.Inputs.ArcAutoProvisioningResponseConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    Configuration ArcAutoProvisioningResponseConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    Enabled bool
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningResponseConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled Boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningResponseConfiguration
    Configuration for servers Arc auto provisioning for a given environment
    enabled boolean
    Is arc auto provisioning enabled
    configuration ArcAutoProvisioningResponseConfiguration
    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

    DefenderForServersGcpOfferingResponseConfiguration, DefenderForServersGcpOfferingResponseConfigurationArgs

    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'

    DefenderForServersGcpOfferingResponseDefenderForServers, DefenderForServersGcpOfferingResponseDefenderForServersArgs

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

    DefenderForServersGcpOfferingResponseMdeAutoProvisioning, DefenderForServersGcpOfferingResponseMdeAutoProvisioningArgs

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

    DefenderForServersGcpOfferingResponseSubPlan, DefenderForServersGcpOfferingResponseSubPlanArgs

    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

    DefenderForServersGcpOfferingResponseVaAutoProvisioning, DefenderForServersGcpOfferingResponseVaAutoProvisioningArgs

    Configuration Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingResponseConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    Configuration DefenderForServersGcpOfferingResponseConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingResponseConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingResponseConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingResponseConfiguration
    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

    DefenderForServersGcpOfferingResponseVmScanners, DefenderForServersGcpOfferingResponseVmScannersArgs

    Configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    Enabled bool
    Is VM scanning enabled
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled boolean
    Is VM scanning enabled
    configuration VmScannersBaseResponseConfiguration
    Configuration for VM scanning
    enabled bool
    Is VM scanning enabled
    configuration Property Map
    Configuration for VM scanning
    enabled Boolean
    Is VM scanning enabled

    DefenderForServersGcpOfferingSubPlan, DefenderForServersGcpOfferingSubPlanArgs

    Type string | Pulumi.AzureNative.Security.SubPlan
    The available sub plans
    Type string | SubPlan
    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

    DefenderForServersGcpOfferingVaAutoProvisioning, DefenderForServersGcpOfferingVaAutoProvisioningArgs

    Configuration Pulumi.AzureNative.Security.Inputs.DefenderForServersGcpOfferingConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    Configuration DefenderForServersGcpOfferingConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    Enabled bool
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled Boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingConfiguration
    configuration for Vulnerability Assessment autoprovisioning
    enabled boolean
    Is Vulnerability Assessment auto provisioning enabled
    configuration DefenderForServersGcpOfferingConfiguration
    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

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

    DockerHubEnvironmentData, DockerHubEnvironmentDataArgs

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

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

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

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

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

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

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

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

    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)
    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

    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)
    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

    GithubScopeEnvironmentDataResponse, GithubScopeEnvironmentDataResponseArgs

    GitlabScopeEnvironmentData, GitlabScopeEnvironmentDataArgs

    GitlabScopeEnvironmentDataResponse, GitlabScopeEnvironmentDataResponseArgs

    JFrogEnvironmentData, JFrogEnvironmentDataArgs

    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)
    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

    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)
    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
    ScanningModeDefault
    Default
    Default
    Default
    Default
    Default
    DEFAULT
    Default
    "Default"
    Default

    SubPlan, SubPlanArgs

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

    SystemDataResponse, SystemDataResponseArgs

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

    Type, TypeArgs

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

    VmScannersBaseConfiguration, VmScannersBaseConfigurationArgs

    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.
    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.

    VmScannersBaseResponseConfiguration, VmScannersBaseResponseConfigurationArgs

    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.
    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.
    Azure Native v3.3.0 published on Monday, Apr 28, 2025 by Pulumi