azure-native.security.SecurityConnector
Explore with Pulumi AI
The security connector resource.
Uses Azure REST API version 2024-08-01-preview. In version 2.x of the Azure Native provider, it used API version 2023-03-01-preview.
Other available API versions: 2021-07-01-preview, 2021-12-01-preview, 2022-05-01-preview, 2022-08-01-preview, 2023-03-01-preview, 2023-10-01-preview, 2024-03-01-preview, 2024-07-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native security [ApiVersion]
. See the version guide for details.
Example Usage
Create or update a security connector
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var securityConnector = new AzureNative.Security.SecurityConnector("securityConnector", new()
{
EnvironmentData = new AzureNative.Security.Inputs.AwsEnvironmentDataArgs
{
EnvironmentType = "AwsAccount",
ScanInterval = 4,
},
EnvironmentName = AzureNative.Security.CloudName.AWS,
HierarchyIdentifier = "exampleHierarchyId",
Location = "Central US",
Offerings = new[]
{
new AzureNative.Security.Inputs.CspmMonitorAwsOfferingArgs
{
NativeCloudConnection = new AzureNative.Security.Inputs.CspmMonitorAwsOfferingNativeCloudConnectionArgs
{
CloudRoleArn = "arn:aws:iam::00000000:role/ASCMonitor",
},
OfferingType = "CspmMonitorAws",
},
},
ResourceGroupName = "exampleResourceGroup",
SecurityConnectorName = "exampleSecurityConnectorName",
Tags = null,
});
});
package main
import (
security "github.com/pulumi/pulumi-azure-native-sdk/security/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := security.NewSecurityConnector(ctx, "securityConnector", &security.SecurityConnectorArgs{
EnvironmentData: &security.AwsEnvironmentDataArgs{
EnvironmentType: pulumi.String("AwsAccount"),
ScanInterval: pulumi.Float64(4),
},
EnvironmentName: pulumi.String(security.CloudNameAWS),
HierarchyIdentifier: pulumi.String("exampleHierarchyId"),
Location: pulumi.String("Central US"),
Offerings: pulumi.Array{
security.CspmMonitorAwsOffering{
NativeCloudConnection: security.CspmMonitorAwsOfferingNativeCloudConnection{
CloudRoleArn: "arn:aws:iam::00000000:role/ASCMonitor",
},
OfferingType: "CspmMonitorAws",
},
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
SecurityConnectorName: pulumi.String("exampleSecurityConnectorName"),
Tags: pulumi.StringMap{},
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.security.SecurityConnector;
import com.pulumi.azurenative.security.SecurityConnectorArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var securityConnector = new SecurityConnector("securityConnector", SecurityConnectorArgs.builder()
.environmentData(AwsEnvironmentDataArgs.builder()
.environmentType("AwsAccount")
.scanInterval(4.0)
.build())
.environmentName("AWS")
.hierarchyIdentifier("exampleHierarchyId")
.location("Central US")
.offerings(CspmMonitorAwsOfferingArgs.builder()
.nativeCloudConnection(CspmMonitorAwsOfferingNativeCloudConnectionArgs.builder()
.cloudRoleArn("arn:aws:iam::00000000:role/ASCMonitor")
.build())
.offeringType("CspmMonitorAws")
.build())
.resourceGroupName("exampleResourceGroup")
.securityConnectorName("exampleSecurityConnectorName")
.tags(Map.ofEntries(
))
.build());
}
}
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const securityConnector = new azure_native.security.SecurityConnector("securityConnector", {
environmentData: {
environmentType: "AwsAccount",
scanInterval: 4,
},
environmentName: azure_native.security.CloudName.AWS,
hierarchyIdentifier: "exampleHierarchyId",
location: "Central US",
offerings: [{
nativeCloudConnection: {
cloudRoleArn: "arn:aws:iam::00000000:role/ASCMonitor",
},
offeringType: "CspmMonitorAws",
}],
resourceGroupName: "exampleResourceGroup",
securityConnectorName: "exampleSecurityConnectorName",
tags: {},
});
import pulumi
import pulumi_azure_native as azure_native
security_connector = azure_native.security.SecurityConnector("securityConnector",
environment_data={
"environment_type": "AwsAccount",
"scan_interval": 4,
},
environment_name=azure_native.security.CloudName.AWS,
hierarchy_identifier="exampleHierarchyId",
location="Central US",
offerings=[{
"native_cloud_connection": {
"cloud_role_arn": "arn:aws:iam::00000000:role/ASCMonitor",
},
"offering_type": "CspmMonitorAws",
}],
resource_group_name="exampleResourceGroup",
security_connector_name="exampleSecurityConnectorName",
tags={})
resources:
securityConnector:
type: azure-native:security:SecurityConnector
properties:
environmentData:
environmentType: AwsAccount
scanInterval: 4
environmentName: AWS
hierarchyIdentifier: exampleHierarchyId
location: Central US
offerings:
- nativeCloudConnection:
cloudRoleArn: arn:aws:iam::00000000:role/ASCMonitor
offeringType: CspmMonitorAws
resourceGroupName: exampleResourceGroup
securityConnectorName: exampleSecurityConnectorName
tags: {}
Create SecurityConnector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SecurityConnector(name: string, args: SecurityConnectorArgs, opts?: CustomResourceOptions);
@overload
def SecurityConnector(resource_name: str,
args: SecurityConnectorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SecurityConnector(resource_name: str,
opts: Optional[ResourceOptions] = None,
resource_group_name: Optional[str] = None,
environment_data: Optional[Union[AwsEnvironmentDataArgs, AzureDevOpsScopeEnvironmentDataArgs, DockerHubEnvironmentDataArgs, GcpProjectEnvironmentDataArgs, GithubScopeEnvironmentDataArgs, GitlabScopeEnvironmentDataArgs, JFrogEnvironmentDataArgs]] = None,
environment_name: Optional[Union[str, CloudName]] = None,
hierarchy_identifier: Optional[str] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
offerings: Optional[Sequence[Union[CspmMonitorAwsOfferingArgs, CspmMonitorAzureDevOpsOfferingArgs, CspmMonitorDockerHubOfferingArgs, CspmMonitorGcpOfferingArgs, CspmMonitorGitLabOfferingArgs, CspmMonitorGithubOfferingArgs, CspmMonitorJFrogOfferingArgs, DefenderCspmAwsOfferingArgs, DefenderCspmDockerHubOfferingArgs, DefenderCspmGcpOfferingArgs, DefenderCspmJFrogOfferingArgs, DefenderFoDatabasesAwsOfferingArgs, DefenderForContainersAwsOfferingArgs, DefenderForContainersDockerHubOfferingArgs, DefenderForContainersGcpOfferingArgs, DefenderForContainersJFrogOfferingArgs, DefenderForDatabasesGcpOfferingArgs, DefenderForServersAwsOfferingArgs, DefenderForServersGcpOfferingArgs]]] = None,
security_connector_name: Optional[str] = None,
tags: Optional[Mapping[str, str]] = None)
func NewSecurityConnector(ctx *Context, name string, args SecurityConnectorArgs, opts ...ResourceOption) (*SecurityConnector, error)
public SecurityConnector(string name, SecurityConnectorArgs args, CustomResourceOptions? opts = null)
public SecurityConnector(String name, SecurityConnectorArgs args)
public SecurityConnector(String name, SecurityConnectorArgs args, CustomResourceOptions options)
type: azure-native:security:SecurityConnector
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SecurityConnectorArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var securityConnectorResource = new AzureNative.Security.SecurityConnector("securityConnectorResource", new()
{
ResourceGroupName = "string",
EnvironmentData = new AzureNative.Security.Inputs.AwsEnvironmentDataArgs
{
EnvironmentType = "AwsAccount",
OrganizationalData = new AzureNative.Security.Inputs.AwsOrganizationalDataMasterArgs
{
OrganizationMembershipType = "Organization",
ExcludedAccountIds = new[]
{
"string",
},
StacksetName = "string",
},
Regions = new[]
{
"string",
},
ScanInterval = 0,
},
EnvironmentName = "string",
HierarchyIdentifier = "string",
Kind = "string",
Location = "string",
Offerings = new[]
{
new AzureNative.Security.Inputs.CspmMonitorAwsOfferingArgs
{
OfferingType = "CspmMonitorAws",
NativeCloudConnection = new AzureNative.Security.Inputs.CspmMonitorAwsOfferingNativeCloudConnectionArgs
{
CloudRoleArn = "string",
},
},
},
SecurityConnectorName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := security.NewSecurityConnector(ctx, "securityConnectorResource", &security.SecurityConnectorArgs{
ResourceGroupName: pulumi.String("string"),
EnvironmentData: &security.AwsEnvironmentDataArgs{
EnvironmentType: pulumi.String("AwsAccount"),
OrganizationalData: security.AwsOrganizationalDataMaster{
OrganizationMembershipType: "Organization",
ExcludedAccountIds: []string{
"string",
},
StacksetName: "string",
},
Regions: pulumi.StringArray{
pulumi.String("string"),
},
ScanInterval: pulumi.Float64(0),
},
EnvironmentName: pulumi.String("string"),
HierarchyIdentifier: pulumi.String("string"),
Kind: pulumi.String("string"),
Location: pulumi.String("string"),
Offerings: pulumi.Array{
security.CspmMonitorAwsOffering{
OfferingType: "CspmMonitorAws",
NativeCloudConnection: security.CspmMonitorAwsOfferingNativeCloudConnection{
CloudRoleArn: "string",
},
},
},
SecurityConnectorName: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var securityConnectorResource = new SecurityConnector("securityConnectorResource", SecurityConnectorArgs.builder()
.resourceGroupName("string")
.environmentData(AwsEnvironmentDataArgs.builder()
.environmentType("AwsAccount")
.organizationalData(AwsOrganizationalDataMasterArgs.builder()
.organizationMembershipType("Organization")
.excludedAccountIds("string")
.stacksetName("string")
.build())
.regions("string")
.scanInterval(0)
.build())
.environmentName("string")
.hierarchyIdentifier("string")
.kind("string")
.location("string")
.offerings(CspmMonitorAwsOfferingArgs.builder()
.offeringType("CspmMonitorAws")
.nativeCloudConnection(CspmMonitorAwsOfferingNativeCloudConnectionArgs.builder()
.cloudRoleArn("string")
.build())
.build())
.securityConnectorName("string")
.tags(Map.of("string", "string"))
.build());
security_connector_resource = azure_native.security.SecurityConnector("securityConnectorResource",
resource_group_name="string",
environment_data={
"environment_type": "AwsAccount",
"organizational_data": {
"organization_membership_type": "Organization",
"excluded_account_ids": ["string"],
"stackset_name": "string",
},
"regions": ["string"],
"scan_interval": 0,
},
environment_name="string",
hierarchy_identifier="string",
kind="string",
location="string",
offerings=[{
"offering_type": "CspmMonitorAws",
"native_cloud_connection": {
"cloud_role_arn": "string",
},
}],
security_connector_name="string",
tags={
"string": "string",
})
const securityConnectorResource = new azure_native.security.SecurityConnector("securityConnectorResource", {
resourceGroupName: "string",
environmentData: {
environmentType: "AwsAccount",
organizationalData: {
organizationMembershipType: "Organization",
excludedAccountIds: ["string"],
stacksetName: "string",
},
regions: ["string"],
scanInterval: 0,
},
environmentName: "string",
hierarchyIdentifier: "string",
kind: "string",
location: "string",
offerings: [{
offeringType: "CspmMonitorAws",
nativeCloudConnection: {
cloudRoleArn: "string",
},
}],
securityConnectorName: "string",
tags: {
string: "string",
},
});
type: azure-native:security:SecurityConnector
properties:
environmentData:
environmentType: AwsAccount
organizationalData:
excludedAccountIds:
- string
organizationMembershipType: Organization
stacksetName: string
regions:
- string
scanInterval: 0
environmentName: string
hierarchyIdentifier: string
kind: string
location: string
offerings:
- nativeCloudConnection:
cloudRoleArn: string
offeringType: CspmMonitorAws
resourceGroupName: string
securityConnectorName: string
tags:
string: string
SecurityConnector Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SecurityConnector resource accepts the following input properties:
- Resource
Group stringName - The name of the resource group within the user's subscription. 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
- Location where the resource is stored
- Offerings List<object>
- A collection of offerings for the security connector.
- Security
Connector stringName - The security connector name.
- Dictionary<string, string>
- A list of key value pairs that describe the resource.
- Resource
Group stringName - The name of the resource group within the user's subscription. 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
- Location where the resource is stored
- Offerings []interface{}
- A collection of offerings for the security connector.
- Security
Connector stringName - The security connector name.
- map[string]string
- A list of key value pairs that describe the resource.
- resource
Group StringName - The name of the resource group within the user's subscription. 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
- Location where the resource is stored
- offerings List<Object>
- A collection of offerings for the security connector.
- security
Connector StringName - The security connector name.
- Map<String,String>
- A list of key value pairs that describe the resource.
- resource
Group stringName - The name of the resource group within the user's subscription. 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
- Location where the resource is stored
- 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}
- A list of key value pairs that describe the resource.
- resource_
group_ strname - The name of the resource group within the user's subscription. 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
- Location where the resource is stored
- 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]
- A list of key value pairs that describe the resource.
- resource
Group StringName - The name of the resource group within the user's subscription. 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
- Location where the resource is stored
- offerings List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map>
- A collection of offerings for the security connector.
- security
Connector StringName - The security connector name.
- Map<String>
- A list of key value pairs that describe the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the SecurityConnector resource produces the following output properties:
- 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
- Resource name
- System
Data Pulumi.Azure Native. Security. Outputs. System Data Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- Resource type
- Etag string
- Entity tag is used for comparing two or more entities from the same requested resource.
- Azure
Api 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
- Resource name
- System
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- Resource type
- Etag string
- Entity tag is used for comparing two or more entities from the same requested resource.
- azure
Api 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
- Resource name
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- Resource type
- etag String
- Entity tag is used for comparing two or more entities from the same requested resource.
- azure
Api 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
- Resource name
- system
Data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- Resource type
- etag string
- Entity tag is used for comparing two or more entities from the same requested resource.
- azure_
api_ 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
- Resource name
- system_
data SystemData Response - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- Resource type
- etag str
- Entity tag is used for comparing two or more entities from the same requested resource.
- 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
- Resource name
- system
Data Property Map - Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- Resource type
- etag String
- Entity tag is used for comparing two or more entities from the same requested resource.
Supporting Types
AccessTokenAuthentication, AccessTokenAuthenticationArgs
- 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
- 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
- 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
ArcAutoProvisioningResponseConfiguration, ArcAutoProvisioningResponseConfigurationArgs
- 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
- 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 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
- 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 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
- 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 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
- 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 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
- 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
- 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
AzureDevOpsScopeEnvironmentDataResponse, AzureDevOpsScopeEnvironmentDataResponseArgs
CloudName, CloudNameArgs
- Azure
- Azure
- AWS
- AWS
- GCP
- GCP
- Github
- Github
- Azure
Dev Ops - AzureDevOps
- Git
Lab - GitLab
- Docker
Hub - DockerHub
- JFrog
- JFrog
- Cloud
Name Azure - Azure
- Cloud
Name AWS - AWS
- Cloud
Name GCP - GCP
- Cloud
Name Github - Github
- Cloud
Name Azure Dev Ops - AzureDevOps
- Cloud
Name Git Lab - GitLab
- Cloud
Name Docker Hub - DockerHub
- Cloud
Name JFrog - JFrog
- Azure
- Azure
- AWS
- AWS
- GCP
- GCP
- Github
- Github
- Azure
Dev Ops - AzureDevOps
- Git
Lab - GitLab
- Docker
Hub - DockerHub
- JFrog
- JFrog
- Azure
- Azure
- AWS
- AWS
- GCP
- GCP
- Github
- Github
- Azure
Dev Ops - AzureDevOps
- Git
Lab - GitLab
- Docker
Hub - DockerHub
- JFrog
- JFrog
- AZURE
- Azure
- AWS
- AWS
- GCP
- GCP
- GITHUB
- Github
- AZURE_DEV_OPS
- AzureDevOps
- GIT_LAB
- GitLab
- DOCKER_HUB
- DockerHub
- J_FROG
- JFrog
- "Azure"
- Azure
- "AWS"
- AWS
- "GCP"
- GCP
- "Github"
- Github
- "Azure
Dev Ops" - AzureDevOps
- "Git
Lab" - GitLab
- "Docker
Hub" - DockerHub
- "JFrog"
- JFrog
CspmMonitorAwsOffering, CspmMonitorAwsOfferingArgs
- 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 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
- 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
- Description string
- The offering description.
- Native
Cloud Pulumi.Connection Azure Native. Security. Inputs. Cspm Monitor Aws Offering Response Native Cloud Connection - The native cloud connection configuration
- Description string
- The offering description.
- Native
Cloud CspmConnection Monitor Aws Offering Response Native Cloud Connection - The native cloud connection configuration
- description String
- The offering description.
- native
Cloud CspmConnection Monitor Aws Offering Response Native Cloud Connection - The native cloud connection configuration
- description string
- The offering description.
- native
Cloud CspmConnection Monitor Aws Offering Response Native Cloud Connection - The native cloud connection configuration
- description str
- The offering description.
- native_
cloud_ Cspmconnection Monitor Aws Offering Response Native Cloud Connection - The native cloud connection configuration
- description String
- The offering description.
- native
Cloud Property MapConnection - The native cloud connection configuration
CspmMonitorAwsOfferingResponseNativeCloudConnection, CspmMonitorAwsOfferingResponseNativeCloudConnectionArgs
- 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
CspmMonitorAzureDevOpsOffering, CspmMonitorAzureDevOpsOfferingArgs
CspmMonitorAzureDevOpsOfferingResponse, CspmMonitorAzureDevOpsOfferingResponseArgs
- Description string
- The offering description.
- Description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
CspmMonitorDockerHubOffering, CspmMonitorDockerHubOfferingArgs
CspmMonitorDockerHubOfferingResponse, CspmMonitorDockerHubOfferingResponseArgs
- Description string
- The offering description.
- Description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
CspmMonitorGcpOffering, CspmMonitorGcpOfferingArgs
- 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 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
- 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
- Description string
- The offering description.
- Native
Cloud Pulumi.Connection Azure Native. Security. Inputs. Cspm Monitor Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- Description string
- The offering description.
- Native
Cloud CspmConnection Monitor Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- description String
- The offering description.
- native
Cloud CspmConnection Monitor Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- description string
- The offering description.
- native
Cloud CspmConnection Monitor Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- description str
- The offering description.
- native_
cloud_ Cspmconnection Monitor Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- description String
- The offering description.
- native
Cloud Property MapConnection - The native cloud connection configuration
CspmMonitorGcpOfferingResponseNativeCloudConnection, CspmMonitorGcpOfferingResponseNativeCloudConnectionArgs
- 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
CspmMonitorGitLabOffering, CspmMonitorGitLabOfferingArgs
CspmMonitorGitLabOfferingResponse, CspmMonitorGitLabOfferingResponseArgs
- Description string
- The offering description.
- Description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
CspmMonitorGithubOffering, CspmMonitorGithubOfferingArgs
CspmMonitorGithubOfferingResponse, CspmMonitorGithubOfferingResponseArgs
- Description string
- The offering description.
- Description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
CspmMonitorJFrogOffering, CspmMonitorJFrogOfferingArgs
CspmMonitorJFrogOfferingResponse, CspmMonitorJFrogOfferingResponseArgs
- Description string
- The offering description.
- Description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
DefenderCspmAwsOffering, DefenderCspmAwsOfferingArgs
- Ciem
Pulumi.
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
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_ 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 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
- Ciem
Discovery Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- Ciem
Oidc Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- Ciem
Discovery DefenderCspm Aws Offering Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- Ciem
Oidc DefenderCspm Aws Offering Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery DefenderCspm Aws Offering Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc DefenderCspm Aws Offering Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery DefenderCspm Aws Offering Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc DefenderCspm Aws Offering Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem_
discovery DefenderCspm Aws Offering Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- ciem_
oidc DefenderCspm Aws Offering 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
DefenderCspmAwsOfferingCiemDiscovery, DefenderCspmAwsOfferingCiemDiscoveryArgs
- 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
DefenderCspmAwsOfferingCiemOidc, DefenderCspmAwsOfferingCiemOidcArgs
- 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
DefenderCspmAwsOfferingDataSensitivityDiscovery, DefenderCspmAwsOfferingDataSensitivityDiscoveryArgs
- 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
- 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
- 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
- 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
- Description string
- The offering description.
- Ciem
Pulumi.
Azure Native. Security. Inputs. Defender Cspm Aws Offering Response Ciem - Defenders CSPM Permissions Management offering configurations
- Data
Sensitivity Pulumi.Discovery Azure Native. Security. Inputs. Defender Cspm Aws Offering Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- Databases
Dspm Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Response Databases Dspm - The databases DSPM configuration
- Mdc
Containers Pulumi.Agentless Discovery K8s Azure Native. Security. Inputs. Defender Cspm Aws Offering Response 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 Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Response Vm Scanners - The Microsoft Defender for CSPM offering VM scanning configuration
- Description string
- The offering description.
- Ciem
Defender
Cspm Aws Offering Response Ciem - Defenders CSPM Permissions Management offering configurations
- Data
Sensitivity DefenderDiscovery Cspm Aws Offering Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- Databases
Dspm DefenderCspm Aws Offering Response Databases Dspm - The databases DSPM configuration
- Mdc
Containers DefenderAgentless Discovery K8s Cspm Aws Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers DefenderImage Assessment Cspm Aws Offering Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- Vm
Scanners DefenderCspm Aws Offering Response Vm Scanners - The Microsoft Defender for CSPM offering VM scanning configuration
- description String
- The offering description.
- ciem
Defender
Cspm Aws Offering Response Ciem - Defenders CSPM Permissions Management offering configurations
- data
Sensitivity DefenderDiscovery Cspm Aws Offering Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases
Dspm DefenderCspm Aws Offering Response Databases Dspm - The databases DSPM configuration
- mdc
Containers DefenderAgentless Discovery K8s Cspm Aws Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment Cspm Aws Offering Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderCspm Aws Offering Response Vm Scanners - The Microsoft Defender for CSPM offering VM scanning configuration
- description string
- The offering description.
- ciem
Defender
Cspm Aws Offering Response Ciem - Defenders CSPM Permissions Management offering configurations
- data
Sensitivity DefenderDiscovery Cspm Aws Offering Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases
Dspm DefenderCspm Aws Offering Response Databases Dspm - The databases DSPM configuration
- mdc
Containers DefenderAgentless Discovery K8s Cspm Aws Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment Cspm Aws Offering Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderCspm Aws Offering Response Vm Scanners - The Microsoft Defender for CSPM offering VM scanning configuration
- description str
- The offering description.
- ciem
Defender
Cspm Aws Offering Response Ciem - Defenders CSPM Permissions Management offering configurations
- data_
sensitivity_ Defenderdiscovery Cspm Aws Offering Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- databases_
dspm DefenderCspm Aws Offering Response Databases Dspm - The databases DSPM configuration
- mdc_
containers_ Defenderagentless_ discovery_ k8s Cspm Aws Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ Defenderimage_ assessment Cspm Aws Offering Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm_
scanners DefenderCspm Aws Offering Response Vm Scanners - 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
DefenderCspmAwsOfferingResponseCiem, DefenderCspmAwsOfferingResponseCiemArgs
- Ciem
Discovery Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Response Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- Ciem
Oidc Pulumi.Azure Native. Security. Inputs. Defender Cspm Aws Offering Response Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- Ciem
Discovery DefenderCspm Aws Offering Response Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- Ciem
Oidc DefenderCspm Aws Offering Response Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery DefenderCspm Aws Offering Response Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc DefenderCspm Aws Offering Response Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem
Discovery DefenderCspm Aws Offering Response Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- ciem
Oidc DefenderCspm Aws Offering Response Ciem Oidc - AWS Defender CSPM Permissions Management OIDC (open id connect) connection configurations
- ciem_
discovery DefenderCspm Aws Offering Response Ciem Discovery - Defender CSPM Permissions Management discovery configuration
- ciem_
oidc DefenderCspm Aws Offering Response 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
DefenderCspmAwsOfferingResponseCiemDiscovery, DefenderCspmAwsOfferingResponseCiemDiscoveryArgs
- 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
DefenderCspmAwsOfferingResponseCiemOidc, DefenderCspmAwsOfferingResponseCiemOidcArgs
- 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
DefenderCspmAwsOfferingResponseDataSensitivityDiscovery, DefenderCspmAwsOfferingResponseDataSensitivityDiscoveryArgs
- 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
DefenderCspmAwsOfferingResponseDatabasesDspm, DefenderCspmAwsOfferingResponseDatabasesDspmArgs
- 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
DefenderCspmAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s, DefenderCspmAwsOfferingResponseMdcContainersAgentlessDiscoveryK8sArgs
- 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
DefenderCspmAwsOfferingResponseMdcContainersImageAssessment, DefenderCspmAwsOfferingResponseMdcContainersImageAssessmentArgs
- 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
DefenderCspmAwsOfferingResponseVmScanners, DefenderCspmAwsOfferingResponseVmScannersArgs
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Response 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 Response 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 Response 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 Response 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 Response 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
DefenderCspmAwsOfferingVmScanners, DefenderCspmAwsOfferingVmScannersArgs
- 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
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
DefenderCspmDockerHubOffering, DefenderCspmDockerHubOfferingArgs
DefenderCspmDockerHubOfferingResponse, DefenderCspmDockerHubOfferingResponseArgs
- Description string
- The offering description.
- Description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
DefenderCspmGcpOffering, DefenderCspmGcpOfferingArgs
- 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 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_ 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 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
- 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
- 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
- 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
- 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
- Description string
- The offering description.
- Ciem
Discovery Pulumi.Azure Native. Security. Inputs. Defender Cspm Gcp Offering Response 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 Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- Mdc
Containers Pulumi.Agentless Discovery K8s Azure Native. Security. Inputs. Defender Cspm Gcp Offering Response 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 Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender Cspm Gcp Offering Response Vm Scanners - The Microsoft Defender for CSPM VM scanning configuration
- Description string
- The offering description.
- Ciem
Discovery DefenderCspm Gcp Offering Response Ciem Discovery - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- Data
Sensitivity DefenderDiscovery Cspm Gcp Offering Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- Mdc
Containers DefenderAgentless Discovery K8s Cspm Gcp Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers DefenderImage Assessment Cspm Gcp Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Vm
Scanners DefenderCspm Gcp Offering Response Vm Scanners - The Microsoft Defender for CSPM VM scanning configuration
- description String
- The offering description.
- ciem
Discovery DefenderCspm Gcp Offering Response Ciem Discovery - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data
Sensitivity DefenderDiscovery Cspm Gcp Offering Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc
Containers DefenderAgentless Discovery K8s Cspm Gcp Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment Cspm Gcp Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- vm
Scanners DefenderCspm Gcp Offering Response Vm Scanners - The Microsoft Defender for CSPM VM scanning configuration
- description string
- The offering description.
- ciem
Discovery DefenderCspm Gcp Offering Response Ciem Discovery - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data
Sensitivity DefenderDiscovery Cspm Gcp Offering Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc
Containers DefenderAgentless Discovery K8s Cspm Gcp Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment Cspm Gcp Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- vm
Scanners DefenderCspm Gcp Offering Response Vm Scanners - The Microsoft Defender for CSPM VM scanning configuration
- description str
- The offering description.
- ciem_
discovery DefenderCspm Gcp Offering Response Ciem Discovery - GCP Defenders CSPM Permissions Management OIDC (Open ID connect) connection configurations
- data_
sensitivity_ Defenderdiscovery Cspm Gcp Offering Response Data Sensitivity Discovery - The Microsoft Defender Data Sensitivity discovery configuration
- mdc_
containers_ Defenderagentless_ discovery_ k8s Cspm Gcp Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ Defenderimage_ assessment Cspm Gcp Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- vm_
scanners DefenderCspm Gcp Offering Response Vm Scanners - 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
DefenderCspmGcpOfferingResponseCiemDiscovery, DefenderCspmGcpOfferingResponseCiemDiscoveryArgs
- 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
DefenderCspmGcpOfferingResponseDataSensitivityDiscovery, DefenderCspmGcpOfferingResponseDataSensitivityDiscoveryArgs
- 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
DefenderCspmGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s, DefenderCspmGcpOfferingResponseMdcContainersAgentlessDiscoveryK8sArgs
- 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
DefenderCspmGcpOfferingResponseMdcContainersImageAssessment, DefenderCspmGcpOfferingResponseMdcContainersImageAssessmentArgs
- 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
DefenderCspmGcpOfferingResponseVmScanners, DefenderCspmGcpOfferingResponseVmScannersArgs
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Response Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderCspmGcpOfferingVmScanners, DefenderCspmGcpOfferingVmScannersArgs
- Configuration
Pulumi.
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
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
DefenderCspmJFrogOffering, DefenderCspmJFrogOfferingArgs
- 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 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
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
DefenderCspmJFrogOfferingResponse, DefenderCspmJFrogOfferingResponseArgs
- Description string
- The offering description.
- Mdc
Containers Pulumi.Image Assessment Azure Native. Security. Inputs. Defender Cspm JFrog Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Description string
- The offering description.
- Mdc
Containers DefenderImage Assessment Cspm JFrog Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- description String
- The offering description.
- mdc
Containers DefenderImage Assessment Cspm JFrog Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- description string
- The offering description.
- mdc
Containers DefenderImage Assessment Cspm JFrog Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- description str
- The offering description.
- mdc_
containers_ Defenderimage_ assessment Cspm JFrog Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- description String
- The offering description.
- mdc
Containers Property MapImage Assessment - The Microsoft Defender Container image assessment configuration
DefenderCspmJFrogOfferingResponseMdcContainersImageAssessment, DefenderCspmJFrogOfferingResponseMdcContainersImageAssessmentArgs
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- Enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
- enabled boolean
- Is Microsoft Defender container image assessment enabled
- enabled bool
- Is Microsoft Defender container image assessment enabled
- enabled Boolean
- Is Microsoft Defender container image assessment enabled
DefenderFoDatabasesAwsOffering, DefenderFoDatabasesAwsOfferingArgs
- 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 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
- 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
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
DefenderFoDatabasesAwsOfferingDatabasesDspm, DefenderFoDatabasesAwsOfferingDatabasesDspmArgs
- 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
- 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
- Description string
- The offering description.
- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender Fo Databases Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- Databases
Dspm Pulumi.Azure Native. Security. Inputs. Defender Fo Databases Aws Offering Response Databases Dspm - The databases data security posture management (DSPM) configuration
- Rds
Pulumi.
Azure Native. Security. Inputs. Defender Fo Databases Aws Offering Response Rds - The RDS configuration
- Description string
- The offering description.
- Arc
Auto DefenderProvisioning Fo Databases Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- Databases
Dspm DefenderFo Databases Aws Offering Response Databases Dspm - The databases data security posture management (DSPM) configuration
- Rds
Defender
Fo Databases Aws Offering Response Rds - The RDS configuration
- description String
- The offering description.
- arc
Auto DefenderProvisioning Fo Databases Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- databases
Dspm DefenderFo Databases Aws Offering Response Databases Dspm - The databases data security posture management (DSPM) configuration
- rds
Defender
Fo Databases Aws Offering Response Rds - The RDS configuration
- description string
- The offering description.
- arc
Auto DefenderProvisioning Fo Databases Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- databases
Dspm DefenderFo Databases Aws Offering Response Databases Dspm - The databases data security posture management (DSPM) configuration
- rds
Defender
Fo Databases Aws Offering Response Rds - The RDS configuration
- description str
- The offering description.
- arc_
auto_ Defenderprovisioning Fo Databases Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- databases_
dspm DefenderFo Databases Aws Offering Response Databases Dspm - The databases data security posture management (DSPM) configuration
- rds
Defender
Fo Databases Aws Offering Response Rds - 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
DefenderFoDatabasesAwsOfferingResponseArcAutoProvisioning, DefenderFoDatabasesAwsOfferingResponseArcAutoProvisioningArgs
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Response 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 Response 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 Response 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 Response 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 Response 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
DefenderFoDatabasesAwsOfferingResponseDatabasesDspm, DefenderFoDatabasesAwsOfferingResponseDatabasesDspmArgs
- 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
DefenderFoDatabasesAwsOfferingResponseRds, DefenderFoDatabasesAwsOfferingResponseRdsArgs
- 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
DefenderForContainersAwsOffering, DefenderForContainersAwsOfferingArgs
- 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 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_ 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 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
- 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
- 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
- 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
- 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
- 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
- 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
- Description string
- The offering description.
- Cloud
Watch Pulumi.To Kinesis Azure Native. Security. Inputs. Defender For Containers Aws Offering Response 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 Response 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 Response Kubernetes Data Collection - The kubernetes data collection connection configuration
- Kubernetes
Service Pulumi.Azure Native. Security. Inputs. Defender For Containers Aws Offering Response Kubernetes Service - The kubernetes service connection configuration
- Mdc
Containers Pulumi.Agentless Discovery K8s Azure Native. Security. Inputs. Defender For Containers Aws Offering Response 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 Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Containers Aws Offering Response Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- Description string
- The offering description.
- Cloud
Watch DefenderTo Kinesis For Containers Aws Offering Response 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 Response 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 Response Kubernetes Data Collection - The kubernetes data collection connection configuration
- Kubernetes
Service DefenderFor Containers Aws Offering Response Kubernetes Service - The kubernetes service connection configuration
- Mdc
Containers DefenderAgentless Discovery K8s For Containers Aws Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender container agentless discovery K8s configuration
- Mdc
Containers DefenderImage Assessment For Containers Aws Offering Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- Vm
Scanners DefenderFor Containers Aws Offering Response Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- description String
- The offering description.
- cloud
Watch DefenderTo Kinesis For Containers Aws Offering Response 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 Response 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 Response Kubernetes Data Collection - The kubernetes data collection connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Response Kubernetes Service - The kubernetes service connection configuration
- mdc
Containers DefenderAgentless Discovery K8s For Containers Aws Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment For Containers Aws Offering Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderFor Containers Aws Offering Response Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- description string
- The offering description.
- cloud
Watch DefenderTo Kinesis For Containers Aws Offering Response 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 Response 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 Response Kubernetes Data Collection - The kubernetes data collection connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Response Kubernetes Service - The kubernetes service connection configuration
- mdc
Containers DefenderAgentless Discovery K8s For Containers Aws Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender container agentless discovery K8s configuration
- mdc
Containers DefenderImage Assessment For Containers Aws Offering Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm
Scanners DefenderFor Containers Aws Offering Response Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- description str
- The offering description.
- cloud_
watch_ Defenderto_ kinesis For Containers Aws Offering Response 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 Response 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 Response Kubernetes Data Collection - The kubernetes data collection connection configuration
- kubernetes_
service DefenderFor Containers Aws Offering Response Kubernetes Service - The kubernetes service connection configuration
- mdc_
containers_ Defenderagentless_ discovery_ k8s For Containers Aws Offering Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender container agentless discovery K8s configuration
- mdc_
containers_ Defenderimage_ assessment For Containers Aws Offering Response Mdc Containers Image Assessment - The Microsoft Defender container image assessment configuration
- vm_
scanners DefenderFor Containers Aws Offering Response Vm Scanners - 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
DefenderForContainersAwsOfferingResponseCloudWatchToKinesis, DefenderForContainersAwsOfferingResponseCloudWatchToKinesisArgs
- 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
DefenderForContainersAwsOfferingResponseKinesisToS3, DefenderForContainersAwsOfferingResponseKinesisToS3Args
- 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
DefenderForContainersAwsOfferingResponseKubernetesDataCollection, DefenderForContainersAwsOfferingResponseKubernetesDataCollectionArgs
- 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
DefenderForContainersAwsOfferingResponseKubernetesService, DefenderForContainersAwsOfferingResponseKubernetesServiceArgs
- 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
DefenderForContainersAwsOfferingResponseMdcContainersAgentlessDiscoveryK8s, DefenderForContainersAwsOfferingResponseMdcContainersAgentlessDiscoveryK8sArgs
- 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
DefenderForContainersAwsOfferingResponseMdcContainersImageAssessment, DefenderForContainersAwsOfferingResponseMdcContainersImageAssessmentArgs
- 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
DefenderForContainersAwsOfferingResponseVmScanners, DefenderForContainersAwsOfferingResponseVmScannersArgs
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Response 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 Response 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 Response 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 Response 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 Response 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
DefenderForContainersAwsOfferingVmScanners, DefenderForContainersAwsOfferingVmScannersArgs
- 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
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
DefenderForContainersDockerHubOffering, DefenderForContainersDockerHubOfferingArgs
DefenderForContainersDockerHubOfferingResponse, DefenderForContainersDockerHubOfferingResponseArgs
- Description string
- The offering description.
- Description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
DefenderForContainersGcpOffering, DefenderForContainersGcpOfferingArgs
- 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 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_ 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 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
- 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
- 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
- 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
- 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
- Description string
- The offering description.
- Data
Pipeline Pulumi.Native Cloud Connection Azure Native. Security. Inputs. Defender For Containers Gcp Offering Response 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 Response 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 Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Native
Cloud Pulumi.Connection Azure Native. Security. Inputs. Defender For Containers Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Containers Gcp Offering Response Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- Description string
- The offering description.
- Data
Pipeline DefenderNative Cloud Connection For Containers Gcp Offering Response 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 Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender Container agentless discovery configuration
- Mdc
Containers DefenderImage Assessment For Containers Gcp Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- Native
Cloud DefenderConnection For Containers Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- Vm
Scanners DefenderFor Containers Gcp Offering Response Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- description String
- The offering description.
- data
Pipeline DefenderNative Cloud Connection For Containers Gcp Offering Response 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 Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment For Containers Gcp Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- native
Cloud DefenderConnection For Containers Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- vm
Scanners DefenderFor Containers Gcp Offering Response Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- description string
- The offering description.
- data
Pipeline DefenderNative Cloud Connection For Containers Gcp Offering Response 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 Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender Container agentless discovery configuration
- mdc
Containers DefenderImage Assessment For Containers Gcp Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- native
Cloud DefenderConnection For Containers Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- vm
Scanners DefenderFor Containers Gcp Offering Response Vm Scanners - The Microsoft Defender for Container K8s VM host scanning configuration
- description str
- The offering description.
- data_
pipeline_ Defendernative_ cloud_ connection For Containers Gcp Offering Response 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 Response Mdc Containers Agentless Discovery K8s - The Microsoft Defender Container agentless discovery configuration
- mdc_
containers_ Defenderimage_ assessment For Containers Gcp Offering Response Mdc Containers Image Assessment - The Microsoft Defender Container image assessment configuration
- native_
cloud_ Defenderconnection For Containers Gcp Offering Response Native Cloud Connection - The native cloud connection configuration
- vm_
scanners DefenderFor Containers Gcp Offering Response Vm Scanners - 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
DefenderForContainersGcpOfferingResponseDataPipelineNativeCloudConnection, DefenderForContainersGcpOfferingResponseDataPipelineNativeCloudConnectionArgs
- 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
DefenderForContainersGcpOfferingResponseMdcContainersAgentlessDiscoveryK8s, DefenderForContainersGcpOfferingResponseMdcContainersAgentlessDiscoveryK8sArgs
- 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
DefenderForContainersGcpOfferingResponseMdcContainersImageAssessment, DefenderForContainersGcpOfferingResponseMdcContainersImageAssessmentArgs
- 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
DefenderForContainersGcpOfferingResponseNativeCloudConnection, DefenderForContainersGcpOfferingResponseNativeCloudConnectionArgs
- 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
DefenderForContainersGcpOfferingResponseVmScanners, DefenderForContainersGcpOfferingResponseVmScannersArgs
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Response Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderForContainersGcpOfferingVmScanners, DefenderForContainersGcpOfferingVmScannersArgs
- Configuration
Pulumi.
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
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
DefenderForContainersJFrogOffering, DefenderForContainersJFrogOfferingArgs
DefenderForContainersJFrogOfferingResponse, DefenderForContainersJFrogOfferingResponseArgs
- Description string
- The offering description.
- Description string
- The offering description.
- description String
- The offering description.
- description string
- The offering description.
- description str
- The offering description.
- description String
- The offering description.
DefenderForDatabasesGcpOffering, DefenderForDatabasesGcpOfferingArgs
- 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 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
- 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
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
DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioning, DefenderForDatabasesGcpOfferingDefenderForDatabasesArcAutoProvisioningArgs
- 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
- Description string
- The offering description.
- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Databases Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For Pulumi.Databases Arc Auto Provisioning Azure Native. Security. Inputs. Defender For Databases Gcp Offering Response Defender For Databases Arc Auto Provisioning - The native cloud connection configuration
- Description string
- The offering description.
- Arc
Auto DefenderProvisioning For Databases Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For DefenderDatabases Arc Auto Provisioning For Databases Gcp Offering Response Defender For Databases Arc Auto Provisioning - The native cloud connection configuration
- description String
- The offering description.
- arc
Auto DefenderProvisioning For Databases Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderDatabases Arc Auto Provisioning For Databases Gcp Offering Response Defender For Databases Arc Auto Provisioning - The native cloud connection configuration
- description string
- The offering description.
- arc
Auto DefenderProvisioning For Databases Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderDatabases Arc Auto Provisioning For Databases Gcp Offering Response Defender For Databases Arc Auto Provisioning - The native cloud connection configuration
- description str
- The offering description.
- arc_
auto_ Defenderprovisioning For Databases Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender_
for_ Defenderdatabases_ arc_ auto_ provisioning For Databases Gcp Offering Response Defender For Databases Arc Auto Provisioning - 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
DefenderForDatabasesGcpOfferingResponseArcAutoProvisioning, DefenderForDatabasesGcpOfferingResponseArcAutoProvisioningArgs
- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Response Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Configuration
Arc
Auto Provisioning Response Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Response Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Response Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Response 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
DefenderForDatabasesGcpOfferingResponseDefenderForDatabasesArcAutoProvisioning, DefenderForDatabasesGcpOfferingResponseDefenderForDatabasesArcAutoProvisioningArgs
- 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
DefenderForServersAwsOffering, DefenderForServersAwsOfferingArgs
- 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 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
- 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
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
DefenderForServersAwsOfferingConfiguration, DefenderForServersAwsOfferingConfigurationArgs
- 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'
DefenderForServersAwsOfferingDefenderForServers, DefenderForServersAwsOfferingDefenderForServersArgs
- 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
- Configuration object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- Configuration interface{}
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
DefenderForServersAwsOfferingResponse, DefenderForServersAwsOfferingResponseArgs
- Description string
- The offering description.
- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For Pulumi.Servers Azure Native. Security. Inputs. Defender For Servers Aws Offering Response Defender For Servers - The Defender for servers connection configuration
- Mde
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Aws Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan Pulumi.Azure Native. Security. Inputs. Defender For Servers Aws Offering Response Sub Plan - configuration for the servers offering subPlan
- Va
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Aws Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Servers Aws Offering Response Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- Description string
- The offering description.
- Arc
Auto DefenderProvisioning For Servers Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For DefenderServers For Servers Aws Offering Response Defender For Servers - The Defender for servers connection configuration
- Mde
Auto DefenderProvisioning For Servers Aws Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan DefenderFor Servers Aws Offering Response Sub Plan - configuration for the servers offering subPlan
- Va
Auto DefenderProvisioning For Servers Aws Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners DefenderFor Servers Aws Offering Response Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- description String
- The offering description.
- arc
Auto DefenderProvisioning For Servers Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Aws Offering Response Defender For Servers - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Aws Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Aws Offering Response Sub Plan - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Aws Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Aws Offering Response Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- description string
- The offering description.
- arc
Auto DefenderProvisioning For Servers Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Aws Offering Response Defender For Servers - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Aws Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Aws Offering Response Sub Plan - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Aws Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Aws Offering Response Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- description str
- The offering description.
- arc_
auto_ Defenderprovisioning For Servers Aws Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender_
for_ Defenderservers For Servers Aws Offering Response Defender For Servers - The Defender for servers connection configuration
- mde_
auto_ Defenderprovisioning For Servers Aws Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan DefenderFor Servers Aws Offering Response Sub Plan - configuration for the servers offering subPlan
- va_
auto_ Defenderprovisioning For Servers Aws Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners DefenderFor Servers Aws Offering Response Vm Scanners - 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
DefenderForServersAwsOfferingResponseArcAutoProvisioning, DefenderForServersAwsOfferingResponseArcAutoProvisioningArgs
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Response 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 Response 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 Response 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 Response 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 Response 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
DefenderForServersAwsOfferingResponseConfiguration, DefenderForServersAwsOfferingResponseConfigurationArgs
- Type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- Type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type str
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
DefenderForServersAwsOfferingResponseDefenderForServers, DefenderForServersAwsOfferingResponseDefenderForServersArgs
- 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
DefenderForServersAwsOfferingResponseMdeAutoProvisioning, DefenderForServersAwsOfferingResponseMdeAutoProvisioningArgs
- Configuration object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- Configuration interface{}
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
DefenderForServersAwsOfferingResponseSubPlan, DefenderForServersAwsOfferingResponseSubPlanArgs
- Type string
- The available sub plans
- Type string
- The available sub plans
- type String
- The available sub plans
- type string
- The available sub plans
- type str
- The available sub plans
- type String
- The available sub plans
DefenderForServersAwsOfferingResponseVaAutoProvisioning, DefenderForServersAwsOfferingResponseVaAutoProvisioningArgs
- Configuration
Pulumi.
Azure Native. Security. Inputs. Defender For Servers Aws Offering Response Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- Configuration
Defender
For Servers Aws Offering Response Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Response Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Response Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Response 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
DefenderForServersAwsOfferingResponseVmScanners, DefenderForServersAwsOfferingResponseVmScannersArgs
- Cloud
Role stringArn - The cloud role ARN in AWS for this feature
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Response 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 Response 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 Response 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 Response 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 Response 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
DefenderForServersAwsOfferingSubPlan, DefenderForServersAwsOfferingSubPlanArgs
- Type
string | Pulumi.
Azure Native. Security. Sub Plan - The available sub plans
- type String | "P1" | "P2"
- The available sub plans
DefenderForServersAwsOfferingVaAutoProvisioning, DefenderForServersAwsOfferingVaAutoProvisioningArgs
- Configuration
Pulumi.
Azure Native. Security. Inputs. Defender For Servers Aws Offering Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- Configuration
Defender
For Servers Aws Offering Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Aws Offering 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
DefenderForServersAwsOfferingVmScanners, DefenderForServersAwsOfferingVmScannersArgs
- 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
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
DefenderForServersGcpOffering, DefenderForServersGcpOfferingArgs
- 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 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
- 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
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
DefenderForServersGcpOfferingConfiguration, DefenderForServersGcpOfferingConfigurationArgs
- 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'
DefenderForServersGcpOfferingDefenderForServers, DefenderForServersGcpOfferingDefenderForServersArgs
- 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
- Configuration object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- Configuration interface{}
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
DefenderForServersGcpOfferingResponse, DefenderForServersGcpOfferingResponseArgs
- Description string
- The offering description.
- Arc
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For Pulumi.Servers Azure Native. Security. Inputs. Defender For Servers Gcp Offering Response Defender For Servers - The Defender for servers connection configuration
- Mde
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Gcp Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan Pulumi.Azure Native. Security. Inputs. Defender For Servers Gcp Offering Response Sub Plan - configuration for the servers offering subPlan
- Va
Auto Pulumi.Provisioning Azure Native. Security. Inputs. Defender For Servers Gcp Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners Pulumi.Azure Native. Security. Inputs. Defender For Servers Gcp Offering Response Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- Description string
- The offering description.
- Arc
Auto DefenderProvisioning For Servers Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- Defender
For DefenderServers For Servers Gcp Offering Response Defender For Servers - The Defender for servers connection configuration
- Mde
Auto DefenderProvisioning For Servers Gcp Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- Sub
Plan DefenderFor Servers Gcp Offering Response Sub Plan - configuration for the servers offering subPlan
- Va
Auto DefenderProvisioning For Servers Gcp Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- Vm
Scanners DefenderFor Servers Gcp Offering Response Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- description String
- The offering description.
- arc
Auto DefenderProvisioning For Servers Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Gcp Offering Response Defender For Servers - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Gcp Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Gcp Offering Response Sub Plan - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Gcp Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Gcp Offering Response Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- description string
- The offering description.
- arc
Auto DefenderProvisioning For Servers Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender
For DefenderServers For Servers Gcp Offering Response Defender For Servers - The Defender for servers connection configuration
- mde
Auto DefenderProvisioning For Servers Gcp Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub
Plan DefenderFor Servers Gcp Offering Response Sub Plan - configuration for the servers offering subPlan
- va
Auto DefenderProvisioning For Servers Gcp Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm
Scanners DefenderFor Servers Gcp Offering Response Vm Scanners - The Microsoft Defender for Server VM scanning configuration
- description str
- The offering description.
- arc_
auto_ Defenderprovisioning For Servers Gcp Offering Response Arc Auto Provisioning - The ARC autoprovisioning configuration
- defender_
for_ Defenderservers For Servers Gcp Offering Response Defender For Servers - The Defender for servers connection configuration
- mde_
auto_ Defenderprovisioning For Servers Gcp Offering Response Mde Auto Provisioning - The Microsoft Defender for Endpoint autoprovisioning configuration
- sub_
plan DefenderFor Servers Gcp Offering Response Sub Plan - configuration for the servers offering subPlan
- va_
auto_ Defenderprovisioning For Servers Gcp Offering Response Va Auto Provisioning - The Vulnerability Assessment autoprovisioning configuration
- vm_
scanners DefenderFor Servers Gcp Offering Response Vm Scanners - 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
DefenderForServersGcpOfferingResponseArcAutoProvisioning, DefenderForServersGcpOfferingResponseArcAutoProvisioningArgs
- Configuration
Pulumi.
Azure Native. Security. Inputs. Arc Auto Provisioning Response Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- Configuration
Arc
Auto Provisioning Response Configuration - Configuration for servers Arc auto provisioning for a given environment
- Enabled bool
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Response Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled Boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Response Configuration - Configuration for servers Arc auto provisioning for a given environment
- enabled boolean
- Is arc auto provisioning enabled
- configuration
Arc
Auto Provisioning Response 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
DefenderForServersGcpOfferingResponseConfiguration, DefenderForServersGcpOfferingResponseConfigurationArgs
- Type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- Type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type string
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type str
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
- type String
- The Vulnerability Assessment solution to be provisioned. Can be either 'TVM' or 'Qualys'
DefenderForServersGcpOfferingResponseDefenderForServers, DefenderForServersGcpOfferingResponseDefenderForServersArgs
- 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
DefenderForServersGcpOfferingResponseMdeAutoProvisioning, DefenderForServersGcpOfferingResponseMdeAutoProvisioningArgs
- Configuration object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- Configuration interface{}
- configuration for Microsoft Defender for Endpoint autoprovisioning
- Enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Object
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled bool
- Is Microsoft Defender for Endpoint auto provisioning enabled
- configuration Any
- configuration for Microsoft Defender for Endpoint autoprovisioning
- enabled Boolean
- Is Microsoft Defender for Endpoint auto provisioning enabled
DefenderForServersGcpOfferingResponseSubPlan, DefenderForServersGcpOfferingResponseSubPlanArgs
- Type string
- The available sub plans
- Type string
- The available sub plans
- type String
- The available sub plans
- type string
- The available sub plans
- type str
- The available sub plans
- type String
- The available sub plans
DefenderForServersGcpOfferingResponseVaAutoProvisioning, DefenderForServersGcpOfferingResponseVaAutoProvisioningArgs
- Configuration
Pulumi.
Azure Native. Security. Inputs. Defender For Servers Gcp Offering Response Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- Configuration
Defender
For Servers Gcp Offering Response Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Response Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Response Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Response 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
DefenderForServersGcpOfferingResponseVmScanners, DefenderForServersGcpOfferingResponseVmScannersArgs
- Configuration
Pulumi.
Azure Native. Security. Inputs. Vm Scanners Base Response Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- Configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- Enabled bool
- Is VM scanning enabled
- configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- enabled boolean
- Is VM scanning enabled
- configuration
Vm
Scanners Base Response Configuration - Configuration for VM scanning
- enabled bool
- Is VM scanning enabled
- configuration Property Map
- Configuration for VM scanning
- enabled Boolean
- Is VM scanning enabled
DefenderForServersGcpOfferingSubPlan, DefenderForServersGcpOfferingSubPlanArgs
- Type
string | Pulumi.
Azure Native. Security. Sub Plan - The available sub plans
- type String | "P1" | "P2"
- The available sub plans
DefenderForServersGcpOfferingVaAutoProvisioning, DefenderForServersGcpOfferingVaAutoProvisioningArgs
- Configuration
Pulumi.
Azure Native. Security. Inputs. Defender For Servers Gcp Offering Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- Configuration
Defender
For Servers Gcp Offering Configuration - configuration for Vulnerability Assessment autoprovisioning
- Enabled bool
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled Boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering Configuration - configuration for Vulnerability Assessment autoprovisioning
- enabled boolean
- Is Vulnerability Assessment auto provisioning enabled
- configuration
Defender
For Servers Gcp Offering 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
DefenderForServersGcpOfferingVmScanners, DefenderForServersGcpOfferingVmScannersArgs
- 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
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
DockerHubEnvironmentData, DockerHubEnvironmentDataArgs
- 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
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
- 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
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
- 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
- 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
- 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 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
- 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 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
- 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
- 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
- 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 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
- 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 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
GithubScopeEnvironmentDataResponse, GithubScopeEnvironmentDataResponseArgs
GitlabScopeEnvironmentData, GitlabScopeEnvironmentDataArgs
GitlabScopeEnvironmentDataResponse, GitlabScopeEnvironmentDataResponseArgs
JFrogEnvironmentData, JFrogEnvironmentDataArgs
- 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 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
- 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 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
- Default
- Scanning
Mode Default - Default
- Default
- Default
- Default
- Default
- DEFAULT
- Default
- "Default"
- Default
SubPlan, SubPlanArgs
- P1
- P1
- P2
- P2
- Sub
Plan P1 - P1
- Sub
Plan P2 - P2
- P1
- P1
- P2
- P2
- P1
- P1
- P2
- P2
- P1
- P1
- P2
- P2
- "P1"
- P1
- "P2"
- P2
SystemDataResponse, SystemDataResponseArgs
- 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
- Qualys
- TVM
- TVM
- Type
Qualys - Qualys
- Type
TVM - TVM
- Qualys
- Qualys
- TVM
- TVM
- Qualys
- Qualys
- TVM
- TVM
- QUALYS
- Qualys
- TVM
- TVM
- "Qualys"
- Qualys
- "TVM"
- TVM
VmScannersBaseConfiguration, VmScannersBaseConfigurationArgs
- 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,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.
VmScannersBaseResponseConfiguration, VmScannersBaseResponseConfigurationArgs
- 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,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