published on Thursday, Aug 13, 2026 by Pulumi
published on Thursday, Aug 13, 2026 by Pulumi
The security connector resource.
Uses Azure REST API version 2024-08-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-03-01-preview.
Other available API versions: 2021-07-01-preview, 2021-12-01-preview, 2022-05-01-preview, 2022-08-01-preview, 2023-03-01-preview, 2023-10-01-preview, 2024-03-01-preview, 2024-07-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native security [ApiVersion]. See the version guide for details.
Example Usage
Create or update a security connector
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var securityConnector = new AzureNative.Security.SecurityConnector("securityConnector", new()
{
EnvironmentData = new AzureNative.Security.Inputs.AwsEnvironmentDataArgs
{
EnvironmentType = "AwsAccount",
ScanInterval = 4,
},
EnvironmentName = AzureNative.Security.CloudName.AWS,
HierarchyIdentifier = "exampleHierarchyId",
Location = "Central US",
Offerings = new[]
{
new AzureNative.Security.Inputs.CspmMonitorAwsOfferingArgs
{
NativeCloudConnection = new AzureNative.Security.Inputs.CspmMonitorAwsOfferingNativeCloudConnectionArgs
{
CloudRoleArn = "arn:aws:iam::00000000:role/ASCMonitor",
},
OfferingType = "CspmMonitorAws",
},
},
ResourceGroupName = "exampleResourceGroup",
SecurityConnectorName = "exampleSecurityConnectorName",
Tags = null,
});
});
package main
import (
security "github.com/pulumi/pulumi-azure-native-sdk/security/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := security.NewSecurityConnector(ctx, "securityConnector", &security.SecurityConnectorArgs{
EnvironmentData: &security.AwsEnvironmentDataArgs{
EnvironmentType: pulumi.String("AwsAccount"),
ScanInterval: pulumi.Float64(4),
},
EnvironmentName: pulumi.String(security.CloudNameAWS),
HierarchyIdentifier: pulumi.String("exampleHierarchyId"),
Location: pulumi.String("Central US"),
Offerings: pulumi.Array{
security.CspmMonitorAwsOffering{
NativeCloudConnection: security.CspmMonitorAwsOfferingNativeCloudConnection{
CloudRoleArn: "arn:aws:iam::00000000:role/ASCMonitor",
},
OfferingType: "CspmMonitorAws",
},
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
SecurityConnectorName: pulumi.String("exampleSecurityConnectorName"),
Tags: pulumi.StringMap{},
})
if err != nil {
return err
}
return nil
})
}
pulumi {
required_providers {
azure-native = {
source = "pulumi/azure-native"
}
}
}
resource "azure-native_security_securityconnector" "securityConnector" {
environment_data = {
"environmentType" = "AwsAccount"
"scanInterval" = 4
}
environment_name = "AWS"
hierarchy_identifier = "exampleHierarchyId"
location = "Central US"
offerings = [{
"nativeCloudConnection" = {
"cloudRoleArn" = "arn:aws:iam::00000000:role/ASCMonitor"
}
"offeringType" = "CspmMonitorAws"
}]
resource_group_name = "exampleResourceGroup"
security_connector_name = "exampleSecurityConnectorName"
tags = {}
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.security.SecurityConnector;
import com.pulumi.azurenative.security.SecurityConnectorArgs;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var securityConnector = new SecurityConnector("securityConnector", SecurityConnectorArgs.builder()
.environmentData(AwsEnvironmentDataArgs.builder()
.environmentType("AwsAccount")
.scanInterval(4.0)
.build())
.environmentName("AWS")
.hierarchyIdentifier("exampleHierarchyId")
.location("Central US")
.offerings(CspmMonitorAwsOfferingArgs.builder()
.nativeCloudConnection(CspmMonitorAwsOfferingNativeCloudConnectionArgs.builder()
.cloudRoleArn("arn:aws:iam::00000000:role/ASCMonitor")
.build())
.offeringType("CspmMonitorAws")
.build())
.resourceGroupName("exampleResourceGroup")
.securityConnectorName("exampleSecurityConnectorName")
.tags(Map.ofEntries(
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const securityConnector = new azure_native.security.SecurityConnector("securityConnector", {
environmentData: {
environmentType: "AwsAccount",
scanInterval: 4,
},
environmentName: azure_native.security.CloudName.AWS,
hierarchyIdentifier: "exampleHierarchyId",
location: "Central US",
offerings: [{
nativeCloudConnection: {
cloudRoleArn: "arn:aws:iam::00000000:role/ASCMonitor",
},
offeringType: "CspmMonitorAws",
}],
resourceGroupName: "exampleResourceGroup",
securityConnectorName: "exampleSecurityConnectorName",
tags: {},
});
import pulumi
import pulumi_azure_native as azure_native
security_connector = azure_native.security.SecurityConnector("securityConnector",
environment_data={
"environment_type": "AwsAccount",
"scan_interval": float(4),
},
environment_name=azure_native.security.CloudName.AWS,
hierarchy_identifier="exampleHierarchyId",
location="Central US",
offerings=[{
"native_cloud_connection": {
"cloud_role_arn": "arn:aws:iam::00000000:role/ASCMonitor",
},
"offering_type": "CspmMonitorAws",
}],
resource_group_name="exampleResourceGroup",
security_connector_name="exampleSecurityConnectorName",
tags={})
resources:
securityConnector:
type: azure-native:security:SecurityConnector
properties:
environmentData:
environmentType: AwsAccount
scanInterval: 4
environmentName: AWS
hierarchyIdentifier: exampleHierarchyId
location: Central US
offerings:
- nativeCloudConnection:
cloudRoleArn: arn:aws:iam::00000000:role/ASCMonitor
offeringType: CspmMonitorAws
resourceGroupName: exampleResourceGroup
securityConnectorName: exampleSecurityConnectorName
tags: {}
Create SecurityConnector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecurityConnector(name: string, args: SecurityConnectorArgs, opts?: CustomResourceOptions);@overload
def SecurityConnector(resource_name: str,
args: SecurityConnectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SecurityConnector(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
environment_data: Optional[Union[AwsEnvironmentDataArgs, AzureDevOpsScopeEnvironmentDataArgs, DockerHubEnvironmentDataArgs, GcpProjectEnvironmentDataArgs, GithubScopeEnvironmentDataArgs, GitlabScopeEnvironmentDataArgs, JFrogEnvironmentDataArgs]] = None,
environment_name: Optional[Union[str, CloudName]] = None,
hierarchy_identifier: Optional[str] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
offerings: Optional[Sequence[Union[CspmMonitorAwsOfferingArgs, CspmMonitorAzureDevOpsOfferingArgs, CspmMonitorDockerHubOfferingArgs, CspmMonitorGcpOfferingArgs, CspmMonitorGitLabOfferingArgs, CspmMonitorGithubOfferingArgs, CspmMonitorJFrogOfferingArgs, DefenderCspmAwsOfferingArgs, DefenderCspmDockerHubOfferingArgs, DefenderCspmGcpOfferingArgs, DefenderCspmJFrogOfferingArgs, DefenderFoDatabasesAwsOfferingArgs, DefenderForContainersAwsOfferingArgs, DefenderForContainersDockerHubOfferingArgs, DefenderForContainersGcpOfferingArgs, DefenderForContainersJFrogOfferingArgs, DefenderForDatabasesGcpOfferingArgs, DefenderForServersAwsOfferingArgs, DefenderForServersGcpOfferingArgs]]] = None,
security_connector_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)func NewSecurityConnector(ctx *Context, name string, args SecurityConnectorArgs, opts ...ResourceOption) (*SecurityConnector, error)public SecurityConnector(string name, SecurityConnectorArgs args, CustomResourceOptions? opts = null)
public SecurityConnector(String name, SecurityConnectorArgs args)
public SecurityConnector(String name, SecurityConnectorArgs args, CustomResourceOptions options)
type: azure-native:security:SecurityConnector
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "azure-native_security_security_connector" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var securityConnectorResource = new AzureNative.Security.SecurityConnector("securityConnectorResource", new()
{
ResourceGroupName = "string",
EnvironmentData = new AzureNative.Security.Inputs.AwsEnvironmentDataArgs
{
EnvironmentType = "AwsAccount",
OrganizationalData = new AzureNative.Security.Inputs.AwsOrganizationalDataMasterArgs
{
OrganizationMembershipType = "Organization",
ExcludedAccountIds = new[]
{
"string",
},
StacksetName = "string",
},
Regions = new[]
{
"string",
},
ScanInterval = 0,
},
EnvironmentName = "string",
HierarchyIdentifier = "string",
Kind = "string",
Location = "string",
Offerings =
{
new AzureNative.Security.Inputs.CspmMonitorAwsOfferingArgs
{
OfferingType = "CspmMonitorAws",
NativeCloudConnection = new AzureNative.Security.Inputs.CspmMonitorAwsOfferingNativeCloudConnectionArgs
{
CloudRoleArn = "string",
},
},
},
SecurityConnectorName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := security.NewSecurityConnector(ctx, "securityConnectorResource", &security.SecurityConnectorArgs{
ResourceGroupName: pulumi.String("string"),
EnvironmentData: &security.AwsEnvironmentDataArgs{
EnvironmentType: pulumi.String("AwsAccount"),
OrganizationalData: &security.AwsOrganizationalDataMasterArgs{
OrganizationMembershipType: pulumi.String("Organization"),
ExcludedAccountIds: pulumi.StringArray{
pulumi.String("string"),
},
StacksetName: pulumi.String("string"),
},
Regions: pulumi.StringArray{
pulumi.String("string"),
},
ScanInterval: pulumi.Float64(0),
},
EnvironmentName: pulumi.String("string"),
HierarchyIdentifier: pulumi.String("string"),
Kind: pulumi.String("string"),
Location: pulumi.String("string"),
Offerings: pulumi.Array{
&security.CspmMonitorAwsOfferingArgs{
OfferingType: pulumi.String("CspmMonitorAws"),
NativeCloudConnection: &security.CspmMonitorAwsOfferingNativeCloudConnectionArgs{
CloudRoleArn: pulumi.String("string"),
},
},
},
SecurityConnectorName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
resource "azure-native_security_security_connector" "securityConnectorResource" {
lifecycle {
create_before_destroy = true
}
resource_group_name = "string"
environment_data = {
environment_type = "AwsAccount"
organizational_data = {
organization_membership_type = "Organization"
excluded_account_ids = ["string"]
stackset_name = "string"
}
regions = ["string"]
scan_interval = 0
}
environment_name = "string"
hierarchy_identifier = "string"
kind = "string"
location = "string"
offerings = [{
offering_type = "CspmMonitorAws"
native_cloud_connection = {
cloud_role_arn = "string"
}
}]
security_connector_name = "string"
tags = {
"string" = "string"
}
}
var securityConnectorResource = new SecurityConnector("securityConnectorResource", SecurityConnectorArgs.builder()
.resourceGroupName("string")
.environmentData(AwsEnvironmentDataArgs.builder()
.environmentType("AwsAccount")
.organizationalData(AwsOrganizationalDataMasterArgs.builder()
.organizationMembershipType("Organization")
.excludedAccountIds("string")
.stacksetName("string")
.build())
.regions("string")
.scanInterval(0.0)
.build())
.environmentName("string")
.hierarchyIdentifier("string")
.kind("string")
.location("string")
.offerings(CspmMonitorAwsOfferingArgs.builder()
.offeringType("CspmMonitorAws")
.nativeCloudConnection(CspmMonitorAwsOfferingNativeCloudConnectionArgs.builder()
.cloudRoleArn("string")
.build())
.build())
.securityConnectorName("string")
.tags(Map.of("string", "string"))
.build());
security_connector_resource = azure_native.security.SecurityConnector("securityConnectorResource",
resource_group_name="string",
environment_data={
"environment_type": "AwsAccount",
"organizational_data": {
"organization_membership_type": "Organization",
"excluded_account_ids": ["string"],
"stackset_name": "string",
},
"regions": ["string"],
"scan_interval": float(0),
},
environment_name="string",
hierarchy_identifier="string",
kind="string",
location="string",
offerings=[{
"offering_type": "CspmMonitorAws",
"native_cloud_connection": {
"cloud_role_arn": "string",
},
}],
security_connector_name="string",
tags={
"string": "string",
})
const securityConnectorResource = new azure_native.security.SecurityConnector("securityConnectorResource", {
resourceGroupName: "string",
environmentData: {
environmentType: "AwsAccount",
organizationalData: {
organizationMembershipType: "Organization",
excludedAccountIds: ["string"],
stacksetName: "string",
},
regions: ["string"],
scanInterval: 0,
},
environmentName: "string",
hierarchyIdentifier: "string",
kind: "string",
location: "string",
offerings: [{
offeringType: "CspmMonitorAws",
nativeCloudConnection: {
cloudRoleArn: "string",
},
}],
securityConnectorName: "string",
tags: {
string: "string",
},
});
type: azure-native:security:SecurityConnector
properties:
environmentData:
environmentType: AwsAccount
organizationalData:
excludedAccountIds:
- string
organizationMembershipType: Organization
stacksetName: string
regions:
- string
scanInterval: 0
environmentName: string
hierarchyIdentifier: string
kind: string
location: string
offerings:
- nativeCloudConnection:
cloudRoleArn: string
offeringType: CspmMonitorAws
resourceGroupName: string
securityConnectorName: string
tags:
string: string
SecurityConnector Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SecurityConnector resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Environment
Data Pulumi.Azure | Pulumi.Native. Security. Inputs. Aws Environment Data Azure | Pulumi.Native. Security. Inputs. Azure Dev Ops Scope Environment Data Azure | Pulumi.Native. Security. Inputs. Docker Hub Environment Data Azure | Pulumi.Native. Security. Inputs. Gcp Project Environment Data Azure | Pulumi.Native. Security. Inputs. Github Scope Environment Data Azure | Pulumi.Native. Security. Inputs. Gitlab Scope Environment Data Azure Native. Security. Inputs. JFrog Environment Data - The security connector environment data.
- Environment
Name string | Pulumi.Azure Native. Security. Cloud Name - The multi cloud resource's cloud name.
- Hierarchy
Identifier string - The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
- Kind string
- Kind of the resource
- Location string
- The geo-location where the resource lives
- Offerings List<object>
- A collection of offerings for the security connector.
- Security
Connector stringName - The security connector name.
- Dictionary<string, string>
- Resource tags.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Environment
Data AwsEnvironment | AzureData Args Dev | DockerOps Scope Environment Data Args Hub | GcpEnvironment Data Args Project | GithubEnvironment Data Args Scope | GitlabEnvironment Data Args Scope | JFrogEnvironment Data Args Environment Data Args - The security connector environment data.
- Environment
Name string | CloudName - The multi cloud resource's cloud name.
- Hierarchy
Identifier string - The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
- Kind string
- Kind of the resource
- Location string
- The geo-location where the resource lives
- Offerings []interface{}
- A collection of offerings for the security connector.
- Security
Connector stringName - The security connector name.
- map[string]string
- Resource tags.
- resource_
group_ stringname - The name of the resource group. The name is case insensitive.
- environment_
data object | object | object | object | object | object | object - The security connector environment data.
- environment_
name string | "Azure" | "AWS" | "GCP" | "Github" | "AzureDev Ops" | "Git Lab" | "Docker Hub" | "JFrog" - The multi cloud resource's cloud name.
- hierarchy_
identifier string - The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
- kind string
- Kind of the resource
- location string
- The geo-location where the resource lives
- offerings list(object | object | object | object | object | object | object | object | object | object | object | object | object | object | object | object | object | object | object)
- A collection of offerings for the security connector.
- security_
connector_ stringname - The security connector name.
- map(string)
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- environment
Data AwsEnvironment | AzureData Dev | DockerOps Scope Environment Data Hub | GcpEnvironment Data Project | GithubEnvironment Data Scope | GitlabEnvironment Data Scope | JFrogEnvironment Data Environment Data - The security connector environment data.
- environment
Name String | CloudName - The multi cloud resource's cloud name.
- hierarchy
Identifier String - The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
- kind String
- Kind of the resource
- location String
- The geo-location where the resource lives
- offerings List<Object>
- A collection of offerings for the security connector.
- security
Connector StringName - The security connector name.
- Map<String,String>
- Resource tags.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- environment
Data AwsEnvironment | AzureData Dev | DockerOps Scope Environment Data Hub | GcpEnvironment Data Project | GithubEnvironment Data Scope | GitlabEnvironment Data Scope | JFrogEnvironment Data Environment Data - The security connector environment data.
- environment
Name string | CloudName - The multi cloud resource's cloud name.
- hierarchy
Identifier string - The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
- kind string
- Kind of the resource
- location string
- The geo-location where the resource lives
- offerings
(Cspm
Monitor Aws Offering | Cspm Monitor Azure Dev Ops Offering Args | Cspm Monitor Docker Hub Offering Args | Cspm Monitor Gcp Offering Args | Cspm Monitor Git Lab Offering Args | Cspm Monitor Github Offering Args | Cspm Monitor JFrog Offering Args | Defender Cspm Aws Offering Args | Defender Cspm Docker Hub Offering Args | Defender Cspm Gcp Offering Args | Defender Cspm JFrog Offering Args | Defender Fo Databases Aws Offering Args | Defender For Containers Aws Offering Args | Defender For Containers Docker Hub Offering Args | Defender For Containers Gcp Offering Args | Defender For Containers JFrog Offering Args | Defender For Databases Gcp Offering Args | Defender For Servers Aws Offering Args | Defender For Servers Gcp Offering Args)[] - A collection of offerings for the security connector.
- security
Connector stringName - The security connector name.
- {[key: string]: string}
- Resource tags.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- environment_
data AwsEnvironment | AzureData Args Dev | DockerOps Scope Environment Data Args Hub | GcpEnvironment Data Args Project | GithubEnvironment Data Args Scope | GitlabEnvironment Data Args Scope | JFrogEnvironment Data Args Environment Data Args - The security connector environment data.
- environment_
name str | CloudName - The multi cloud resource's cloud name.
- hierarchy_
identifier str - The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
- kind str
- Kind of the resource
- location str
- The geo-location where the resource lives
- offerings
Sequence[Union[Cspm
Monitor Aws Offering Args, Cspm Monitor Azure Dev Ops Offering Args, Cspm Monitor Docker Hub Offering Args, Cspm Monitor Gcp Offering Args, Cspm Monitor Git Lab Offering Args, Cspm Monitor Github Offering Args, Cspm Monitor JFrog Offering Args, Defender Cspm Aws Offering Args, Defender Cspm Docker Hub Offering Args, Defender Cspm Gcp Offering Args, Defender Cspm JFrog Offering Args, Defender Fo Databases Aws Offering Args, Defender For Containers Aws Offering Args, Defender For Containers Docker Hub Offering Args, Defender For Containers Gcp Offering Args, Defender For Containers JFrog Offering Args, Defender For Databases Gcp Offering Args, Defender For Servers Aws Offering Args, Defender For Servers Gcp Offering Args]] - A collection of offerings for the security connector.
- security_
connector_ strname - The security connector name.
- Mapping[str, str]
- Resource tags.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- environment
Data Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map - The security connector environment data.
- environment
Name String | "Azure" | "AWS" | "GCP" | "Github" | "AzureDev Ops" | "Git Lab" | "Docker Hub" | "JFrog" - The multi cloud resource's cloud name.
- hierarchy
Identifier String - The multi cloud resource identifier (account id in case of AWS connector, project number in case of GCP connector).
- kind String
- Kind of the resource
- location String
- The geo-location where the resource lives
- offerings List<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.
- security
Connector StringName - The security connector name.
- Map<String>
- Resource tags.
Outputs
All input properties are implicitly available as output properties. Additionally, the SecurityConnector resource produces the following output properties:
- Azure
Api stringVersion - The Azure API version of the resource.
- Hierarchy
Identifier stringTrial End Date - The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data Pulumi.Azure Native. Security. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Etag string
- Entity tag is used for comparing two or more entities from the same requested resource.
- Azure
Api stringVersion - The Azure API version of the resource.
- Hierarchy
Identifier stringTrial End Date - The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
- Id string
- The provider-assigned unique ID for this managed resource.
- Name string
- The name of the resource
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Etag string
- Entity tag is used for comparing two or more entities from the same requested resource.
- azure_
api_ stringversion - The Azure API version of the resource.
- hierarchy_
identifier_ stringtrial_ end_ date - The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system_
data object - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag string
- Entity tag is used for comparing two or more entities from the same requested resource.
- azure
Api StringVersion - The Azure API version of the resource.
- hierarchy
Identifier StringTrial End Date - The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Entity tag is used for comparing two or more entities from the same requested resource.
- azure
Api stringVersion - The Azure API version of the resource.
- hierarchy
Identifier stringTrial End Date - The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
- id string
- The provider-assigned unique ID for this managed resource.
- name string
- The name of the resource
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag string
- Entity tag is used for comparing two or more entities from the same requested resource.
- azure_
api_ strversion - The Azure API version of the resource.
- hierarchy_
identifier_ strtrial_ end_ date - The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
- id str
- The provider-assigned unique ID for this managed resource.
- name str
- The name of the resource
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag str
- Entity tag is used for comparing two or more entities from the same requested resource.
- azure
Api StringVersion - The Azure API version of the resource.
- hierarchy
Identifier StringTrial End Date - The date on which the trial period will end, if applicable. Trial period exists for 30 days after upgrading to payed offerings.
- id String
- The provider-assigned unique ID for this managed resource.
- name String
- The name of the resource
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Entity tag is used for comparing two or more entities from the same requested resource.
Supporting Types
AccessTokenAuthentication, AccessTokenAuthenticationArgs
The environment authentication details- Access
Token string - The access token that will be used while authenticating with the onboarded environment
- Username string
- The user name that will be used while authenticating with the onboarded environment
- Access
Token string - The access token that will be used while authenticating with the onboarded environment
- Username string
- The user name that will be used while authenticating with the onboarded environment
- access_
token string - The access token that will be used while authenticating with the onboarded environment
- username string
- The user name that will be used while authenticating with the onboarded environment
- access
Token String - The access token that will be used while authenticating with the onboarded environment
- username String
- The user name that will be used while authenticating with the onboarded environment
- access
Token string - The access token that will be used while authenticating with the onboarded environment
- username string
- The user name that will be used while authenticating with the onboarded environment
- 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
- access
Token String - The access token that will be used while authenticating with the onboarded environment
- username String
- The user name that will be used while authenticating with the onboarded environment
AccessTokenAuthenticationResponse, AccessTokenAuthenticationResponseArgs
The environment authentication details- Access
Token string - The access token that will be used while authenticating with the onboarded environment
- Username string
- The user name that will be used while authenticating with the onboarded environment
- Access
Token string - The access token that will be used while authenticating with the onboarded environment
- Username string
- The user name that will be used while authenticating with the onboarded environment
- access_
token string - The access token that will be used while authenticating with the onboarded environment
- username string
- The user name that will be used while authenticating with the onboarded environment
- access
Token String - The access token that will be used while authenticating with the onboarded environment
- username String
- The user name that will be used while authenticating with the onboarded environment
- access
Token string - The access token that will be used while authenticating with the onboarded environment
- username string
- The user name that will be used while authenticating with the onboarded environment
- 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
- access
Token String - The access token that will be used while authenticating with the onboarded environment
- username String
- The user name that will be used while authenticating with the onboarded environment
ArcAutoProvisioningConfiguration, ArcAutoProvisioningConfigurationArgs
Configuration for servers Arc auto provisioning for a given environment- Private
Link stringScope - 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 stringScope - 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_ stringscope - 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 StringScope - 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 stringScope - 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_ strscope - Optional Arc private link scope resource id to link the Arc agent
- proxy str
- Optional HTTP proxy endpoint to use for the Arc agent
- private
Link StringScope - Optional Arc private link scope resource id to link the Arc agent
- proxy String
- Optional HTTP proxy endpoint to use for the Arc agent
ArcAutoProvisioningConfigurationResponse, ArcAutoProvisioningConfigurationResponseArgs
Configuration for servers Arc auto provisioning for a given environment- Private
Link stringScope - 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 stringScope - 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_ stringscope - 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 StringScope - 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 stringScope - 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_ strscope - Optional Arc private link scope resource id to link the Arc agent
- proxy str
- Optional HTTP proxy endpoint to use for the Arc agent
- private
Link StringScope - Optional Arc private link scope resource id to link the Arc agent
- proxy String
- Optional HTTP proxy endpoint to use for the Arc agent
AwsEnvironmentData, AwsEnvironmentDataArgs
The AWS connector environment data- Organizational
Data Pulumi.Azure | Pulumi.Native. Security. Inputs. Aws Organizational Data Master Azure Native. Security. Inputs. Aws Organizational Data Member - The AWS account's organizational data
- Regions List<string>
- list of regions to scan
- Scan
Interval double - Scan interval in hours (value should be between 1-hour to 24-hours)
- Organizational
Data AwsOrganizational | AwsData Master Organizational Data Member - The AWS account's organizational data
- Regions []string
- list of regions to scan
- Scan
Interval float64 - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational_
data object | object - The AWS account's organizational data
- regions list(string)
- list of regions to scan
- scan_
interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational
Data AwsOrganizational | AwsData Master Organizational Data Member - The AWS account's organizational data
- regions List<String>
- list of regions to scan
- scan
Interval Double - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational
Data AwsOrganizational | AwsData Master Organizational Data Member - The AWS account's organizational data
- regions string[]
- list of regions to scan
- scan
Interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational_
data AwsOrganizational | AwsData Master Organizational Data Member - 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)
- organizational
Data Property Map | Property Map - The AWS account's organizational data
- regions List<String>
- list of regions to scan
- scan
Interval Number - Scan interval in hours (value should be between 1-hour to 24-hours)
AwsEnvironmentDataResponse, AwsEnvironmentDataResponseArgs
The AWS connector environment data- Account
Name string - The AWS account name
- Organizational
Data Pulumi.Azure | Pulumi.Native. Security. Inputs. Aws Organizational Data Master Response Azure Native. Security. Inputs. Aws Organizational Data Member Response - The AWS account's organizational data
- Regions List<string>
- list of regions to scan
- Scan
Interval double - Scan interval in hours (value should be between 1-hour to 24-hours)
- Account
Name string - The AWS account name
- Organizational
Data AwsOrganizational | AwsData Master Response Organizational Data Member Response - The AWS account's organizational data
- Regions []string
- list of regions to scan
- Scan
Interval float64 - Scan interval in hours (value should be between 1-hour to 24-hours)
- account_
name string - The AWS account name
- organizational_
data object | object - The AWS account's organizational data
- regions list(string)
- list of regions to scan
- scan_
interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- account
Name String - The AWS account name
- organizational
Data AwsOrganizational | AwsData Master Response Organizational Data Member Response - The AWS account's organizational data
- regions List<String>
- list of regions to scan
- scan
Interval Double - Scan interval in hours (value should be between 1-hour to 24-hours)
- account
Name string - The AWS account name
- organizational
Data AwsOrganizational | AwsData Master Response Organizational Data Member Response - The AWS account's organizational data
- regions string[]
- list of regions to scan
- scan
Interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- account_
name str - The AWS account name
- organizational_
data AwsOrganizational | AwsData Master Response Organizational Data Member Response - 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)
- account
Name String - The AWS account name
- organizational
Data Property Map | Property Map - The AWS account's organizational data
- regions List<String>
- list of regions to scan
- scan
Interval Number - Scan interval in hours (value should be between 1-hour to 24-hours)
AwsOrganizationalDataMaster, AwsOrganizationalDataMasterArgs
The AWS organization data for the master account- Excluded
Account List<string>Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Stackset
Name string - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- Excluded
Account []stringIds - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Stackset
Name string - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- excluded_
account_ list(string)ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- stackset_
name string - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- excluded
Account List<String>Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- stackset
Name String - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- excluded
Account string[]Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- stackset
Name string - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- excluded_
account_ Sequence[str]ids - 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
- excluded
Account List<String>Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- stackset
Name String - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
AwsOrganizationalDataMasterResponse, AwsOrganizationalDataMasterResponseArgs
The AWS organization data for the master account- Excluded
Account List<string>Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Stackset
Name string - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- Excluded
Account []stringIds - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Stackset
Name string - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- excluded_
account_ list(string)ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- stackset_
name string - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- excluded
Account List<String>Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- stackset
Name String - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- excluded
Account string[]Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- stackset
Name string - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
- excluded_
account_ Sequence[str]ids - 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
- excluded
Account List<String>Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- stackset
Name String - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
AwsOrganizationalDataMember, AwsOrganizationalDataMemberArgs
The AWS organization data for the member account- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent_
hierarchy_ stringid - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent_
hierarchy_ strid - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
AwsOrganizationalDataMemberResponse, AwsOrganizationalDataMemberResponseArgs
The AWS organization data for the member account- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent_
hierarchy_ stringid - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent_
hierarchy_ strid - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
AzureDevOpsScopeEnvironmentData, AzureDevOpsScopeEnvironmentDataArgs
The AzureDevOps scope connector's environment dataAzureDevOpsScopeEnvironmentDataResponse, AzureDevOpsScopeEnvironmentDataResponseArgs
The AzureDevOps scope connector's environment dataCloudName, CloudNameArgs
- Azure
AzureAzure- AWS
AWSAWS- GCP
GCPGCP- Github
GithubGithub- Azure
Dev Ops AzureDevOpsAzureDevOps- Git
Lab GitLabGitLab- Docker
Hub DockerHubDockerHub- JFrog
JFrogJFrog
- Cloud
Name Azure AzureAzure- Cloud
Name AWS AWSAWS- Cloud
Name GCP GCPGCP- Cloud
Name Github GithubGithub- Cloud
Name Azure Dev Ops AzureDevOpsAzureDevOps- Cloud
Name Git Lab GitLabGitLab- Cloud
Name Docker Hub DockerHubDockerHub- Cloud
Name JFrog JFrogJFrog
- "Azure"
AzureAzure- "AWS"
AWSAWS- "GCP"
GCPGCP- "Github"
GithubGithub- "Azure
Dev Ops" AzureDevOpsAzureDevOps- "Git
Lab" GitLabGitLab- "Docker
Hub" DockerHubDockerHub- "JFrog"
JFrogJFrog
- Azure
AzureAzure- AWS
AWSAWS- GCP
GCPGCP- Github
GithubGithub- Azure
Dev Ops AzureDevOpsAzureDevOps- Git
Lab GitLabGitLab- Docker
Hub DockerHubDockerHub- JFrog
JFrogJFrog
- Azure
AzureAzure- AWS
AWSAWS- GCP
GCPGCP- Github
GithubGithub- Azure
Dev Ops AzureDevOpsAzureDevOps- Git
Lab GitLabGitLab- Docker
Hub DockerHubDockerHub- JFrog
JFrogJFrog
- AZURE
AzureAzure- AWS
AWSAWS- GCP
GCPGCP- GITHUB
GithubGithub- AZURE_DEV_OPS
AzureDevOpsAzureDevOps- GIT_LAB
GitLabGitLab- DOCKER_HUB
DockerHubDockerHub- J_FROG
JFrogJFrog
- "Azure"
AzureAzure- "AWS"
AWSAWS- "GCP"
GCPGCP- "Github"
GithubGithub- "Azure
Dev Ops" AzureDevOpsAzureDevOps- "Git
Lab" GitLabGitLab- "Docker
Hub" DockerHubDockerHub- "JFrog"
JFrogJFrog
CspmMonitorAwsOffering, CspmMonitorAwsOfferingArgs
The CSPM monitoring for AWS offering- Native
Cloud Pulumi.Connection Azure Native. Security. Inputs. Cspm Monitor Aws Offering Native Cloud Connection - The native cloud connection configuration
- Native
Cloud CspmConnection Monitor Aws Offering Native Cloud Connection - The native cloud connection configuration
- native_
cloud_ objectconnection - The native cloud connection configuration
- native
Cloud CspmConnection Monitor Aws Offering Native Cloud Connection - The native cloud connection configuration
- native
Cloud CspmConnection Monitor Aws Offering Native Cloud Connection - The native cloud connection configuration
- native_
cloud_ Cspmconnection Monitor Aws Offering Native Cloud Connection - The native cloud connection configuration
- native
Cloud Property MapConnection - The native cloud connection configuration
CspmMonitorAwsOfferingNativeCloudConnection, CspmMonitorAwsOfferingNativeCloudConnectionArgs
The native cloud connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
CspmMonitorAwsOfferingNativeCloudConnectionResponse, CspmMonitorAwsOfferingNativeCloudConnectionResponseArgs
The native cloud connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
CspmMonitorAwsOfferingResponse, CspmMonitorAwsOfferingResponseArgs
The CSPM monitoring for AWS offering- Description string
- The offering description.
- Native
Cloud Pulumi.Connection Azure Native. Security. Inputs. Cspm Monitor Aws Offering Native Cloud Connection Response - The native cloud connection configuration
- Description string
- The offering description.
- Native
Cloud CspmConnection Monitor Aws Offering Native Cloud Connection Response - The native cloud connection configuration
- description string
- The offering description.
- native_
cloud_ objectconnection - The native cloud connection configuration
- description String
- The offering description.
- native
Cloud CspmConnection Monitor Aws Offering Native Cloud Connection Response - The native cloud connection configuration
- description string
- The offering description.
- native
Cloud CspmConnection Monitor Aws Offering Native Cloud Connection Response - The native cloud connection configuration
- description str
- The offering description.
- native_
cloud_ Cspmconnection Monitor Aws Offering Native Cloud Connection Response - The native cloud connection configuration
- description String
- The offering description.
- native
Cloud Property MapConnection - The native cloud connection configuration
CspmMonitorAzureDevOpsOffering, CspmMonitorAzureDevOpsOfferingArgs
The CSPM monitoring for AzureDevOps offeringCspmMonitorAzureDevOpsOfferingResponse, CspmMonitorAzureDevOpsOfferingResponseArgs
The CSPM monitoring for AzureDevOps offering- Description string
- The offering description.
- Description string
- The offering description.
- description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
CspmMonitorDockerHubOffering, CspmMonitorDockerHubOfferingArgs
The CSPM (Cloud security posture management) monitoring for Docker Hub offeringCspmMonitorDockerHubOfferingResponse, CspmMonitorDockerHubOfferingResponseArgs
The CSPM (Cloud security posture management) monitoring for Docker Hub offering- Description string
- The offering description.
- Description string
- The offering description.
- description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
CspmMonitorGcpOffering, CspmMonitorGcpOfferingArgs
The CSPM monitoring for GCP offering- Native
Cloud Pulumi.Connection Azure Native. Security. Inputs. Cspm Monitor Gcp Offering Native Cloud Connection - The native cloud connection configuration
- Native
Cloud CspmConnection Monitor Gcp Offering Native Cloud Connection - The native cloud connection configuration
- native_
cloud_ objectconnection - The native cloud connection configuration
- native
Cloud CspmConnection Monitor Gcp Offering Native Cloud Connection - The native cloud connection configuration
- native
Cloud CspmConnection Monitor Gcp Offering Native Cloud Connection - The native cloud connection configuration
- native_
cloud_ Cspmconnection Monitor Gcp Offering Native Cloud Connection - The native cloud connection configuration
- native
Cloud Property MapConnection - The native cloud connection configuration
CspmMonitorGcpOfferingNativeCloudConnection, CspmMonitorGcpOfferingNativeCloudConnectionArgs
The native cloud connection configuration- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for the offering
- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for the offering
- service_
account_ stringemail_ address - The service account email address in GCP for this offering
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id for the offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for the offering
- service
Account stringEmail Address - The service account email address in GCP for this offering
- workload
Identity stringProvider Id - The GCP workload identity provider id for the offering
- service_
account_ stremail_ address - The service account email address in GCP for this offering
- workload_
identity_ strprovider_ id - The GCP workload identity provider id for the offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for the offering
CspmMonitorGcpOfferingNativeCloudConnectionResponse, CspmMonitorGcpOfferingNativeCloudConnectionResponseArgs
The native cloud connection configuration- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for the offering
- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for the offering
- service_
account_ stringemail_ address - The service account email address in GCP for this offering
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id for the offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for the offering
- service
Account stringEmail Address - The service account email address in GCP for this offering
- workload
Identity stringProvider Id - The GCP workload identity provider id for the offering
- service_
account_ stremail_ address - The service account email address in GCP for this offering
- workload_
identity_ strprovider_ id - The GCP workload identity provider id for the offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for the offering
CspmMonitorGcpOfferingResponse, CspmMonitorGcpOfferingResponseArgs
The CSPM monitoring for GCP offering- Description string
- The offering description.
- Native
Cloud Pulumi.Connection Azure Native. Security. Inputs. Cspm Monitor Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- Description string
- The offering description.
- Native
Cloud CspmConnection Monitor Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- description string
- The offering description.
- native_
cloud_ objectconnection - The native cloud connection configuration
- description String
- The offering description.
- native
Cloud CspmConnection Monitor Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- description string
- The offering description.
- native
Cloud CspmConnection Monitor Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- description str
- The offering description.
- native_
cloud_ Cspmconnection Monitor Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- description String
- The offering description.
- native
Cloud Property MapConnection - The native cloud connection configuration
CspmMonitorGitLabOffering, CspmMonitorGitLabOfferingArgs
The CSPM (Cloud security posture management) monitoring for gitlab offeringCspmMonitorGitLabOfferingResponse, CspmMonitorGitLabOfferingResponseArgs
The CSPM (Cloud security posture management) monitoring for gitlab offering- Description string
- The offering description.
- Description string
- The offering description.
- description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
CspmMonitorGithubOffering, CspmMonitorGithubOfferingArgs
The CSPM monitoring for github offeringCspmMonitorGithubOfferingResponse, CspmMonitorGithubOfferingResponseArgs
The CSPM monitoring for github offering- Description string
- The offering description.
- Description string
- The offering description.
- description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
CspmMonitorJFrogOffering, CspmMonitorJFrogOfferingArgs
The CSPM (Cloud security posture management) monitoring for JFrog Artifactory offeringCspmMonitorJFrogOfferingResponse, CspmMonitorJFrogOfferingResponseArgs
The CSPM (Cloud security posture management) monitoring for JFrog Artifactory offering- Description string
- The offering description.
- Description string
- The offering description.
- description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
DefenderCspmAwsOffering, DefenderCspmAwsOfferingArgs
The CSPM P1 for AWS offering- Ciem
Pulumi.
Azure Native. Security. Inputs. Defender Cspm Aws Offering Ciem - Defenders CSPM Permissions Management offering configurations
- Data
Sensitivity Pulumi.Discovery Azure Native. Security. Inputs. Defender Cspm Aws Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- Databases
Dspm Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Databases Dspm - The databases DSPM configuration
- Mdc
Containers Pulumi.Agentless Discovery K8S Azure Native. Security. Inputs. Defender Cspm Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender Cspm Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Vm Scanners - The Microsoft Defender for CSPM offering VM scanning configuration
- Ciem
Defender
Cspm Aws Offering Ciem - Defenders CSPM Permissions Management offering configurations
- Data
Sensitivity DefenderDiscovery Cspm Aws Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- Databases
Dspm DefenderCspm Aws Offering Databases Dspm - The databases DSPM configuration
- Mdc
Containers DefenderAgentless Discovery K8S Cspm Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers DefenderImage Assessment Cspm Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- Vm
Scanners DefenderCspm Aws Offering Vm Scanners - The Microsoft Defender for CSPM offering VM scanning configuration
- ciem object
- Defenders CSPM Permissions Management offering configurations
- data_
sensitivity_ objectdiscovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases_
dspm object - The databases DSPM configuration
- mdc_
containers_ objectagentless_ discovery_ k8_ s - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender container image assessment configuration
- vm_
scanners object - The Microsoft Defender for CSPM offering VM scanning configuration
- ciem
Defender
Cspm Aws Offering Ciem - Defenders CSPM Permissions Management offering configurations
- data
Sensitivity DefenderDiscovery Cspm Aws Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases
Dspm DefenderCspm Aws Offering Databases Dspm - The databases DSPM configuration
- mdc
Containers DefenderAgentless Discovery K8S Cspm Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment Cspm Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderCspm Aws Offering Vm Scanners - The Microsoft Defender for CSPM offering VM scanning configuration
- ciem
Defender
Cspm Aws Offering Ciem - Defenders CSPM Permissions Management offering configurations
- data
Sensitivity DefenderDiscovery Cspm Aws Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases
Dspm DefenderCspm Aws Offering Databases Dspm - The databases DSPM configuration
- mdc
Containers DefenderAgentless Discovery K8S Cspm Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment Cspm Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderCspm Aws Offering Vm Scanners - The Microsoft Defender for CSPM offering VM scanning configuration
- ciem
Defender
Cspm Aws Offering Ciem - Defenders CSPM Permissions Management offering configurations
- data_
sensitivity_ Defenderdiscovery Cspm Aws Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases_
dspm DefenderCspm Aws Offering Databases Dspm - The databases DSPM configuration
- mdc_
containers_ Defenderagentless_ discovery_ k8_ s Cspm Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ Defenderimage_ assessment Cspm Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm_
scanners DefenderCspm Aws Offering Vm Scanners - The Microsoft Defender for CSPM offering VM scanning configuration
- ciem Property Map
- Defenders CSPM Permissions Management offering configurations
- data
Sensitivity Property MapDiscovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases
Dspm Property Map - The databases DSPM configuration
- mdc
Containers Property MapAgentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers Property MapImage Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners Property Map - The Microsoft Defender for CSPM offering VM scanning configuration
DefenderCspmAwsOfferingCiem, DefenderCspmAwsOfferingCiemArgs
Defenders CSPM Permissions Management offering configurations- Ciem
Discovery Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Ciem Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- Ciem
Oidc Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Ciem Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- Ciem
Discovery DefenderCspm Aws Offering Ciem Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- Ciem
Oidc DefenderCspm Aws Offering Ciem Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem_
discovery object - Defender CSPM Permissions Management discovery configuration
- ciem_
oidc object - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery DefenderCspm Aws Offering Ciem Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc DefenderCspm Aws Offering Ciem Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery DefenderCspm Aws Offering Ciem Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc DefenderCspm Aws Offering Ciem Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem_
discovery DefenderCspm Aws Offering Ciem Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- ciem_
oidc DefenderCspm Aws Offering Ciem Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery Property Map - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc Property Map - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
DefenderCspmAwsOfferingCiemCiemDiscovery, DefenderCspmAwsOfferingCiemCiemDiscoveryArgs
Defender CSPM Permissions Management discovery configuration- Cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management discovery
- Cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management discovery
- cloud_
role_ stringarn - The cloud role ARN in AWS for Permissions Management discovery
- cloud
Role StringArn - The cloud role ARN in AWS for Permissions Management discovery
- cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management discovery
- cloud_
role_ strarn - The cloud role ARN in AWS for Permissions Management discovery
- cloud
Role StringArn - The cloud role ARN in AWS for Permissions Management discovery
DefenderCspmAwsOfferingCiemCiemDiscoveryResponse, DefenderCspmAwsOfferingCiemCiemDiscoveryResponseArgs
Defender CSPM Permissions Management discovery configuration- Cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management discovery
- Cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management discovery
- cloud_
role_ stringarn - The cloud role ARN in AWS for Permissions Management discovery
- cloud
Role StringArn - The cloud role ARN in AWS for Permissions Management discovery
- cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management discovery
- cloud_
role_ strarn - The cloud role ARN in AWS for Permissions Management discovery
- cloud
Role StringArn - The cloud role ARN in AWS for Permissions Management discovery
DefenderCspmAwsOfferingCiemCiemOidc, DefenderCspmAwsOfferingCiemCiemOidcArgs
AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations- Azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against AWS
- Cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- Azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against AWS
- Cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure_
active_ stringdirectory_ app_ name - the azure active directory app name used of authenticating against AWS
- cloud_
role_ stringarn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure
Active StringDirectory App Name - the azure active directory app name used of authenticating against AWS
- cloud
Role StringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against AWS
- cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure_
active_ strdirectory_ app_ name - the azure active directory app name used of authenticating against AWS
- cloud_
role_ strarn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure
Active StringDirectory App Name - the azure active directory app name used of authenticating against AWS
- cloud
Role StringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
DefenderCspmAwsOfferingCiemCiemOidcResponse, DefenderCspmAwsOfferingCiemCiemOidcResponseArgs
AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations- Azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against AWS
- Cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- Azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against AWS
- Cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure_
active_ stringdirectory_ app_ name - the azure active directory app name used of authenticating against AWS
- cloud_
role_ stringarn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure
Active StringDirectory App Name - the azure active directory app name used of authenticating against AWS
- cloud
Role StringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against AWS
- cloud
Role stringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure_
active_ strdirectory_ app_ name - the azure active directory app name used of authenticating against AWS
- cloud_
role_ strarn - The cloud role ARN in AWS for Permissions Management used for oidc connection
- azure
Active StringDirectory App Name - the azure active directory app name used of authenticating against AWS
- cloud
Role StringArn - The cloud role ARN in AWS for Permissions Management used for oidc connection
DefenderCspmAwsOfferingCiemResponse, DefenderCspmAwsOfferingCiemResponseArgs
Defenders CSPM Permissions Management offering configurations- Ciem
Discovery Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Ciem Ciem Discovery Response - Defender CSPM Permissions Management discovery configuration
- Ciem
Oidc Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Ciem Ciem Oidc Response - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- Ciem
Discovery DefenderCspm Aws Offering Ciem Ciem Discovery Response - Defender CSPM Permissions Management discovery configuration
- Ciem
Oidc DefenderCspm Aws Offering Ciem Ciem Oidc Response - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem_
discovery object - Defender CSPM Permissions Management discovery configuration
- ciem_
oidc object - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery DefenderCspm Aws Offering Ciem Ciem Discovery Response - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc DefenderCspm Aws Offering Ciem Ciem Oidc Response - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery DefenderCspm Aws Offering Ciem Ciem Discovery Response - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc DefenderCspm Aws Offering Ciem Ciem Oidc Response - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem_
discovery DefenderCspm Aws Offering Ciem Ciem Discovery Response - Defender CSPM Permissions Management discovery configuration
- ciem_
oidc DefenderCspm Aws Offering Ciem Ciem Oidc Response - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery Property Map - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc Property Map - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
DefenderCspmAwsOfferingDataSensitivityDiscovery, DefenderCspmAwsOfferingDataSensitivityDiscoveryArgs
The Microsoft Defender Data Sensitivity discovery configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
DefenderCspmAwsOfferingDataSensitivityDiscoveryResponse, DefenderCspmAwsOfferingDataSensitivityDiscoveryResponseArgs
The Microsoft Defender Data Sensitivity discovery configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
DefenderCspmAwsOfferingDatabasesDspm, DefenderCspmAwsOfferingDatabasesDspmArgs
The databases DSPM configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is databases DSPM protection enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is databases DSPM protection enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is databases DSPM protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is databases DSPM protection enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is databases DSPM protection enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is databases DSPM protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is databases DSPM protection enabled
DefenderCspmAwsOfferingDatabasesDspmResponse, DefenderCspmAwsOfferingDatabasesDspmResponseArgs
The databases DSPM configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is databases DSPM protection enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is databases DSPM protection enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is databases DSPM protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is databases DSPM protection enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is databases DSPM protection enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is databases DSPM protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is databases DSPM protection enabled
DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8S, DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SArgs
The Microsoft Defender container agentless discovery K8s configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery K8s enabled
DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse, DefenderCspmAwsOfferingMdcContainersAgentlessDiscoveryK8SResponseArgs
The Microsoft Defender container agentless discovery K8s configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery K8s enabled
DefenderCspmAwsOfferingMdcContainersImageAssessment, DefenderCspmAwsOfferingMdcContainersImageAssessmentArgs
The Microsoft Defender container image assessment configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
DefenderCspmAwsOfferingMdcContainersImageAssessmentResponse, DefenderCspmAwsOfferingMdcContainersImageAssessmentResponseArgs
The Microsoft Defender container image assessment configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
DefenderCspmAwsOfferingResponse, DefenderCspmAwsOfferingResponseArgs
The CSPM P1 for AWS offering- Description string
- The offering description.
- Ciem
Pulumi.
Azure Native. Security. Inputs. Defender Cspm Aws Offering Ciem Response - Defenders CSPM Permissions Management offering configurations
- Data
Sensitivity Pulumi.Discovery Azure Native. Security. Inputs. Defender Cspm Aws Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- Databases
Dspm Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Databases Dspm Response - The databases DSPM configuration
- Mdc
Containers Pulumi.Agentless Discovery K8S Azure Native. Security. Inputs. Defender Cspm Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender Cspm Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Vm Scanners Response - The Microsoft Defender for CSPM offering VM scanning configuration
- Description string
- The offering description.
- Ciem
Defender
Cspm Aws Offering Ciem Response - Defenders CSPM Permissions Management offering configurations
- Data
Sensitivity DefenderDiscovery Cspm Aws Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- Databases
Dspm DefenderCspm Aws Offering Databases Dspm Response - The databases DSPM configuration
- Mdc
Containers DefenderAgentless Discovery K8S Cspm Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers DefenderImage Assessment Cspm Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- Vm
Scanners DefenderCspm Aws Offering Vm Scanners Response - The Microsoft Defender for CSPM offering VM scanning configuration
- description string
- The offering description.
- ciem object
- Defenders CSPM Permissions Management offering configurations
- data_
sensitivity_ objectdiscovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases_
dspm object - The databases DSPM configuration
- mdc_
containers_ objectagentless_ discovery_ k8_ s - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender container image assessment configuration
- vm_
scanners object - The Microsoft Defender for CSPM offering VM scanning configuration
- description String
- The offering description.
- ciem
Defender
Cspm Aws Offering Ciem Response - Defenders CSPM Permissions Management offering configurations
- data
Sensitivity DefenderDiscovery Cspm Aws Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- databases
Dspm DefenderCspm Aws Offering Databases Dspm Response - The databases DSPM configuration
- mdc
Containers DefenderAgentless Discovery K8S Cspm Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment Cspm Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderCspm Aws Offering Vm Scanners Response - The Microsoft Defender for CSPM offering VM scanning configuration
- description string
- The offering description.
- ciem
Defender
Cspm Aws Offering Ciem Response - Defenders CSPM Permissions Management offering configurations
- data
Sensitivity DefenderDiscovery Cspm Aws Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- databases
Dspm DefenderCspm Aws Offering Databases Dspm Response - The databases DSPM configuration
- mdc
Containers DefenderAgentless Discovery K8S Cspm Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment Cspm Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderCspm Aws Offering Vm Scanners Response - The Microsoft Defender for CSPM offering VM scanning configuration
- description str
- The offering description.
- ciem
Defender
Cspm Aws Offering Ciem Response - Defenders CSPM Permissions Management offering configurations
- data_
sensitivity_ Defenderdiscovery Cspm Aws Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- databases_
dspm DefenderCspm Aws Offering Databases Dspm Response - The databases DSPM configuration
- mdc_
containers_ Defenderagentless_ discovery_ k8_ s Cspm Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ Defenderimage_ assessment Cspm Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- vm_
scanners DefenderCspm Aws Offering Vm Scanners Response - The Microsoft Defender for CSPM offering VM scanning configuration
- description String
- The offering description.
- ciem Property Map
- Defenders CSPM Permissions Management offering configurations
- data
Sensitivity Property MapDiscovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases
Dspm Property Map - The databases DSPM configuration
- mdc
Containers Property MapAgentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers Property MapImage Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners Property Map - The Microsoft Defender for CSPM offering VM scanning configuration
DefenderCspmAwsOfferingVmScanners, DefenderCspmAwsOfferingVmScannersArgs
The Microsoft Defender for CSPM offering VM scanning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderCspmAwsOfferingVmScannersResponse, DefenderCspmAwsOfferingVmScannersResponseArgs
The Microsoft Defender for CSPM offering VM scanning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderCspmDockerHubOffering, DefenderCspmDockerHubOfferingArgs
The Defender for CSPM Docker Hub offering configurationsDefenderCspmDockerHubOfferingResponse, DefenderCspmDockerHubOfferingResponseArgs
The Defender for CSPM Docker Hub offering configurations- Description string
- The offering description.
- Description string
- The offering description.
- description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
DefenderCspmGcpOffering, DefenderCspmGcpOfferingArgs
The CSPM P1 for GCP offering- Ciem
Discovery Pulumi.Azure Native. Security. Inputs. Defender Cspm Gcp Offering Ciem Discovery - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- Data
Sensitivity Pulumi.Discovery Azure Native. Security. Inputs. Defender Cspm Gcp Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- Mdc
Containers Pulumi.Agentless Discovery K8S Azure Native. Security. Inputs. Defender Cspm Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender Cspm Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender Cspm Gcp Offering Vm Scanners - The Microsoft Defender for CSPM VM scanning configuration
- Ciem
Discovery DefenderCspm Gcp Offering Ciem Discovery - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- Data
Sensitivity DefenderDiscovery Cspm Gcp Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- Mdc
Containers DefenderAgentless Discovery K8S Cspm Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers DefenderImage Assessment Cspm Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Vm
Scanners DefenderCspm Gcp Offering Vm Scanners - The Microsoft Defender for CSPM VM scanning configuration
- ciem_
discovery object - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data_
sensitivity_ objectdiscovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc_
containers_ objectagentless_ discovery_ k8_ s - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender Container image assessment configuration
- vm_
scanners object - The Microsoft Defender for CSPM VM scanning configuration
- ciem
Discovery DefenderCspm Gcp Offering Ciem Discovery - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data
Sensitivity DefenderDiscovery Cspm Gcp Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc
Containers DefenderAgentless Discovery K8S Cspm Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment Cspm Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- vm
Scanners DefenderCspm Gcp Offering Vm Scanners - The Microsoft Defender for CSPM VM scanning configuration
- ciem
Discovery DefenderCspm Gcp Offering Ciem Discovery - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data
Sensitivity DefenderDiscovery Cspm Gcp Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc
Containers DefenderAgentless Discovery K8S Cspm Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment Cspm Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- vm
Scanners DefenderCspm Gcp Offering Vm Scanners - The Microsoft Defender for CSPM VM scanning configuration
- ciem_
discovery DefenderCspm Gcp Offering Ciem Discovery - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data_
sensitivity_ Defenderdiscovery Cspm Gcp Offering Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc_
containers_ Defenderagentless_ discovery_ k8_ s Cspm Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ Defenderimage_ assessment Cspm Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- vm_
scanners DefenderCspm Gcp Offering Vm Scanners - The Microsoft Defender for CSPM VM scanning configuration
- ciem
Discovery Property Map - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data
Sensitivity Property MapDiscovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc
Containers Property MapAgentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers Property MapImage Assessment - The Microsoft Defender Container image assessment configuration
- vm
Scanners Property Map - The Microsoft Defender for CSPM VM scanning configuration
DefenderCspmGcpOfferingCiemDiscovery, DefenderCspmGcpOfferingCiemDiscoveryArgs
GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations- Azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- Service
Account stringEmail Address - The service account email address in GCP for Permissions Management offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for Permissions Management offering
- Azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- Service
Account stringEmail Address - The service account email address in GCP for Permissions Management offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for Permissions Management offering
- azure_
active_ stringdirectory_ app_ name - the azure active directory app name used of authenticating against GCP workload identity federation
- service_
account_ stringemail_ address - The service account email address in GCP for Permissions Management offering
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id for Permissions Management offering
- azure
Active StringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- service
Account StringEmail Address - The service account email address in GCP for Permissions Management offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for Permissions Management offering
- azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- service
Account stringEmail Address - The service account email address in GCP for Permissions Management offering
- workload
Identity stringProvider Id - The GCP workload identity provider id for Permissions Management offering
- azure_
active_ strdirectory_ app_ name - the azure active directory app name used of authenticating against GCP workload identity federation
- service_
account_ stremail_ address - The service account email address in GCP for Permissions Management offering
- workload_
identity_ strprovider_ id - The GCP workload identity provider id for Permissions Management offering
- azure
Active StringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- service
Account StringEmail Address - The service account email address in GCP for Permissions Management offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for Permissions Management offering
DefenderCspmGcpOfferingCiemDiscoveryResponse, DefenderCspmGcpOfferingCiemDiscoveryResponseArgs
GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations- Azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- Service
Account stringEmail Address - The service account email address in GCP for Permissions Management offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for Permissions Management offering
- Azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- Service
Account stringEmail Address - The service account email address in GCP for Permissions Management offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for Permissions Management offering
- azure_
active_ stringdirectory_ app_ name - the azure active directory app name used of authenticating against GCP workload identity federation
- service_
account_ stringemail_ address - The service account email address in GCP for Permissions Management offering
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id for Permissions Management offering
- azure
Active StringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- service
Account StringEmail Address - The service account email address in GCP for Permissions Management offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for Permissions Management offering
- azure
Active stringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- service
Account stringEmail Address - The service account email address in GCP for Permissions Management offering
- workload
Identity stringProvider Id - The GCP workload identity provider id for Permissions Management offering
- azure_
active_ strdirectory_ app_ name - the azure active directory app name used of authenticating against GCP workload identity federation
- service_
account_ stremail_ address - The service account email address in GCP for Permissions Management offering
- workload_
identity_ strprovider_ id - The GCP workload identity provider id for Permissions Management offering
- azure
Active StringDirectory App Name - the azure active directory app name used of authenticating against GCP workload identity federation
- service
Account StringEmail Address - The service account email address in GCP for Permissions Management offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for Permissions Management offering
DefenderCspmGcpOfferingDataSensitivityDiscovery, DefenderCspmGcpOfferingDataSensitivityDiscoveryArgs
The Microsoft Defender Data Sensitivity discovery configuration- Enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderCspmGcpOfferingDataSensitivityDiscoveryResponse, DefenderCspmGcpOfferingDataSensitivityDiscoveryResponseArgs
The Microsoft Defender Data Sensitivity discovery configuration- Enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender Data Sensitivity discovery enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender Data Sensitivity discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8S, DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SArgs
The Microsoft Defender Container agentless discovery configuration- Enabled bool
- Is Microsoft Defender container agentless discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse, DefenderCspmGcpOfferingMdcContainersAgentlessDiscoveryK8SResponseArgs
The Microsoft Defender Container agentless discovery configuration- Enabled bool
- Is Microsoft Defender container agentless discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderCspmGcpOfferingMdcContainersImageAssessment, DefenderCspmGcpOfferingMdcContainersImageAssessmentArgs
The Microsoft Defender Container image assessment configuration- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderCspmGcpOfferingMdcContainersImageAssessmentResponse, DefenderCspmGcpOfferingMdcContainersImageAssessmentResponseArgs
The Microsoft Defender Container image assessment configuration- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderCspmGcpOfferingResponse, DefenderCspmGcpOfferingResponseArgs
The CSPM P1 for GCP offering- Description string
- The offering description.
- Ciem
Discovery Pulumi.Azure Native. Security. Inputs. Defender Cspm Gcp Offering Ciem Discovery Response - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- Data
Sensitivity Pulumi.Discovery Azure Native. Security. Inputs. Defender Cspm Gcp Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- Mdc
Containers Pulumi.Agentless Discovery K8S Azure Native. Security. Inputs. Defender Cspm Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender Cspm Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender Cspm Gcp Offering Vm Scanners Response - The Microsoft Defender for CSPM VM scanning configuration
- Description string
- The offering description.
- Ciem
Discovery DefenderCspm Gcp Offering Ciem Discovery Response - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- Data
Sensitivity DefenderDiscovery Cspm Gcp Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- Mdc
Containers DefenderAgentless Discovery K8S Cspm Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers DefenderImage Assessment Cspm Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- Vm
Scanners DefenderCspm Gcp Offering Vm Scanners Response - The Microsoft Defender for CSPM VM scanning configuration
- description string
- The offering description.
- ciem_
discovery object - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data_
sensitivity_ objectdiscovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc_
containers_ objectagentless_ discovery_ k8_ s - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender Container image assessment configuration
- vm_
scanners object - The Microsoft Defender for CSPM VM scanning configuration
- description String
- The offering description.
- ciem
Discovery DefenderCspm Gcp Offering Ciem Discovery Response - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data
Sensitivity DefenderDiscovery Cspm Gcp Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- mdc
Containers DefenderAgentless Discovery K8S Cspm Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment Cspm Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- vm
Scanners DefenderCspm Gcp Offering Vm Scanners Response - The Microsoft Defender for CSPM VM scanning configuration
- description string
- The offering description.
- ciem
Discovery DefenderCspm Gcp Offering Ciem Discovery Response - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data
Sensitivity DefenderDiscovery Cspm Gcp Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- mdc
Containers DefenderAgentless Discovery K8S Cspm Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment Cspm Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- vm
Scanners DefenderCspm Gcp Offering Vm Scanners Response - The Microsoft Defender for CSPM VM scanning configuration
- description str
- The offering description.
- ciem_
discovery DefenderCspm Gcp Offering Ciem Discovery Response - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data_
sensitivity_ Defenderdiscovery Cspm Gcp Offering Data Sensitivity Discovery Response - The Microsoft Defender Data Sensitivity discovery configuration
- mdc_
containers_ Defenderagentless_ discovery_ k8_ s Cspm Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ Defenderimage_ assessment Cspm Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- vm_
scanners DefenderCspm Gcp Offering Vm Scanners Response - The Microsoft Defender for CSPM VM scanning configuration
- description String
- The offering description.
- ciem
Discovery Property Map - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data
Sensitivity Property MapDiscovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc
Containers Property MapAgentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers Property MapImage Assessment - The Microsoft Defender Container image assessment configuration
- vm
Scanners Property Map - The Microsoft Defender for CSPM VM scanning configuration
DefenderCspmGcpOfferingVmScanners, DefenderCspmGcpOfferingVmScannersArgs
The Microsoft Defender for CSPM VM scanning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderCspmGcpOfferingVmScannersResponse, DefenderCspmGcpOfferingVmScannersResponseArgs
The Microsoft Defender for CSPM VM scanning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderCspmJFrogOffering, DefenderCspmJFrogOfferingArgs
The CSPM P1 for JFrog Artifactory offering- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender Cspm JFrog Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Mdc
Containers DefenderImage Assessment Cspm JFrog Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender Container image assessment configuration
- mdc
Containers DefenderImage Assessment Cspm JFrog Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- mdc
Containers DefenderImage Assessment Cspm JFrog Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- mdc_
containers_ Defenderimage_ assessment Cspm JFrog Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- mdc
Containers Property MapImage Assessment - The Microsoft Defender Container image assessment configuration
DefenderCspmJFrogOfferingMdcContainersImageAssessment, DefenderCspmJFrogOfferingMdcContainersImageAssessmentArgs
The Microsoft Defender Container image assessment configuration- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
DefenderCspmJFrogOfferingMdcContainersImageAssessmentResponse, DefenderCspmJFrogOfferingMdcContainersImageAssessmentResponseArgs
The Microsoft Defender Container image assessment configuration- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
DefenderCspmJFrogOfferingResponse, DefenderCspmJFrogOfferingResponseArgs
The CSPM P1 for JFrog Artifactory offering- Description string
- The offering description.
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender Cspm JFrog Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- Description string
- The offering description.
- Mdc
Containers DefenderImage Assessment Cspm JFrog Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- description string
- The offering description.
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender Container image assessment configuration
- description String
- The offering description.
- mdc
Containers DefenderImage Assessment Cspm JFrog Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- description string
- The offering description.
- mdc
Containers DefenderImage Assessment Cspm JFrog Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- description str
- The offering description.
- mdc_
containers_ Defenderimage_ assessment Cspm JFrog Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- description String
- The offering description.
- mdc
Containers Property MapImage Assessment - The Microsoft Defender Container image assessment configuration
DefenderFoDatabasesAwsOffering, DefenderFoDatabasesAwsOfferingArgs
The Defender for Databases AWS offering- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender Fo Databases Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- Databases
Dspm Pulumi.Azure Native. Security. Inputs. Defender Fo Databases Aws Offering Databases Dspm - The databases data security posture management (DSPM) configuration
- Rds
Pulumi.
Azure Native. Security. Inputs. Defender Fo Databases Aws Offering Rds - The RDS configuration
- Arc
Auto DefenderProvisioning Fo Databases Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- Databases
Dspm DefenderFo Databases Aws Offering Databases Dspm - The databases data security posture management (DSPM) configuration
- Rds
Defender
Fo Databases Aws Offering Rds - The RDS configuration
- arc_
auto_ objectprovisioning - The ARC autoprovisioning configuration
- databases_
dspm object - The databases data security posture management (DSPM) configuration
- rds object
- The RDS configuration
- arc
Auto DefenderProvisioning Fo Databases Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- databases
Dspm DefenderFo Databases Aws Offering Databases Dspm - The databases data security posture management (DSPM) configuration
- rds
Defender
Fo Databases Aws Offering Rds - The RDS configuration
- arc
Auto DefenderProvisioning Fo Databases Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- databases
Dspm DefenderFo Databases Aws Offering Databases Dspm - The databases data security posture management (DSPM) configuration
- rds
Defender
Fo Databases Aws Offering Rds - The RDS configuration
- arc_
auto_ Defenderprovisioning Fo Databases Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- databases_
dspm DefenderFo Databases Aws Offering Databases Dspm - The databases data security posture management (DSPM) configuration
- rds
Defender
Fo Databases Aws Offering Rds - The RDS configuration
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- databases
Dspm Property Map - The databases data security posture management (DSPM) configuration
- rds Property Map
- The RDS configuration
DefenderFoDatabasesAwsOfferingArcAutoProvisioning, DefenderFoDatabasesAwsOfferingArcAutoProvisioningArgs
The ARC autoprovisioning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
DefenderFoDatabasesAwsOfferingArcAutoProvisioningResponse, DefenderFoDatabasesAwsOfferingArcAutoProvisioningResponseArgs
The ARC autoprovisioning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
DefenderFoDatabasesAwsOfferingDatabasesDspm, DefenderFoDatabasesAwsOfferingDatabasesDspmArgs
The databases data security posture management (DSPM) configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is databases data security posture management (DSPM) protection enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is databases data security posture management (DSPM) protection enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is databases data security posture management (DSPM) protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is databases data security posture management (DSPM) protection enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is databases data security posture management (DSPM) protection enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is databases data security posture management (DSPM) protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is databases data security posture management (DSPM) protection enabled
DefenderFoDatabasesAwsOfferingDatabasesDspmResponse, DefenderFoDatabasesAwsOfferingDatabasesDspmResponseArgs
The databases data security posture management (DSPM) configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is databases data security posture management (DSPM) protection enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is databases data security posture management (DSPM) protection enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is databases data security posture management (DSPM) protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is databases data security posture management (DSPM) protection enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is databases data security posture management (DSPM) protection enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is databases data security posture management (DSPM) protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is databases data security posture management (DSPM) protection enabled
DefenderFoDatabasesAwsOfferingRds, DefenderFoDatabasesAwsOfferingRdsArgs
The RDS configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is RDS protection enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is RDS protection enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is RDS protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is RDS protection enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is RDS protection enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is RDS protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is RDS protection enabled
DefenderFoDatabasesAwsOfferingRdsResponse, DefenderFoDatabasesAwsOfferingRdsResponseArgs
The RDS configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is RDS protection enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is RDS protection enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is RDS protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is RDS protection enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is RDS protection enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is RDS protection enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is RDS protection enabled
DefenderFoDatabasesAwsOfferingResponse, DefenderFoDatabasesAwsOfferingResponseArgs
The Defender for Databases AWS offering- Description string
- The offering description.
- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender Fo Databases Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- Databases
Dspm Pulumi.Azure Native. Security. Inputs. Defender Fo Databases Aws Offering Databases Dspm Response - The databases data security posture management (DSPM) configuration
- Rds
Pulumi.
Azure Native. Security. Inputs. Defender Fo Databases Aws Offering Rds Response - The RDS configuration
- Description string
- The offering description.
- Arc
Auto DefenderProvisioning Fo Databases Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- Databases
Dspm DefenderFo Databases Aws Offering Databases Dspm Response - The databases data security posture management (DSPM) configuration
- Rds
Defender
Fo Databases Aws Offering Rds Response - The RDS configuration
- description string
- The offering description.
- arc_
auto_ objectprovisioning - The ARC autoprovisioning configuration
- databases_
dspm object - The databases data security posture management (DSPM) configuration
- rds object
- The RDS configuration
- description String
- The offering description.
- arc
Auto DefenderProvisioning Fo Databases Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- databases
Dspm DefenderFo Databases Aws Offering Databases Dspm Response - The databases data security posture management (DSPM) configuration
- rds
Defender
Fo Databases Aws Offering Rds Response - The RDS configuration
- description string
- The offering description.
- arc
Auto DefenderProvisioning Fo Databases Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- databases
Dspm DefenderFo Databases Aws Offering Databases Dspm Response - The databases data security posture management (DSPM) configuration
- rds
Defender
Fo Databases Aws Offering Rds Response - The RDS configuration
- description str
- The offering description.
- arc_
auto_ Defenderprovisioning Fo Databases Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- databases_
dspm DefenderFo Databases Aws Offering Databases Dspm Response - The databases data security posture management (DSPM) configuration
- rds
Defender
Fo Databases Aws Offering Rds Response - The RDS configuration
- description String
- The offering description.
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- databases
Dspm Property Map - The databases data security posture management (DSPM) configuration
- rds Property Map
- The RDS configuration
DefenderForContainersAwsOffering, DefenderForContainersAwsOfferingArgs
The Defender for Containers AWS offering- Cloud
Watch Pulumi.To Kinesis Azure Native. Security. Inputs. Defender For Containers Aws Offering Cloud Watch To Kinesis - The cloudwatch to kinesis connection configuration
- Data
Collection stringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- Enable
Audit boolLogs Auto Provisioning - Is audit logs data collection enabled
- Enable
Defender boolAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- Enable
Policy boolAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- Kinesis
To Pulumi.S3 Azure Native. Security. Inputs. Defender For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- Kube
Audit doubleRetention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- Kubernetes
Data Pulumi.Collection Azure Native. Security. Inputs. Defender For Containers Aws Offering Kubernetes Data Collection - The kubernetes data collection connection configuration
- Kubernetes
Service Pulumi.Azure Native. Security. Inputs. Defender For Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- Mdc
Containers Pulumi.Agentless Discovery K8S Azure Native. Security. Inputs. Defender For Containers Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender For Containers Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Containers Aws Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- Cloud
Watch DefenderTo Kinesis For Containers Aws Offering Cloud Watch To Kinesis - The cloudwatch to kinesis connection configuration
- Data
Collection stringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- Enable
Audit boolLogs Auto Provisioning - Is audit logs data collection enabled
- Enable
Defender boolAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- Enable
Policy boolAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- Kinesis
To DefenderS3 For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- Kube
Audit float64Retention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- Kubernetes
Data DefenderCollection For Containers Aws Offering Kubernetes Data Collection - The kubernetes data collection connection configuration
- Kubernetes
Service DefenderFor Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- Mdc
Containers DefenderAgentless Discovery K8S For Containers Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers DefenderImage Assessment For Containers Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- Vm
Scanners DefenderFor Containers Aws Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- cloud_
watch_ objectto_ kinesis - The cloudwatch to kinesis connection configuration
- data_
collection_ stringexternal_ id - The externalId used by the data reader to prevent the confused deputy attack
- enable_
audit_ boollogs_ auto_ provisioning - Is audit logs data collection enabled
- enable_
defender_ boolagent_ auto_ provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable_
policy_ boolagent_ auto_ provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis_
to_ objects3 - The kinesis to s3 connection configuration
- kube_
audit_ numberretention_ time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes_
data_ objectcollection - The kubernetes data collection connection configuration
- kubernetes_
service object - The kubernetes service connection configuration
- mdc_
containers_ objectagentless_ discovery_ k8_ s - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender container image assessment configuration
- vm_
scanners object - The Microsoft Defender for Container K8s VM host scanning configuration
- cloud
Watch DefenderTo Kinesis For Containers Aws Offering Cloud Watch To Kinesis - The cloudwatch to kinesis connection configuration
- data
Collection StringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- enable
Audit BooleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender BooleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy BooleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis
To DefenderS3 For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- kube
Audit DoubleRetention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes
Data DefenderCollection For Containers Aws Offering Kubernetes Data Collection - The kubernetes data collection connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- mdc
Containers DefenderAgentless Discovery K8S For Containers Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment For Containers Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderFor Containers Aws Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- cloud
Watch DefenderTo Kinesis For Containers Aws Offering Cloud Watch To Kinesis - The cloudwatch to kinesis connection configuration
- data
Collection stringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- enable
Audit booleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender booleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy booleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis
To DefenderS3 For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- kube
Audit numberRetention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes
Data DefenderCollection For Containers Aws Offering Kubernetes Data Collection - The kubernetes data collection connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- mdc
Containers DefenderAgentless Discovery K8S For Containers Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment For Containers Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderFor Containers Aws Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- cloud_
watch_ Defenderto_ kinesis For Containers Aws Offering Cloud Watch To Kinesis - The cloudwatch to kinesis connection configuration
- data_
collection_ strexternal_ id - The externalId used by the data reader to prevent the confused deputy attack
- enable_
audit_ boollogs_ auto_ provisioning - Is audit logs data collection enabled
- enable_
defender_ boolagent_ auto_ provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable_
policy_ boolagent_ auto_ provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis_
to_ Defenders3 For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- kube_
audit_ floatretention_ time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes_
data_ Defendercollection For Containers Aws Offering Kubernetes Data Collection - The kubernetes data collection connection configuration
- kubernetes_
service DefenderFor Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- mdc_
containers_ Defenderagentless_ discovery_ k8_ s For Containers Aws Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ Defenderimage_ assessment For Containers Aws Offering Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm_
scanners DefenderFor Containers Aws Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- cloud
Watch Property MapTo Kinesis - The cloudwatch to kinesis connection configuration
- data
Collection StringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- enable
Audit BooleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender BooleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy BooleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis
To Property MapS3 - The kinesis to s3 connection configuration
- kube
Audit NumberRetention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes
Data Property MapCollection - The kubernetes data collection connection configuration
- kubernetes
Service Property Map - The kubernetes service connection configuration
- mdc
Containers Property MapAgentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers Property MapImage Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners Property Map - The Microsoft Defender for Container K8s VM host scanning configuration
DefenderForContainersAwsOfferingCloudWatchToKinesis, DefenderForContainersAwsOfferingCloudWatchToKinesisArgs
The cloudwatch to kinesis connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- Cloud
Role stringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud_
role_ stringarn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud
Role StringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud
Role stringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud_
role_ strarn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud
Role StringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
DefenderForContainersAwsOfferingCloudWatchToKinesisResponse, DefenderForContainersAwsOfferingCloudWatchToKinesisResponseArgs
The cloudwatch to kinesis connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- Cloud
Role stringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud_
role_ stringarn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud
Role StringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud
Role stringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud_
role_ strarn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
- cloud
Role StringArn - The cloud role ARN in AWS used by CloudWatch to transfer data into Kinesis
DefenderForContainersAwsOfferingKinesisToS3, DefenderForContainersAwsOfferingKinesisToS3Args
The kinesis to s3 connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- Cloud
Role stringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud_
role_ stringarn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud
Role StringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud
Role stringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud_
role_ strarn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud
Role StringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
DefenderForContainersAwsOfferingKinesisToS3Response, DefenderForContainersAwsOfferingKinesisToS3ResponseArgs
The kinesis to s3 connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- Cloud
Role stringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud_
role_ stringarn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud
Role StringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud
Role stringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud_
role_ strarn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
- cloud
Role StringArn - The cloud role ARN in AWS used by Kinesis to transfer data into S3
DefenderForContainersAwsOfferingKubernetesDataCollection, DefenderForContainersAwsOfferingKubernetesDataCollectionArgs
The kubernetes data collection connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature used for reading data
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature used for reading data
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature used for reading data
- cloud
Role StringArn - The cloud role ARN in AWS for this feature used for reading data
- cloud
Role stringArn - The cloud role ARN in AWS for this feature used for reading data
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature used for reading data
- cloud
Role StringArn - The cloud role ARN in AWS for this feature used for reading data
DefenderForContainersAwsOfferingKubernetesDataCollectionResponse, DefenderForContainersAwsOfferingKubernetesDataCollectionResponseArgs
The kubernetes data collection connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature used for reading data
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature used for reading data
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature used for reading data
- cloud
Role StringArn - The cloud role ARN in AWS for this feature used for reading data
- cloud
Role stringArn - The cloud role ARN in AWS for this feature used for reading data
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature used for reading data
- cloud
Role StringArn - The cloud role ARN in AWS for this feature used for reading data
DefenderForContainersAwsOfferingKubernetesService, DefenderForContainersAwsOfferingKubernetesServiceArgs
The kubernetes service connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature used for provisioning resources
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud
Role StringArn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud
Role stringArn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud
Role StringArn - The cloud role ARN in AWS for this feature used for provisioning resources
DefenderForContainersAwsOfferingKubernetesServiceResponse, DefenderForContainersAwsOfferingKubernetesServiceResponseArgs
The kubernetes service connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature used for provisioning resources
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud
Role StringArn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud
Role stringArn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature used for provisioning resources
- cloud
Role StringArn - The cloud role ARN in AWS for this feature used for provisioning resources
DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8S, DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SArgs
The Microsoft Defender container agentless discovery K8s configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery K8s enabled
DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SResponse, DefenderForContainersAwsOfferingMdcContainersAgentlessDiscoveryK8SResponseArgs
The Microsoft Defender container agentless discovery K8s configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery K8s enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery K8s enabled
DefenderForContainersAwsOfferingMdcContainersImageAssessment, DefenderForContainersAwsOfferingMdcContainersImageAssessmentArgs
The Microsoft Defender container image assessment configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
DefenderForContainersAwsOfferingMdcContainersImageAssessmentResponse, DefenderForContainersAwsOfferingMdcContainersImageAssessmentResponseArgs
The Microsoft Defender container image assessment configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
DefenderForContainersAwsOfferingResponse, DefenderForContainersAwsOfferingResponseArgs
The Defender for Containers AWS offering- Description string
- The offering description.
- Cloud
Watch Pulumi.To Kinesis Azure Native. Security. Inputs. Defender For Containers Aws Offering Cloud Watch To Kinesis Response - The cloudwatch to kinesis connection configuration
- Data
Collection stringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- Enable
Audit boolLogs Auto Provisioning - Is audit logs data collection enabled
- Enable
Defender boolAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- Enable
Policy boolAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- Kinesis
To Pulumi.S3 Azure Native. Security. Inputs. Defender For Containers Aws Offering Kinesis To S3Response - The kinesis to s3 connection configuration
- Kube
Audit doubleRetention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- Kubernetes
Data Pulumi.Collection Azure Native. Security. Inputs. Defender For Containers Aws Offering Kubernetes Data Collection Response - The kubernetes data collection connection configuration
- Kubernetes
Service Pulumi.Azure Native. Security. Inputs. Defender For Containers Aws Offering Kubernetes Service Response - The kubernetes service connection configuration
- Mdc
Containers Pulumi.Agentless Discovery K8S Azure Native. Security. Inputs. Defender For Containers Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender For Containers Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Containers Aws Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- Description string
- The offering description.
- Cloud
Watch DefenderTo Kinesis For Containers Aws Offering Cloud Watch To Kinesis Response - The cloudwatch to kinesis connection configuration
- Data
Collection stringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- Enable
Audit boolLogs Auto Provisioning - Is audit logs data collection enabled
- Enable
Defender boolAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- Enable
Policy boolAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- Kinesis
To DefenderS3 For Containers Aws Offering Kinesis To S3Response - The kinesis to s3 connection configuration
- Kube
Audit float64Retention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- Kubernetes
Data DefenderCollection For Containers Aws Offering Kubernetes Data Collection Response - The kubernetes data collection connection configuration
- Kubernetes
Service DefenderFor Containers Aws Offering Kubernetes Service Response - The kubernetes service connection configuration
- Mdc
Containers DefenderAgentless Discovery K8S For Containers Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers DefenderImage Assessment For Containers Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- Vm
Scanners DefenderFor Containers Aws Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- description string
- The offering description.
- cloud_
watch_ objectto_ kinesis - The cloudwatch to kinesis connection configuration
- data_
collection_ stringexternal_ id - The externalId used by the data reader to prevent the confused deputy attack
- enable_
audit_ boollogs_ auto_ provisioning - Is audit logs data collection enabled
- enable_
defender_ boolagent_ auto_ provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable_
policy_ boolagent_ auto_ provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis_
to_ objects3 - The kinesis to s3 connection configuration
- kube_
audit_ numberretention_ time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes_
data_ objectcollection - The kubernetes data collection connection configuration
- kubernetes_
service object - The kubernetes service connection configuration
- mdc_
containers_ objectagentless_ discovery_ k8_ s - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender container image assessment configuration
- vm_
scanners object - The Microsoft Defender for Container K8s VM host scanning configuration
- description String
- The offering description.
- cloud
Watch DefenderTo Kinesis For Containers Aws Offering Cloud Watch To Kinesis Response - The cloudwatch to kinesis connection configuration
- data
Collection StringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- enable
Audit BooleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender BooleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy BooleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis
To DefenderS3 For Containers Aws Offering Kinesis To S3Response - The kinesis to s3 connection configuration
- kube
Audit DoubleRetention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes
Data DefenderCollection For Containers Aws Offering Kubernetes Data Collection Response - The kubernetes data collection connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Kubernetes Service Response - The kubernetes service connection configuration
- mdc
Containers DefenderAgentless Discovery K8S For Containers Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment For Containers Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderFor Containers Aws Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- description string
- The offering description.
- cloud
Watch DefenderTo Kinesis For Containers Aws Offering Cloud Watch To Kinesis Response - The cloudwatch to kinesis connection configuration
- data
Collection stringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- enable
Audit booleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender booleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy booleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis
To DefenderS3 For Containers Aws Offering Kinesis To S3Response - The kinesis to s3 connection configuration
- kube
Audit numberRetention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes
Data DefenderCollection For Containers Aws Offering Kubernetes Data Collection Response - The kubernetes data collection connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Kubernetes Service Response - The kubernetes service connection configuration
- mdc
Containers DefenderAgentless Discovery K8S For Containers Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment For Containers Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderFor Containers Aws Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- description str
- The offering description.
- cloud_
watch_ Defenderto_ kinesis For Containers Aws Offering Cloud Watch To Kinesis Response - The cloudwatch to kinesis connection configuration
- data_
collection_ strexternal_ id - The externalId used by the data reader to prevent the confused deputy attack
- enable_
audit_ boollogs_ auto_ provisioning - Is audit logs data collection enabled
- enable_
defender_ boolagent_ auto_ provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable_
policy_ boolagent_ auto_ provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis_
to_ Defenders3 For Containers Aws Offering Kinesis To S3Response - The kinesis to s3 connection configuration
- kube_
audit_ floatretention_ time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes_
data_ Defendercollection For Containers Aws Offering Kubernetes Data Collection Response - The kubernetes data collection connection configuration
- kubernetes_
service DefenderFor Containers Aws Offering Kubernetes Service Response - The kubernetes service connection configuration
- mdc_
containers_ Defenderagentless_ discovery_ k8_ s For Containers Aws Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ Defenderimage_ assessment For Containers Aws Offering Mdc Containers Image Assessment Response - The Microsoft Defender container image assessment configuration
- vm_
scanners DefenderFor Containers Aws Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- description String
- The offering description.
- cloud
Watch Property MapTo Kinesis - The cloudwatch to kinesis connection configuration
- data
Collection StringExternal Id - The externalId used by the data reader to prevent the confused deputy attack
- enable
Audit BooleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender BooleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy BooleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- kinesis
To Property MapS3 - The kinesis to s3 connection configuration
- kube
Audit NumberRetention Time - The retention time in days of kube audit logs set on the CloudWatch log group
- kubernetes
Data Property MapCollection - The kubernetes data collection connection configuration
- kubernetes
Service Property Map - The kubernetes service connection configuration
- mdc
Containers Property MapAgentless Discovery K8S - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers Property MapImage Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners Property Map - The Microsoft Defender for Container K8s VM host scanning configuration
DefenderForContainersAwsOfferingVmScanners, DefenderForContainersAwsOfferingVmScannersArgs
The Microsoft Defender for Container K8s VM host scanning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderForContainersAwsOfferingVmScannersResponse, DefenderForContainersAwsOfferingVmScannersResponseArgs
The Microsoft Defender for Container K8s VM host scanning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderForContainersDockerHubOffering, DefenderForContainersDockerHubOfferingArgs
The Defender for containers Docker Hub offering configurationsDefenderForContainersDockerHubOfferingResponse, DefenderForContainersDockerHubOfferingResponseArgs
The Defender for containers Docker Hub offering configurations- Description string
- The offering description.
- Description string
- The offering description.
- description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
DefenderForContainersGcpOffering, DefenderForContainersGcpOfferingArgs
The containers GCP offering- Data
Pipeline Pulumi.Native Cloud Connection Azure Native. Security. Inputs. Defender For Containers Gcp Offering Data Pipeline Native Cloud Connection - The native cloud connection configuration
- Enable
Audit boolLogs Auto Provisioning - Is audit logs data collection enabled
- Enable
Defender boolAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- Enable
Policy boolAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- Mdc
Containers Pulumi.Agentless Discovery K8S Azure Native. Security. Inputs. Defender For Containers Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender For Containers Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Native
Cloud Pulumi.Connection Azure Native. Security. Inputs. Defender For Containers Gcp Offering Native Cloud Connection - The native cloud connection configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Containers Gcp Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- Data
Pipeline DefenderNative Cloud Connection For Containers Gcp Offering Data Pipeline Native Cloud Connection - The native cloud connection configuration
- Enable
Audit boolLogs Auto Provisioning - Is audit logs data collection enabled
- Enable
Defender boolAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- Enable
Policy boolAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- Mdc
Containers DefenderAgentless Discovery K8S For Containers Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers DefenderImage Assessment For Containers Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Native
Cloud DefenderConnection For Containers Gcp Offering Native Cloud Connection - The native cloud connection configuration
- Vm
Scanners DefenderFor Containers Gcp Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- data_
pipeline_ objectnative_ cloud_ connection - The native cloud connection configuration
- enable_
audit_ boollogs_ auto_ provisioning - Is audit logs data collection enabled
- enable_
defender_ boolagent_ auto_ provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable_
policy_ boolagent_ auto_ provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc_
containers_ objectagentless_ discovery_ k8_ s - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender Container image assessment configuration
- native_
cloud_ objectconnection - The native cloud connection configuration
- vm_
scanners object - The Microsoft Defender for Container K8s VM host scanning configuration
- data
Pipeline DefenderNative Cloud Connection For Containers Gcp Offering Data Pipeline Native Cloud Connection - The native cloud connection configuration
- enable
Audit BooleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender BooleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy BooleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc
Containers DefenderAgentless Discovery K8S For Containers Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment For Containers Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- native
Cloud DefenderConnection For Containers Gcp Offering Native Cloud Connection - The native cloud connection configuration
- vm
Scanners DefenderFor Containers Gcp Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- data
Pipeline DefenderNative Cloud Connection For Containers Gcp Offering Data Pipeline Native Cloud Connection - The native cloud connection configuration
- enable
Audit booleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender booleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy booleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc
Containers DefenderAgentless Discovery K8S For Containers Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment For Containers Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- native
Cloud DefenderConnection For Containers Gcp Offering Native Cloud Connection - The native cloud connection configuration
- vm
Scanners DefenderFor Containers Gcp Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- data_
pipeline_ Defendernative_ cloud_ connection For Containers Gcp Offering Data Pipeline Native Cloud Connection - The native cloud connection configuration
- enable_
audit_ boollogs_ auto_ provisioning - Is audit logs data collection enabled
- enable_
defender_ boolagent_ auto_ provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable_
policy_ boolagent_ auto_ provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc_
containers_ Defenderagentless_ discovery_ k8_ s For Containers Gcp Offering Mdc Containers Agentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ Defenderimage_ assessment For Containers Gcp Offering Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- native_
cloud_ Defenderconnection For Containers Gcp Offering Native Cloud Connection - The native cloud connection configuration
- vm_
scanners DefenderFor Containers Gcp Offering Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- data
Pipeline Property MapNative Cloud Connection - The native cloud connection configuration
- enable
Audit BooleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender BooleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy BooleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc
Containers Property MapAgentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers Property MapImage Assessment - The Microsoft Defender Container image assessment configuration
- native
Cloud Property MapConnection - The native cloud connection configuration
- vm
Scanners Property Map - The Microsoft Defender for Container K8s VM host scanning configuration
DefenderForContainersGcpOfferingDataPipelineNativeCloudConnection, DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionArgs
The native cloud connection configuration- Service
Account stringEmail Address - The data collection service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The data collection GCP workload identity provider id for this offering
- Service
Account stringEmail Address - The data collection service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The data collection GCP workload identity provider id for this offering
- service_
account_ stringemail_ address - The data collection service account email address in GCP for this offering
- workload_
identity_ stringprovider_ id - The data collection GCP workload identity provider id for this offering
- service
Account StringEmail Address - The data collection service account email address in GCP for this offering
- workload
Identity StringProvider Id - The data collection GCP workload identity provider id for this offering
- service
Account stringEmail Address - The data collection service account email address in GCP for this offering
- workload
Identity stringProvider Id - The data collection GCP workload identity provider id for this offering
- service_
account_ stremail_ address - The data collection service account email address in GCP for this offering
- workload_
identity_ strprovider_ id - The data collection GCP workload identity provider id for this offering
- service
Account StringEmail Address - The data collection service account email address in GCP for this offering
- workload
Identity StringProvider Id - The data collection GCP workload identity provider id for this offering
DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionResponse, DefenderForContainersGcpOfferingDataPipelineNativeCloudConnectionResponseArgs
The native cloud connection configuration- Service
Account stringEmail Address - The data collection service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The data collection GCP workload identity provider id for this offering
- Service
Account stringEmail Address - The data collection service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The data collection GCP workload identity provider id for this offering
- service_
account_ stringemail_ address - The data collection service account email address in GCP for this offering
- workload_
identity_ stringprovider_ id - The data collection GCP workload identity provider id for this offering
- service
Account StringEmail Address - The data collection service account email address in GCP for this offering
- workload
Identity StringProvider Id - The data collection GCP workload identity provider id for this offering
- service
Account stringEmail Address - The data collection service account email address in GCP for this offering
- workload
Identity stringProvider Id - The data collection GCP workload identity provider id for this offering
- service_
account_ stremail_ address - The data collection service account email address in GCP for this offering
- workload_
identity_ strprovider_ id - The data collection GCP workload identity provider id for this offering
- service
Account StringEmail Address - The data collection service account email address in GCP for this offering
- workload
Identity StringProvider Id - The data collection GCP workload identity provider id for this offering
DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8S, DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SArgs
The Microsoft Defender Container agentless discovery configuration- Enabled bool
- Is Microsoft Defender container agentless discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SResponse, DefenderForContainersGcpOfferingMdcContainersAgentlessDiscoveryK8SResponseArgs
The Microsoft Defender Container agentless discovery configuration- Enabled bool
- Is Microsoft Defender container agentless discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender container agentless discovery enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container agentless discovery enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container agentless discovery enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderForContainersGcpOfferingMdcContainersImageAssessment, DefenderForContainersGcpOfferingMdcContainersImageAssessmentArgs
The Microsoft Defender Container image assessment configuration- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderForContainersGcpOfferingMdcContainersImageAssessmentResponse, DefenderForContainersGcpOfferingMdcContainersImageAssessmentResponseArgs
The Microsoft Defender Container image assessment configuration- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- enabled bool
- Is Microsoft Defender container image assessment enabled
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderForContainersGcpOfferingNativeCloudConnection, DefenderForContainersGcpOfferingNativeCloudConnectionArgs
The native cloud connection configuration- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- service_
account_ stringemail_ address - The service account email address in GCP for this offering
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id for this offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for this offering
- service
Account stringEmail Address - The service account email address in GCP for this offering
- workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- service_
account_ stremail_ address - The service account email address in GCP for this offering
- workload_
identity_ strprovider_ id - The GCP workload identity provider id for this offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for this offering
DefenderForContainersGcpOfferingNativeCloudConnectionResponse, DefenderForContainersGcpOfferingNativeCloudConnectionResponseArgs
The native cloud connection configuration- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- service_
account_ stringemail_ address - The service account email address in GCP for this offering
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id for this offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for this offering
- service
Account stringEmail Address - The service account email address in GCP for this offering
- workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- service_
account_ stremail_ address - The service account email address in GCP for this offering
- workload_
identity_ strprovider_ id - The GCP workload identity provider id for this offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for this offering
DefenderForContainersGcpOfferingResponse, DefenderForContainersGcpOfferingResponseArgs
The containers GCP offering- Description string
- The offering description.
- Data
Pipeline Pulumi.Native Cloud Connection Azure Native. Security. Inputs. Defender For Containers Gcp Offering Data Pipeline Native Cloud Connection Response - The native cloud connection configuration
- Enable
Audit boolLogs Auto Provisioning - Is audit logs data collection enabled
- Enable
Defender boolAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- Enable
Policy boolAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- Mdc
Containers Pulumi.Agentless Discovery K8S Azure Native. Security. Inputs. Defender For Containers Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender For Containers Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- Native
Cloud Pulumi.Connection Azure Native. Security. Inputs. Defender For Containers Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Containers Gcp Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- Description string
- The offering description.
- Data
Pipeline DefenderNative Cloud Connection For Containers Gcp Offering Data Pipeline Native Cloud Connection Response - The native cloud connection configuration
- Enable
Audit boolLogs Auto Provisioning - Is audit logs data collection enabled
- Enable
Defender boolAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- Enable
Policy boolAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- Mdc
Containers DefenderAgentless Discovery K8S For Containers Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers DefenderImage Assessment For Containers Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- Native
Cloud DefenderConnection For Containers Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- Vm
Scanners DefenderFor Containers Gcp Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- description string
- The offering description.
- data_
pipeline_ objectnative_ cloud_ connection - The native cloud connection configuration
- enable_
audit_ boollogs_ auto_ provisioning - Is audit logs data collection enabled
- enable_
defender_ boolagent_ auto_ provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable_
policy_ boolagent_ auto_ provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc_
containers_ objectagentless_ discovery_ k8_ s - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ objectimage_ assessment - The Microsoft Defender Container image assessment configuration
- native_
cloud_ objectconnection - The native cloud connection configuration
- vm_
scanners object - The Microsoft Defender for Container K8s VM host scanning configuration
- description String
- The offering description.
- data
Pipeline DefenderNative Cloud Connection For Containers Gcp Offering Data Pipeline Native Cloud Connection Response - The native cloud connection configuration
- enable
Audit BooleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender BooleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy BooleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc
Containers DefenderAgentless Discovery K8S For Containers Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment For Containers Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- native
Cloud DefenderConnection For Containers Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- vm
Scanners DefenderFor Containers Gcp Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- description string
- The offering description.
- data
Pipeline DefenderNative Cloud Connection For Containers Gcp Offering Data Pipeline Native Cloud Connection Response - The native cloud connection configuration
- enable
Audit booleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender booleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy booleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc
Containers DefenderAgentless Discovery K8S For Containers Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment For Containers Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- native
Cloud DefenderConnection For Containers Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- vm
Scanners DefenderFor Containers Gcp Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- description str
- The offering description.
- data_
pipeline_ Defendernative_ cloud_ connection For Containers Gcp Offering Data Pipeline Native Cloud Connection Response - The native cloud connection configuration
- enable_
audit_ boollogs_ auto_ provisioning - Is audit logs data collection enabled
- enable_
defender_ boolagent_ auto_ provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable_
policy_ boolagent_ auto_ provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc_
containers_ Defenderagentless_ discovery_ k8_ s For Containers Gcp Offering Mdc Containers Agentless Discovery K8SResponse - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ Defenderimage_ assessment For Containers Gcp Offering Mdc Containers Image Assessment Response - The Microsoft Defender Container image assessment configuration
- native_
cloud_ Defenderconnection For Containers Gcp Offering Native Cloud Connection Response - The native cloud connection configuration
- vm_
scanners DefenderFor Containers Gcp Offering Vm Scanners Response - The Microsoft Defender for Container K8s VM host scanning configuration
- description String
- The offering description.
- data
Pipeline Property MapNative Cloud Connection - The native cloud connection configuration
- enable
Audit BooleanLogs Auto Provisioning - Is audit logs data collection enabled
- enable
Defender BooleanAgent Auto Provisioning - Is Microsoft Defender for Cloud Kubernetes agent auto provisioning enabled
- enable
Policy BooleanAgent Auto Provisioning - Is Policy Kubernetes agent auto provisioning enabled
- mdc
Containers Property MapAgentless Discovery K8S - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers Property MapImage Assessment - The Microsoft Defender Container image assessment configuration
- native
Cloud Property MapConnection - The native cloud connection configuration
- vm
Scanners Property Map - The Microsoft Defender for Container K8s VM host scanning configuration
DefenderForContainersGcpOfferingVmScanners, DefenderForContainersGcpOfferingVmScannersArgs
The Microsoft Defender for Container K8s VM host scanning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderForContainersGcpOfferingVmScannersResponse, DefenderForContainersGcpOfferingVmScannersResponseArgs
The Microsoft Defender for Container K8s VM host scanning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderForContainersJFrogOffering, DefenderForContainersJFrogOfferingArgs
The Defender for Containers for JFrog Artifactory offeringDefenderForContainersJFrogOfferingResponse, DefenderForContainersJFrogOfferingResponseArgs
The Defender for Containers for JFrog Artifactory offering- Description string
- The offering description.
- Description string
- The offering description.
- description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
DefenderForDatabasesGcpOffering, DefenderForDatabasesGcpOfferingArgs
The Defender for Databases GCP offering configurations- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Databases Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For Pulumi.Databases Arc Auto Provisioning Azure Native. Security. Inputs. Defender For Databases Gcp Offering Defender For Databases Arc Auto Provisioning - The native cloud connection configuration
- Arc
Auto DefenderProvisioning For Databases Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For DefenderDatabases Arc Auto Provisioning For Databases Gcp Offering Defender For Databases Arc Auto Provisioning - The native cloud connection configuration
- arc_
auto_ objectprovisioning - The ARC autoprovisioning configuration
- defender_
for_ objectdatabases_ arc_ auto_ provisioning - The native cloud connection configuration
- arc
Auto DefenderProvisioning For Databases Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderDatabases Arc Auto Provisioning For Databases Gcp Offering Defender For Databases Arc Auto Provisioning - The native cloud connection configuration
- arc
Auto DefenderProvisioning For Databases Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderDatabases Arc Auto Provisioning For Databases Gcp Offering Defender For Databases Arc Auto Provisioning - The native cloud connection configuration
- arc_
auto_ Defenderprovisioning For Databases Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender_
for_ Defenderdatabases_ arc_ auto_ provisioning For Databases Gcp Offering Defender For Databases Arc Auto Provisioning - The native cloud connection configuration
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- defender
For Property MapDatabases Arc Auto Provisioning - The native cloud connection configuration
DefenderForDatabasesGcpOfferingArcAutoProvisioning, DefenderForDatabasesGcpOfferingArcAutoProvisioningArgs
The ARC autoprovisioning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- configuration object
- Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- configuration Property Map
- Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
DefenderForDatabasesGcpOfferingArcAutoProvisioningResponse, DefenderForDatabasesGcpOfferingArcAutoProvisioningResponseArgs
The ARC autoprovisioning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- configuration object
- Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- configuration Property Map
- Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioning, DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioningArgs
The native cloud connection configuration- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- service_
account_ stringemail_ address - The service account email address in GCP for this offering
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id for this offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for this offering
- service
Account stringEmail Address - The service account email address in GCP for this offering
- workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- service_
account_ stremail_ address - The service account email address in GCP for this offering
- workload_
identity_ strprovider_ id - The GCP workload identity provider id for this offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for this offering
DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioningResponse, DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioningResponseArgs
The native cloud connection configuration- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- Service
Account stringEmail Address - The service account email address in GCP for this offering
- Workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- service_
account_ stringemail_ address - The service account email address in GCP for this offering
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id for this offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for this offering
- service
Account stringEmail Address - The service account email address in GCP for this offering
- workload
Identity stringProvider Id - The GCP workload identity provider id for this offering
- service_
account_ stremail_ address - The service account email address in GCP for this offering
- workload_
identity_ strprovider_ id - The GCP workload identity provider id for this offering
- service
Account StringEmail Address - The service account email address in GCP for this offering
- workload
Identity StringProvider Id - The GCP workload identity provider id for this offering
DefenderForDatabasesGcpOfferingResponse, DefenderForDatabasesGcpOfferingResponseArgs
The Defender for Databases GCP offering configurations- Description string
- The offering description.
- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Databases Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- Defender
For Pulumi.Databases Arc Auto Provisioning Azure Native. Security. Inputs. Defender For Databases Gcp Offering Defender For Databases Arc Auto Provisioning Response - The native cloud connection configuration
- Description string
- The offering description.
- Arc
Auto DefenderProvisioning For Databases Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- Defender
For DefenderDatabases Arc Auto Provisioning For Databases Gcp Offering Defender For Databases Arc Auto Provisioning Response - The native cloud connection configuration
- description string
- The offering description.
- arc_
auto_ objectprovisioning - The ARC autoprovisioning configuration
- defender_
for_ objectdatabases_ arc_ auto_ provisioning - The native cloud connection configuration
- description String
- The offering description.
- arc
Auto DefenderProvisioning For Databases Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- defender
For DefenderDatabases Arc Auto Provisioning For Databases Gcp Offering Defender For Databases Arc Auto Provisioning Response - The native cloud connection configuration
- description string
- The offering description.
- arc
Auto DefenderProvisioning For Databases Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- defender
For DefenderDatabases Arc Auto Provisioning For Databases Gcp Offering Defender For Databases Arc Auto Provisioning Response - The native cloud connection configuration
- description str
- The offering description.
- arc_
auto_ Defenderprovisioning For Databases Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- defender_
for_ Defenderdatabases_ arc_ auto_ provisioning For Databases Gcp Offering Defender For Databases Arc Auto Provisioning Response - The native cloud connection configuration
- description String
- The offering description.
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- defender
For Property MapDatabases Arc Auto Provisioning - The native cloud connection configuration
DefenderForServersAwsOffering, DefenderForServersAwsOfferingArgs
The Defender for Servers AWS offering- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For Pulumi.Servers Azure Native. Security. Inputs. Defender For Servers Aws Offering Defender For Servers - The Defender for servers connection configuration
- Mde
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Aws Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan Pulumi.Azure Native. Security. Inputs. Defender For Servers Aws Offering Sub Plan - configuration for the servers offering subPlan
- Va
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Aws Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Servers Aws Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- Arc
Auto DefenderProvisioning For Servers Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For DefenderServers For Servers Aws Offering Defender For Servers - The Defender for servers connection configuration
- Mde
Auto DefenderProvisioning For Servers Aws Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan DefenderFor Servers Aws Offering Sub Plan - configuration for the servers offering subPlan
- Va
Auto DefenderProvisioning For Servers Aws Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners DefenderFor Servers Aws Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- arc_
auto_ objectprovisioning - The ARC autoprovisioning configuration
- defender_
for_ objectservers - The Defender for servers connection configuration
- mde_
auto_ objectprovisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan object - configuration for the servers offering subPlan
- va_
auto_ objectprovisioning - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners object - The Microsoft Defender for Server VM scanning configuration
- arc
Auto DefenderProvisioning For Servers Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Aws Offering Defender For Servers - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Aws Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Aws Offering Sub Plan - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Aws Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Aws Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- arc
Auto DefenderProvisioning For Servers Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Aws Offering Defender For Servers - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Aws Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Aws Offering Sub Plan - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Aws Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Aws Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- arc_
auto_ Defenderprovisioning For Servers Aws Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender_
for_ Defenderservers For Servers Aws Offering Defender For Servers - The Defender for servers connection configuration
- mde_
auto_ Defenderprovisioning For Servers Aws Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan DefenderFor Servers Aws Offering Sub Plan - configuration for the servers offering subPlan
- va_
auto_ Defenderprovisioning For Servers Aws Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners DefenderFor Servers Aws Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- defender
For Property MapServers - The Defender for servers connection configuration
- mde
Auto Property MapProvisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan Property Map - configuration for the servers offering subPlan
- va
Auto Property MapProvisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners Property Map - The Microsoft Defender for Server VM scanning configuration
DefenderForServersAwsOfferingArcAutoProvisioning, DefenderForServersAwsOfferingArcAutoProvisioningArgs
The ARC autoprovisioning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
DefenderForServersAwsOfferingArcAutoProvisioningResponse, DefenderForServersAwsOfferingArcAutoProvisioningResponseArgs
The ARC autoprovisioning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
DefenderForServersAwsOfferingDefenderForServers, DefenderForServersAwsOfferingDefenderForServersArgs
The Defender for servers connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
DefenderForServersAwsOfferingDefenderForServersResponse, DefenderForServersAwsOfferingDefenderForServersResponseArgs
The Defender for servers connection configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
DefenderForServersAwsOfferingMdeAutoProvisioning, DefenderForServersAwsOfferingMdeAutoProvisioningArgs
The Microsoft Defender for Endpoint autoprovisioning configuration- Configuration object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- Configuration interface{}
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
DefenderForServersAwsOfferingMdeAutoProvisioningResponse, DefenderForServersAwsOfferingMdeAutoProvisioningResponseArgs
The Microsoft Defender for Endpoint autoprovisioning configuration- Configuration object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- Configuration interface{}
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
DefenderForServersAwsOfferingResponse, DefenderForServersAwsOfferingResponseArgs
The Defender for Servers AWS offering- Description string
- The offering description.
- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- Defender
For Pulumi.Servers Azure Native. Security. Inputs. Defender For Servers Aws Offering Defender For Servers Response - The Defender for servers connection configuration
- Mde
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Aws Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan Pulumi.Azure Native. Security. Inputs. Defender For Servers Aws Offering Sub Plan Response - configuration for the servers offering subPlan
- Va
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Aws Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Servers Aws Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- Description string
- The offering description.
- Arc
Auto DefenderProvisioning For Servers Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- Defender
For DefenderServers For Servers Aws Offering Defender For Servers Response - The Defender for servers connection configuration
- Mde
Auto DefenderProvisioning For Servers Aws Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan DefenderFor Servers Aws Offering Sub Plan Response - configuration for the servers offering subPlan
- Va
Auto DefenderProvisioning For Servers Aws Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners DefenderFor Servers Aws Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- description string
- The offering description.
- arc_
auto_ objectprovisioning - The ARC autoprovisioning configuration
- defender_
for_ objectservers - The Defender for servers connection configuration
- mde_
auto_ objectprovisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan object - configuration for the servers offering subPlan
- va_
auto_ objectprovisioning - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners object - The Microsoft Defender for Server VM scanning configuration
- description String
- The offering description.
- arc
Auto DefenderProvisioning For Servers Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Aws Offering Defender For Servers Response - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Aws Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Aws Offering Sub Plan Response - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Aws Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Aws Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- description string
- The offering description.
- arc
Auto DefenderProvisioning For Servers Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Aws Offering Defender For Servers Response - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Aws Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Aws Offering Sub Plan Response - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Aws Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Aws Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- description str
- The offering description.
- arc_
auto_ Defenderprovisioning For Servers Aws Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- defender_
for_ Defenderservers For Servers Aws Offering Defender For Servers Response - The Defender for servers connection configuration
- mde_
auto_ Defenderprovisioning For Servers Aws Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan DefenderFor Servers Aws Offering Sub Plan Response - configuration for the servers offering subPlan
- va_
auto_ Defenderprovisioning For Servers Aws Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners DefenderFor Servers Aws Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- description String
- The offering description.
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- defender
For Property MapServers - The Defender for servers connection configuration
- mde
Auto Property MapProvisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan Property Map - configuration for the servers offering subPlan
- va
Auto Property MapProvisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners Property Map - The Microsoft Defender for Server VM scanning configuration
DefenderForServersAwsOfferingSubPlan, DefenderForServersAwsOfferingSubPlanArgs
configuration for the servers offering subPlan- Type
string | Pulumi.
Azure Native. Security. Sub Plan - The available sub plans
- type string | "P1" | "P2"
- The available sub plans
- type String | "P1" | "P2"
- The available sub plans
DefenderForServersAwsOfferingSubPlanResponse, DefenderForServersAwsOfferingSubPlanResponseArgs
configuration for the servers offering subPlan- Type string
- The available sub plans
- Type string
- The available sub plans
- type string
- The available sub plans
- type String
- The available sub plans
- type string
- The available sub plans
- type str
- The available sub plans
- type String
- The available sub plans
DefenderForServersAwsOfferingVaAutoProvisioning, DefenderForServersAwsOfferingVaAutoProvisioningArgs
The Vulnerability Assessment autoprovisioning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Defender For Servers Aws Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- Configuration
Defender
For Servers Aws Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration object
- configuration for Vulnerability Assessment autoprovisioning
- enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration Property Map
- configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
DefenderForServersAwsOfferingVaAutoProvisioningConfiguration, DefenderForServersAwsOfferingVaAutoProvisioningConfigurationArgs
configuration for Vulnerability Assessment autoprovisioning- Type
string | Pulumi.
Azure Native. Security. Type - The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type string | "Qualys" | "TVM"
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String | "Qualys" | "TVM"
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
DefenderForServersAwsOfferingVaAutoProvisioningConfigurationResponse, DefenderForServersAwsOfferingVaAutoProvisioningConfigurationResponseArgs
configuration for Vulnerability Assessment autoprovisioning- Type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- Type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type str
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
DefenderForServersAwsOfferingVaAutoProvisioningResponse, DefenderForServersAwsOfferingVaAutoProvisioningResponseArgs
The Vulnerability Assessment autoprovisioning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Defender For Servers Aws Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- Configuration
Defender
For Servers Aws Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration object
- configuration for Vulnerability Assessment autoprovisioning
- enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- enabled boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration Property Map
- configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
DefenderForServersAwsOfferingVmScanners, DefenderForServersAwsOfferingVmScannersArgs
The Microsoft Defender for Server VM scanning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderForServersAwsOfferingVmScannersResponse, DefenderForServersAwsOfferingVmScannersResponseArgs
The Microsoft Defender for Server VM scanning configuration- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- cloud_
role_ stringarn - The cloud role ARN in AWS for this feature
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- cloud
Role stringArn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- cloud_
role_ strarn - The cloud role ARN in AWS for this feature
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- cloud
Role StringArn - The cloud role ARN in AWS for this feature
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderForServersGcpOffering, DefenderForServersGcpOfferingArgs
The Defender for Servers GCP offering configurations- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For Pulumi.Servers Azure Native. Security. Inputs. Defender For Servers Gcp Offering Defender For Servers - The Defender for servers connection configuration
- Mde
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Gcp Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan Pulumi.Azure Native. Security. Inputs. Defender For Servers Gcp Offering Sub Plan - configuration for the servers offering subPlan
- Va
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Gcp Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Servers Gcp Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- Arc
Auto DefenderProvisioning For Servers Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For DefenderServers For Servers Gcp Offering Defender For Servers - The Defender for servers connection configuration
- Mde
Auto DefenderProvisioning For Servers Gcp Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan DefenderFor Servers Gcp Offering Sub Plan - configuration for the servers offering subPlan
- Va
Auto DefenderProvisioning For Servers Gcp Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners DefenderFor Servers Gcp Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- arc_
auto_ objectprovisioning - The ARC autoprovisioning configuration
- defender_
for_ objectservers - The Defender for servers connection configuration
- mde_
auto_ objectprovisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan object - configuration for the servers offering subPlan
- va_
auto_ objectprovisioning - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners object - The Microsoft Defender for Server VM scanning configuration
- arc
Auto DefenderProvisioning For Servers Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Gcp Offering Defender For Servers - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Gcp Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Gcp Offering Sub Plan - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Gcp Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Gcp Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- arc
Auto DefenderProvisioning For Servers Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Gcp Offering Defender For Servers - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Gcp Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Gcp Offering Sub Plan - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Gcp Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Gcp Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- arc_
auto_ Defenderprovisioning For Servers Gcp Offering Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender_
for_ Defenderservers For Servers Gcp Offering Defender For Servers - The Defender for servers connection configuration
- mde_
auto_ Defenderprovisioning For Servers Gcp Offering Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan DefenderFor Servers Gcp Offering Sub Plan - configuration for the servers offering subPlan
- va_
auto_ Defenderprovisioning For Servers Gcp Offering Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners DefenderFor Servers Gcp Offering Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- defender
For Property MapServers - The Defender for servers connection configuration
- mde
Auto Property MapProvisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan Property Map - configuration for the servers offering subPlan
- va
Auto Property MapProvisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners Property Map - The Microsoft Defender for Server VM scanning configuration
DefenderForServersGcpOfferingArcAutoProvisioning, DefenderForServersGcpOfferingArcAutoProvisioningArgs
The ARC autoprovisioning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- configuration object
- Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- configuration Property Map
- Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
DefenderForServersGcpOfferingArcAutoProvisioningResponse, DefenderForServersGcpOfferingArcAutoProvisioningResponseArgs
The ARC autoprovisioning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- configuration object
- Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Configuration Response - Configuration for servers Arc auto provisioning for a given environment
- enabled bool
- Is arc auto provisioning enabled
- configuration Property Map
- Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
DefenderForServersGcpOfferingDefenderForServers, DefenderForServersGcpOfferingDefenderForServersArgs
The Defender for servers connection configuration- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderForServersGcpOfferingDefenderForServersResponse, DefenderForServersGcpOfferingDefenderForServersResponseArgs
The Defender for servers connection configuration- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- Service
Account stringEmail Address - The service account email address in GCP for this feature
- Workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- service_
account_ stringemail_ address - The service account email address in GCP for this feature
- workload_
identity_ stringprovider_ id - The workload identity provider id in GCP for this feature
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
- service
Account stringEmail Address - The service account email address in GCP for this feature
- workload
Identity stringProvider Id - The workload identity provider id in GCP for this feature
- service_
account_ stremail_ address - The service account email address in GCP for this feature
- workload_
identity_ strprovider_ id - The workload identity provider id in GCP for this feature
- service
Account StringEmail Address - The service account email address in GCP for this feature
- workload
Identity StringProvider Id - The workload identity provider id in GCP for this feature
DefenderForServersGcpOfferingMdeAutoProvisioning, DefenderForServersGcpOfferingMdeAutoProvisioningArgs
The Microsoft Defender for Endpoint autoprovisioning configuration- Configuration object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- Configuration interface{}
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
DefenderForServersGcpOfferingMdeAutoProvisioningResponse, DefenderForServersGcpOfferingMdeAutoProvisioningResponseArgs
The Microsoft Defender for Endpoint autoprovisioning configuration- Configuration object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- Configuration interface{}
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
DefenderForServersGcpOfferingResponse, DefenderForServersGcpOfferingResponseArgs
The Defender for Servers GCP offering configurations- Description string
- The offering description.
- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- Defender
For Pulumi.Servers Azure Native. Security. Inputs. Defender For Servers Gcp Offering Defender For Servers Response - The Defender for servers connection configuration
- Mde
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Gcp Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan Pulumi.Azure Native. Security. Inputs. Defender For Servers Gcp Offering Sub Plan Response - configuration for the servers offering subPlan
- Va
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Gcp Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Servers Gcp Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- Description string
- The offering description.
- Arc
Auto DefenderProvisioning For Servers Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- Defender
For DefenderServers For Servers Gcp Offering Defender For Servers Response - The Defender for servers connection configuration
- Mde
Auto DefenderProvisioning For Servers Gcp Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan DefenderFor Servers Gcp Offering Sub Plan Response - configuration for the servers offering subPlan
- Va
Auto DefenderProvisioning For Servers Gcp Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners DefenderFor Servers Gcp Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- description string
- The offering description.
- arc_
auto_ objectprovisioning - The ARC autoprovisioning configuration
- defender_
for_ objectservers - The Defender for servers connection configuration
- mde_
auto_ objectprovisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan object - configuration for the servers offering subPlan
- va_
auto_ objectprovisioning - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners object - The Microsoft Defender for Server VM scanning configuration
- description String
- The offering description.
- arc
Auto DefenderProvisioning For Servers Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Gcp Offering Defender For Servers Response - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Gcp Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Gcp Offering Sub Plan Response - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Gcp Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Gcp Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- description string
- The offering description.
- arc
Auto DefenderProvisioning For Servers Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Gcp Offering Defender For Servers Response - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Gcp Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Gcp Offering Sub Plan Response - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Gcp Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Gcp Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- description str
- The offering description.
- arc_
auto_ Defenderprovisioning For Servers Gcp Offering Arc Auto Provisioning Response - The ARC autoprovisioning configuration
- defender_
for_ Defenderservers For Servers Gcp Offering Defender For Servers Response - The Defender for servers connection configuration
- mde_
auto_ Defenderprovisioning For Servers Gcp Offering Mde Auto Provisioning Response - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan DefenderFor Servers Gcp Offering Sub Plan Response - configuration for the servers offering subPlan
- va_
auto_ Defenderprovisioning For Servers Gcp Offering Va Auto Provisioning Response - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners DefenderFor Servers Gcp Offering Vm Scanners Response - The Microsoft Defender for Server VM scanning configuration
- description String
- The offering description.
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- defender
For Property MapServers - The Defender for servers connection configuration
- mde
Auto Property MapProvisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan Property Map - configuration for the servers offering subPlan
- va
Auto Property MapProvisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners Property Map - The Microsoft Defender for Server VM scanning configuration
DefenderForServersGcpOfferingSubPlan, DefenderForServersGcpOfferingSubPlanArgs
configuration for the servers offering subPlan- Type
string | Pulumi.
Azure Native. Security. Sub Plan - The available sub plans
- type string | "P1" | "P2"
- The available sub plans
- type String | "P1" | "P2"
- The available sub plans
DefenderForServersGcpOfferingSubPlanResponse, DefenderForServersGcpOfferingSubPlanResponseArgs
configuration for the servers offering subPlan- Type string
- The available sub plans
- Type string
- The available sub plans
- type string
- The available sub plans
- type String
- The available sub plans
- type string
- The available sub plans
- type str
- The available sub plans
- type String
- The available sub plans
DefenderForServersGcpOfferingVaAutoProvisioning, DefenderForServersGcpOfferingVaAutoProvisioningArgs
The Vulnerability Assessment autoprovisioning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Defender For Servers Gcp Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- Configuration
Defender
For Servers Gcp Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration object
- configuration for Vulnerability Assessment autoprovisioning
- enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Va Auto Provisioning Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration Property Map
- configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
DefenderForServersGcpOfferingVaAutoProvisioningConfiguration, DefenderForServersGcpOfferingVaAutoProvisioningConfigurationArgs
configuration for Vulnerability Assessment autoprovisioning- Type
string | Pulumi.
Azure Native. Security. Type - The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type string | "Qualys" | "TVM"
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String | "Qualys" | "TVM"
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
DefenderForServersGcpOfferingVaAutoProvisioningConfigurationResponse, DefenderForServersGcpOfferingVaAutoProvisioningConfigurationResponseArgs
configuration for Vulnerability Assessment autoprovisioning- Type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- Type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type str
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
DefenderForServersGcpOfferingVaAutoProvisioningResponse, DefenderForServersGcpOfferingVaAutoProvisioningResponseArgs
The Vulnerability Assessment autoprovisioning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Defender For Servers Gcp Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- Configuration
Defender
For Servers Gcp Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration object
- configuration for Vulnerability Assessment autoprovisioning
- enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- enabled boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Va Auto Provisioning Configuration Response - configuration for Vulnerability Assessment autoprovisioning
- enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration Property Map
- configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
DefenderForServersGcpOfferingVmScanners, DefenderForServersGcpOfferingVmScannersArgs
The Microsoft Defender for Server VM scanning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderForServersGcpOfferingVmScannersResponse, DefenderForServersGcpOfferingVmScannersResponseArgs
The Microsoft Defender for Server VM scanning configuration- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- configuration object
- Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Configuration Response - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DockerHubEnvironmentData, DockerHubEnvironmentDataArgs
The Docker Hub connector environment data- Authentication
Pulumi.
Azure Native. Security. Inputs. Access Token Authentication - The Docker Hub organization authentication details
- Scan
Interval double - Scan interval in hours (value should be between 1-hour to 24-hours)
- Authentication
Access
Token Authentication - The Docker Hub organization authentication details
- Scan
Interval float64 - Scan interval in hours (value should be between 1-hour to 24-hours)
- authentication object
- The Docker Hub organization authentication details
- scan_
interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- authentication
Access
Token Authentication - The Docker Hub organization authentication details
- scan
Interval Double - Scan interval in hours (value should be between 1-hour to 24-hours)
- authentication
Access
Token Authentication - The Docker Hub organization authentication details
- scan
Interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- authentication
Access
Token Authentication - 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
- scan
Interval Number - Scan interval in hours (value should be between 1-hour to 24-hours)
DockerHubEnvironmentDataResponse, DockerHubEnvironmentDataResponseArgs
The Docker Hub connector environment data- Authentication
Pulumi.
Azure Native. Security. Inputs. Access Token Authentication Response - The Docker Hub organization authentication details
- Scan
Interval double - Scan interval in hours (value should be between 1-hour to 24-hours)
- Authentication
Access
Token Authentication Response - The Docker Hub organization authentication details
- Scan
Interval float64 - Scan interval in hours (value should be between 1-hour to 24-hours)
- authentication object
- The Docker Hub organization authentication details
- scan_
interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- authentication
Access
Token Authentication Response - The Docker Hub organization authentication details
- scan
Interval Double - Scan interval in hours (value should be between 1-hour to 24-hours)
- authentication
Access
Token Authentication Response - The Docker Hub organization authentication details
- scan
Interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- authentication
Access
Token Authentication Response - 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
- scan
Interval Number - Scan interval in hours (value should be between 1-hour to 24-hours)
GcpOrganizationalDataMember, GcpOrganizationalDataMemberArgs
The gcpOrganization data for the member account- Management
Project stringNumber - The GCP management project number from organizational onboarding
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- Management
Project stringNumber - The GCP management project number from organizational onboarding
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management_
project_ stringnumber - The GCP management project number from organizational onboarding
- parent_
hierarchy_ stringid - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management
Project StringNumber - The GCP management project number from organizational onboarding
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management
Project stringNumber - The GCP management project number from organizational onboarding
- parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management_
project_ strnumber - The GCP management project number from organizational onboarding
- parent_
hierarchy_ strid - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management
Project StringNumber - The GCP management project number from organizational onboarding
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
GcpOrganizationalDataMemberResponse, GcpOrganizationalDataMemberResponseArgs
The gcpOrganization data for the member account- Management
Project stringNumber - The GCP management project number from organizational onboarding
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- Management
Project stringNumber - The GCP management project number from organizational onboarding
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management_
project_ stringnumber - The GCP management project number from organizational onboarding
- parent_
hierarchy_ stringid - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management
Project StringNumber - The GCP management project number from organizational onboarding
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management
Project stringNumber - The GCP management project number from organizational onboarding
- parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management_
project_ strnumber - The GCP management project number from organizational onboarding
- parent_
hierarchy_ strid - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
- management
Project StringNumber - The GCP management project number from organizational onboarding
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the project's parent
GcpOrganizationalDataOrganization, GcpOrganizationalDataOrganizationArgs
The gcpOrganization data for the parent account- Excluded
Project List<string>Numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Service
Account stringEmail Address - The service account email address which represents the organization level permissions container.
- Workload
Identity stringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- Excluded
Project []stringNumbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Service
Account stringEmail Address - The service account email address which represents the organization level permissions container.
- Workload
Identity stringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- excluded_
project_ list(string)numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service_
account_ stringemail_ address - The service account email address which represents the organization level permissions container.
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- excluded
Project List<String>Numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service
Account StringEmail Address - The service account email address which represents the organization level permissions container.
- workload
Identity StringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- excluded
Project string[]Numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service
Account stringEmail Address - The service account email address which represents the organization level permissions container.
- workload
Identity stringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- excluded_
project_ Sequence[str]numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service_
account_ stremail_ address - The service account email address which represents the organization level permissions container.
- workload_
identity_ strprovider_ id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- excluded
Project List<String>Numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service
Account StringEmail Address - The service account email address which represents the organization level permissions container.
- workload
Identity StringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
GcpOrganizationalDataOrganizationResponse, GcpOrganizationalDataOrganizationResponseArgs
The gcpOrganization data for the parent account- Organization
Name string - GCP organization name
- Excluded
Project List<string>Numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Service
Account stringEmail Address - The service account email address which represents the organization level permissions container.
- Workload
Identity stringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- Organization
Name string - GCP organization name
- Excluded
Project []stringNumbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Service
Account stringEmail Address - The service account email address which represents the organization level permissions container.
- Workload
Identity stringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- organization_
name string - GCP organization name
- excluded_
project_ list(string)numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service_
account_ stringemail_ address - The service account email address which represents the organization level permissions container.
- workload_
identity_ stringprovider_ id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- organization
Name String - GCP organization name
- excluded
Project List<String>Numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service
Account StringEmail Address - The service account email address which represents the organization level permissions container.
- workload
Identity StringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- organization
Name string - GCP organization name
- excluded
Project string[]Numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service
Account stringEmail Address - The service account email address which represents the organization level permissions container.
- workload
Identity stringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- organization_
name str - GCP organization name
- excluded_
project_ Sequence[str]numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service_
account_ stremail_ address - The service account email address which represents the organization level permissions container.
- workload_
identity_ strprovider_ id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
- organization
Name String - GCP organization name
- excluded
Project List<String>Numbers - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- service
Account StringEmail Address - The service account email address which represents the organization level permissions container.
- workload
Identity StringProvider Id - The GCP workload identity provider id which represents the permissions required to auto provision security connectors
GcpProjectDetails, GcpProjectDetailsArgs
The details about the project represented by the security connector- Project
Id string - The GCP Project id
- Project
Number string - The unique GCP Project number
- Project
Id string - The GCP Project id
- Project
Number string - The unique GCP Project number
- project_
id string - The GCP Project id
- project_
number string - The unique GCP Project number
- project
Id String - The GCP Project id
- project
Number String - The unique GCP Project number
- project
Id string - The GCP Project id
- project
Number string - The unique GCP Project number
- project_
id str - The GCP Project id
- project_
number str - The unique GCP Project number
- project
Id String - The GCP Project id
- project
Number String - The unique GCP Project number
GcpProjectDetailsResponse, GcpProjectDetailsResponseArgs
The details about the project represented by the security connector- Project
Name string - GCP project name
- Workload
Identity stringPool Id - The GCP workload identity federation pool id
- Project
Id string - The GCP Project id
- Project
Number string - The unique GCP Project number
- Project
Name string - GCP project name
- Workload
Identity stringPool Id - The GCP workload identity federation pool id
- Project
Id string - The GCP Project id
- Project
Number string - The unique GCP Project number
- project_
name string - GCP project name
- workload_
identity_ stringpool_ id - The GCP workload identity federation pool id
- project_
id string - The GCP Project id
- project_
number string - The unique GCP Project number
- project
Name String - GCP project name
- workload
Identity StringPool Id - The GCP workload identity federation pool id
- project
Id String - The GCP Project id
- project
Number String - The unique GCP Project number
- project
Name string - GCP project name
- workload
Identity stringPool Id - The GCP workload identity federation pool id
- project
Id string - The GCP Project id
- project
Number string - The unique GCP Project number
- project_
name str - GCP project name
- workload_
identity_ strpool_ id - The GCP workload identity federation pool id
- project_
id str - The GCP Project id
- project_
number str - The unique GCP Project number
- project
Name String - GCP project name
- workload
Identity StringPool Id - The GCP workload identity federation pool id
- project
Id String - The GCP Project id
- project
Number String - The unique GCP Project number
GcpProjectEnvironmentData, GcpProjectEnvironmentDataArgs
The GCP project connector environment data- Organizational
Data Pulumi.Azure | Pulumi.Native. Security. Inputs. Gcp Organizational Data Member Azure Native. Security. Inputs. Gcp Organizational Data Organization - The Gcp project's organizational data
- Project
Details Pulumi.Azure Native. Security. Inputs. Gcp Project Details - The Gcp project's details
- Scan
Interval double - Scan interval in hours (value should be between 1-hour to 24-hours)
- Organizational
Data GcpOrganizational | GcpData Member Organizational Data Organization - The Gcp project's organizational data
- Project
Details GcpProject Details - The Gcp project's details
- Scan
Interval float64 - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational_
data object | object - The Gcp project's organizational data
- project_
details object - The Gcp project's details
- scan_
interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational
Data GcpOrganizational | GcpData Member Organizational Data Organization - The Gcp project's organizational data
- project
Details GcpProject Details - The Gcp project's details
- scan
Interval Double - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational
Data GcpOrganizational | GcpData Member Organizational Data Organization - The Gcp project's organizational data
- project
Details GcpProject Details - The Gcp project's details
- scan
Interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational_
data GcpOrganizational | GcpData Member Organizational Data Organization - The Gcp project's organizational data
- project_
details GcpProject Details - The Gcp project's details
- scan_
interval float - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational
Data Property Map | Property Map - The Gcp project's organizational data
- project
Details Property Map - The Gcp project's details
- scan
Interval Number - Scan interval in hours (value should be between 1-hour to 24-hours)
GcpProjectEnvironmentDataResponse, GcpProjectEnvironmentDataResponseArgs
The GCP project connector environment data- Organizational
Data Pulumi.Azure | Pulumi.Native. Security. Inputs. Gcp Organizational Data Member Response Azure Native. Security. Inputs. Gcp Organizational Data Organization Response - The Gcp project's organizational data
- Project
Details Pulumi.Azure Native. Security. Inputs. Gcp Project Details Response - The Gcp project's details
- Scan
Interval double - Scan interval in hours (value should be between 1-hour to 24-hours)
- Organizational
Data GcpOrganizational | GcpData Member Response Organizational Data Organization Response - The Gcp project's organizational data
- Project
Details GcpProject Details Response - The Gcp project's details
- Scan
Interval float64 - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational_
data object | object - The Gcp project's organizational data
- project_
details object - The Gcp project's details
- scan_
interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational
Data GcpOrganizational | GcpData Member Response Organizational Data Organization Response - The Gcp project's organizational data
- project
Details GcpProject Details Response - The Gcp project's details
- scan
Interval Double - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational
Data GcpOrganizational | GcpData Member Response Organizational Data Organization Response - The Gcp project's organizational data
- project
Details GcpProject Details Response - The Gcp project's details
- scan
Interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational_
data GcpOrganizational | GcpData Member Response Organizational Data Organization Response - The Gcp project's organizational data
- project_
details GcpProject Details Response - The Gcp project's details
- scan_
interval float - Scan interval in hours (value should be between 1-hour to 24-hours)
- organizational
Data Property Map | Property Map - The Gcp project's organizational data
- project
Details Property Map - The Gcp project's details
- scan
Interval Number - Scan interval in hours (value should be between 1-hour to 24-hours)
GithubScopeEnvironmentData, GithubScopeEnvironmentDataArgs
The github scope connector's environment dataGithubScopeEnvironmentDataResponse, GithubScopeEnvironmentDataResponseArgs
The github scope connector's environment dataGitlabScopeEnvironmentData, GitlabScopeEnvironmentDataArgs
The GitLab scope connector's environment dataGitlabScopeEnvironmentDataResponse, GitlabScopeEnvironmentDataResponseArgs
The GitLab scope connector's environment dataJFrogEnvironmentData, JFrogEnvironmentDataArgs
The JFrog Artifactory connector environment data- Scan
Interval int - 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)
- scan_
interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- scan
Interval Integer - Scan interval in hours (value should be between 1-hour to 24-hours)
- scan
Interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- scan_
interval int - Scan interval in hours (value should be between 1-hour to 24-hours)
- scan
Interval Number - Scan interval in hours (value should be between 1-hour to 24-hours)
JFrogEnvironmentDataResponse, JFrogEnvironmentDataResponseArgs
The JFrog Artifactory connector environment data- Scan
Interval int - 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)
- scan_
interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- scan
Interval Integer - Scan interval in hours (value should be between 1-hour to 24-hours)
- scan
Interval number - Scan interval in hours (value should be between 1-hour to 24-hours)
- scan_
interval int - Scan interval in hours (value should be between 1-hour to 24-hours)
- scan
Interval Number - Scan interval in hours (value should be between 1-hour to 24-hours)
ScanningMode, ScanningModeArgs
- Default
DefaultDefault
- Scanning
Mode Default DefaultDefault
- "Default"
DefaultDefault
- Default
DefaultDefault
- Default
DefaultDefault
- DEFAULT
DefaultDefault
- "Default"
DefaultDefault
SubPlan, SubPlanArgs
- P1
P1P1- P2
P2P2
- Sub
Plan P1 P1P1- Sub
Plan P2 P2P2
- "P1"
P1P1- "P2"
P2P2
- P1
P1P1- P2
P2P2
- P1
P1P1- P2
P2P2
- P1
P1P1- P2
P2P2
- "P1"
P1P1- "P2"
P2P2
SystemDataResponse, SystemDataResponseArgs
Metadata pertaining to creation and last modification of the resource.- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at string - The timestamp of resource creation (UTC).
- created_
by string - The identity that created the resource.
- created_
by_ stringtype - The type of identity that created the resource.
- last_
modified_ stringat - The timestamp of resource last modification (UTC)
- last_
modified_ stringby - The identity that last modified the resource.
- last_
modified_ stringby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - The type of identity that last modified the resource.
- created_
at str - The timestamp of resource creation (UTC).
- created_
by str - The identity that created the resource.
- created_
by_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
Type, TypeArgs
- Qualys
QualysQualys- TVM
TVMTVM
- Type
Qualys QualysQualys- Type
TVM TVMTVM
- "Qualys"
QualysQualys- "TVM"
TVMTVM
- Qualys
QualysQualys- TVM
TVMTVM
- Qualys
QualysQualys- TVM
TVMTVM
- QUALYS
QualysQualys- TVM
TVMTVM
- "Qualys"
QualysQualys- "TVM"
TVMTVM
VmScannersBaseConfiguration, VmScannersBaseConfigurationArgs
Configuration for VM scanning- Dictionary<string, string>
- Tags that indicates that a resource should not be scanned
- Scanning
Mode string | Pulumi.Azure Native. Security. Scanning Mode - The scanning mode for the VM scan.
- map[string]string
- Tags that indicates that a resource should not be scanned
- Scanning
Mode string | ScanningMode - The scanning mode for the VM scan.
- map(string)
- Tags that indicates that a resource should not be scanned
- scanning_
mode string | "Default" - The scanning mode for the VM scan.
- Map<String,String>
- Tags that indicates that a resource should not be scanned
- scanning
Mode String | ScanningMode - The scanning mode for the VM scan.
- {[key: string]: string}
- Tags that indicates that a resource should not be scanned
- scanning
Mode string | ScanningMode - The scanning mode for the VM scan.
- Mapping[str, str]
- Tags that indicates that a resource should not be scanned
- scanning_
mode str | ScanningMode - The scanning mode for the VM scan.
- Map<String>
- Tags that indicates that a resource should not be scanned
- scanning
Mode String | "Default" - The scanning mode for the VM scan.
VmScannersBaseConfigurationResponse, VmScannersBaseConfigurationResponseArgs
Configuration for VM scanning- Dictionary<string, string>
- Tags that indicates that a resource should not be scanned
- Scanning
Mode string - The scanning mode for the VM scan.
- map[string]string
- Tags that indicates that a resource should not be scanned
- Scanning
Mode string - The scanning mode for the VM scan.
- map(string)
- Tags that indicates that a resource should not be scanned
- scanning_
mode string - The scanning mode for the VM scan.
- Map<String,String>
- Tags that indicates that a resource should not be scanned
- scanning
Mode String - The scanning mode for the VM scan.
- {[key: string]: string}
- Tags that indicates that a resource should not be scanned
- scanning
Mode string - The scanning mode for the VM scan.
- Mapping[str, str]
- Tags that indicates that a resource should not be scanned
- scanning_
mode str - The scanning mode for the VM scan.
- Map<String>
- Tags that indicates that a resource should not be scanned
- scanning
Mode 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
published on Thursday, Aug 13, 2026 by Pulumi