azure-native.security.SecurityConnector
Explore with Pulumi AI
The security connector resource. API Version: 2021-07-01-preview.
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()
{
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"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := security.NewSecurityConnector(ctx, "securityConnector", &security.SecurityConnectorArgs{
CloudName: pulumi.String("AWS"),
HierarchyIdentifier: pulumi.String("exampleHierarchyId"),
Location: pulumi.String("Central US"),
Offerings: pulumi.AnyArray{
security.CspmMonitorAwsOffering{
NativeCloudConnection: security.CspmMonitorAwsOfferingNativeCloudConnection{
CloudRoleArn: "arn:aws:iam::00000000:role/ASCMonitor",
},
OfferingType: "CspmMonitorAws",
},
},
ResourceGroupName: pulumi.String("exampleResourceGroup"),
SecurityConnectorName: pulumi.String("exampleSecurityConnectorName"),
Tags: nil,
})
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()
.cloudName("AWS")
.hierarchyIdentifier("exampleHierarchyId")
.location("Central US")
.offerings(Map.ofEntries(
Map.entry("nativeCloudConnection", Map.of("cloudRoleArn", "arn:aws:iam::00000000:role/ASCMonitor")),
Map.entry("offeringType", "CspmMonitorAws")
))
.resourceGroupName("exampleResourceGroup")
.securityConnectorName("exampleSecurityConnectorName")
.tags()
.build());
}
}
import pulumi
import pulumi_azure_native as azure_native
security_connector = azure_native.security.SecurityConnector("securityConnector",
cloud_name="AWS",
hierarchy_identifier="exampleHierarchyId",
location="Central US",
offerings=[azure_native.security.CspmMonitorAwsOfferingArgs(
native_cloud_connection=azure_native.security.CspmMonitorAwsOfferingNativeCloudConnectionArgs(
cloud_role_arn="arn:aws:iam::00000000:role/ASCMonitor",
),
offering_type="CspmMonitorAws",
)],
resource_group_name="exampleResourceGroup",
security_connector_name="exampleSecurityConnectorName",
tags={})
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";
const securityConnector = new azure_native.security.SecurityConnector("securityConnector", {
cloudName: "AWS",
hierarchyIdentifier: "exampleHierarchyId",
location: "Central US",
offerings: [{
nativeCloudConnection: {
cloudRoleArn: "arn:aws:iam::00000000:role/ASCMonitor",
},
offeringType: "CspmMonitorAws",
}],
resourceGroupName: "exampleResourceGroup",
securityConnectorName: "exampleSecurityConnectorName",
tags: {},
});
resources:
securityConnector:
type: azure-native:security:SecurityConnector
properties:
cloudName: 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,
cloud_name: Optional[Union[str, CloudName]] = None,
hierarchy_identifier: Optional[str] = None,
kind: Optional[str] = None,
location: Optional[str] = None,
offerings: Optional[Sequence[Union[CspmMonitorAwsOfferingArgs, DefenderForContainersAwsOfferingArgs, DefenderForServersAwsOfferingArgs, InformationProtectionAwsOfferingArgs]]] = None,
organizational_data: Optional[SecurityConnectorPropertiesOrganizationalDataArgs] = 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",
CloudName = "string",
HierarchyIdentifier = "string",
Kind = "string",
Location = "string",
Offerings = new[]
{
{
{ "offeringType", "CspmMonitorAws" },
{ "nativeCloudConnection",
{
{ "cloudRoleArn", "string" },
} },
},
},
OrganizationalData =
{
{ "excludedAccountIds", new[]
{
"string",
} },
{ "organizationMembershipType", "string" },
{ "parentHierarchyId", "string" },
{ "stacksetName", "string" },
},
SecurityConnectorName = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := security.NewSecurityConnector(ctx, "securityConnectorResource", &security.SecurityConnectorArgs{
ResourceGroupName: "string",
CloudName: "string",
HierarchyIdentifier: "string",
Kind: "string",
Location: "string",
Offerings: []map[string]interface{}{
map[string]interface{}{
"offeringType": "CspmMonitorAws",
"nativeCloudConnection": map[string]interface{}{
"cloudRoleArn": "string",
},
},
},
OrganizationalData: map[string]interface{}{
"excludedAccountIds": []string{
"string",
},
"organizationMembershipType": "string",
"parentHierarchyId": "string",
"stacksetName": "string",
},
SecurityConnectorName: "string",
Tags: map[string]interface{}{
"string": "string",
},
})
var securityConnectorResource = new SecurityConnector("securityConnectorResource", SecurityConnectorArgs.builder()
.resourceGroupName("string")
.cloudName("string")
.hierarchyIdentifier("string")
.kind("string")
.location("string")
.offerings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.organizationalData(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.securityConnectorName("string")
.tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.build());
security_connector_resource = azure_native.security.SecurityConnector("securityConnectorResource",
resource_group_name=string,
cloud_name=string,
hierarchy_identifier=string,
kind=string,
location=string,
offerings=[{
offeringType: CspmMonitorAws,
nativeCloudConnection: {
cloudRoleArn: string,
},
}],
organizational_data={
excludedAccountIds: [string],
organizationMembershipType: string,
parentHierarchyId: string,
stacksetName: string,
},
security_connector_name=string,
tags={
string: string,
})
const securityConnectorResource = new azure_native.security.SecurityConnector("securityConnectorResource", {
resourceGroupName: "string",
cloudName: "string",
hierarchyIdentifier: "string",
kind: "string",
location: "string",
offerings: [{
offeringType: "CspmMonitorAws",
nativeCloudConnection: {
cloudRoleArn: "string",
},
}],
organizationalData: {
excludedAccountIds: ["string"],
organizationMembershipType: "string",
parentHierarchyId: "string",
stacksetName: "string",
},
securityConnectorName: "string",
tags: {
string: "string",
},
});
type: azure-native:security:SecurityConnector
properties:
cloudName: string
hierarchyIdentifier: string
kind: string
location: string
offerings:
- nativeCloudConnection:
cloudRoleArn: string
offeringType: CspmMonitorAws
organizationalData:
excludedAccountIds:
- string
organizationMembershipType: string
parentHierarchyId: string
stacksetName: string
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.
- Cloud
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).
- 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.
- Organizational
Data Pulumi.Azure Native. Security. Inputs. Security Connector Properties Organizational Data - The multi cloud account's organizational data
- 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.
- Cloud
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).
- Kind string
- Kind of the resource
- Location string
- Location where the resource is stored
- Offerings []interface{}
- A collection of offerings for the security connector.
- Organizational
Data SecurityConnector Properties Organizational Data Args - The multi cloud account's organizational data
- 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.
- cloud
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).
- 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.
- organizational
Data SecurityConnector Properties Organizational Data - The multi cloud account's organizational data
- 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.
- cloud
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).
- kind string
- Kind of the resource
- location string
- Location where the resource is stored
- offerings
(Cspm
Monitor Aws Offering | Defender For Containers Aws Offering Args | Defender For Servers Aws Offering Args | Information Protection Aws Offering Args)[] - A collection of offerings for the security connector.
- organizational
Data SecurityConnector Properties Organizational Data - The multi cloud account's organizational data
- 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.
- cloud_
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).
- kind str
- Kind of the resource
- location str
- Location where the resource is stored
- offerings
Sequence[Union[Cspm
Monitor Aws Offering Args, Defender For Containers Aws Offering Args, Defender For Servers Aws Offering Args, Information Protection Aws Offering Args]] - A collection of offerings for the security connector.
- organizational_
data SecurityConnector Properties Organizational Data Args - The multi cloud account's organizational data
- 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.
- cloud
Name String | "Azure" | "AWS" | "GCP" - The multi cloud resource's cloud name.
- hierarchy
Identifier String - The multi cloud resource identifier (account id in case of AWS 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>
- A collection of offerings for the security connector.
- organizational
Data Property Map - The multi cloud account's organizational data
- 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:
- 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.
- 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.
- 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.
- 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.
- 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.
- 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
CloudName, CloudNameArgs
- Azure
- Azure
- AWS
- AWS
- GCP
- GCP
- Cloud
Name Azure - Azure
- Cloud
Name AWS - AWS
- Cloud
Name GCP - GCP
- Azure
- Azure
- AWS
- AWS
- GCP
- GCP
- Azure
- Azure
- AWS
- AWS
- GCP
- GCP
- AZURE
- Azure
- AWS
- AWS
- GCP
- GCP
- "Azure"
- Azure
- "AWS"
- AWS
- "GCP"
- GCP
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
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
- Kinesis
To Pulumi.S3 Azure Native. Security. Inputs. Defender For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- Kubernetes
Scuba Pulumi.Reader Azure Native. Security. Inputs. Defender For Containers Aws Offering Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- Kubernetes
Service Pulumi.Azure Native. Security. Inputs. Defender For Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- Cloud
Watch DefenderTo Kinesis For Containers Aws Offering Cloud Watch To Kinesis - The cloudwatch to kinesis connection configuration
- Kinesis
To DefenderS3 For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- Kubernetes
Scuba DefenderReader For Containers Aws Offering Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- Kubernetes
Service DefenderFor Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- cloud
Watch DefenderTo Kinesis For Containers Aws Offering Cloud Watch To Kinesis - The cloudwatch to kinesis connection configuration
- kinesis
To DefenderS3 For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- kubernetes
Scuba DefenderReader For Containers Aws Offering Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- cloud
Watch DefenderTo Kinesis For Containers Aws Offering Cloud Watch To Kinesis - The cloudwatch to kinesis connection configuration
- kinesis
To DefenderS3 For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- kubernetes
Scuba DefenderReader For Containers Aws Offering Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- cloud_
watch_ Defenderto_ kinesis For Containers Aws Offering Cloud Watch To Kinesis - The cloudwatch to kinesis connection configuration
- kinesis_
to_ Defenders3 For Containers Aws Offering Kinesis To S3 - The kinesis to s3 connection configuration
- kubernetes_
scuba_ Defenderreader For Containers Aws Offering Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- kubernetes_
service DefenderFor Containers Aws Offering Kubernetes Service - The kubernetes service connection configuration
- cloud
Watch Property MapTo Kinesis - The cloudwatch to kinesis connection configuration
- kinesis
To Property MapS3 - The kinesis to s3 connection configuration
- kubernetes
Scuba Property MapReader - The kubernetes to scuba connection configuration
- kubernetes
Service Property Map - The kubernetes service connection configuration
DefenderForContainersAwsOfferingCloudWatchToKinesis, DefenderForContainersAwsOfferingCloudWatchToKinesisArgs
- 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
DefenderForContainersAwsOfferingKinesisToS3, DefenderForContainersAwsOfferingKinesisToS3Args
- 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
DefenderForContainersAwsOfferingKubernetesScubaReader, DefenderForContainersAwsOfferingKubernetesScubaReaderArgs
- 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
DefenderForContainersAwsOfferingKubernetesService, DefenderForContainersAwsOfferingKubernetesServiceArgs
- 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
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
- Kinesis
To Pulumi.S3 Azure Native. Security. Inputs. Defender For Containers Aws Offering Response Kinesis To S3 - The kinesis to s3 connection configuration
- Kubernetes
Scuba Pulumi.Reader Azure Native. Security. Inputs. Defender For Containers Aws Offering Response Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- Kubernetes
Service Pulumi.Azure Native. Security. Inputs. Defender For Containers Aws Offering Response Kubernetes Service - The kubernetes service connection 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
- Kinesis
To DefenderS3 For Containers Aws Offering Response Kinesis To S3 - The kinesis to s3 connection configuration
- Kubernetes
Scuba DefenderReader For Containers Aws Offering Response Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- Kubernetes
Service DefenderFor Containers Aws Offering Response Kubernetes Service - The kubernetes service connection 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
- kinesis
To DefenderS3 For Containers Aws Offering Response Kinesis To S3 - The kinesis to s3 connection configuration
- kubernetes
Scuba DefenderReader For Containers Aws Offering Response Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Response Kubernetes Service - The kubernetes service connection 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
- kinesis
To DefenderS3 For Containers Aws Offering Response Kinesis To S3 - The kinesis to s3 connection configuration
- kubernetes
Scuba DefenderReader For Containers Aws Offering Response Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- kubernetes
Service DefenderFor Containers Aws Offering Response Kubernetes Service - The kubernetes service connection 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
- kinesis_
to_ Defenders3 For Containers Aws Offering Response Kinesis To S3 - The kinesis to s3 connection configuration
- kubernetes_
scuba_ Defenderreader For Containers Aws Offering Response Kubernetes Scuba Reader - The kubernetes to scuba connection configuration
- kubernetes_
service DefenderFor Containers Aws Offering Response Kubernetes Service - The kubernetes service connection configuration
- description String
- The offering description.
- cloud
Watch Property MapTo Kinesis - The cloudwatch to kinesis connection configuration
- kinesis
To Property MapS3 - The kinesis to s3 connection configuration
- kubernetes
Scuba Property MapReader - The kubernetes to scuba connection configuration
- kubernetes
Service Property Map - The kubernetes service connection configuration
DefenderForContainersAwsOfferingResponseCloudWatchToKinesis, DefenderForContainersAwsOfferingResponseCloudWatchToKinesisArgs
- 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
DefenderForContainersAwsOfferingResponseKinesisToS3, DefenderForContainersAwsOfferingResponseKinesisToS3Args
- 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
DefenderForContainersAwsOfferingResponseKubernetesScubaReader, DefenderForContainersAwsOfferingResponseKubernetesScubaReaderArgs
- 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
DefenderForContainersAwsOfferingResponseKubernetesService, DefenderForContainersAwsOfferingResponseKubernetesServiceArgs
- 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
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
- 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
- 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
- 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
- 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
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- defender
For Property MapServers - The Defender for servers connection configuration
DefenderForServersAwsOfferingArcAutoProvisioning, DefenderForServersAwsOfferingArcAutoProvisioningArgs
- Enabled bool
- Is arc auto provisioning enabled
- Service
Principal Pulumi.Secret Metadata Azure Native. Security. Inputs. Defender For Servers Aws Offering Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- Enabled bool
- Is arc auto provisioning enabled
- Service
Principal DefenderSecret Metadata For Servers Aws Offering Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- enabled Boolean
- Is arc auto provisioning enabled
- service
Principal DefenderSecret Metadata For Servers Aws Offering Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- enabled boolean
- Is arc auto provisioning enabled
- service
Principal DefenderSecret Metadata For Servers Aws Offering Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- enabled bool
- Is arc auto provisioning enabled
- service_
principal_ Defendersecret_ metadata For Servers Aws Offering Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- enabled Boolean
- Is arc auto provisioning enabled
- service
Principal Property MapSecret Metadata - Metadata of Service Principal secret for autoprovisioning
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
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
- 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
- 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
- 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
- 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
- description String
- The offering description.
- arc
Auto Property MapProvisioning - The ARC autoprovisioning configuration
- defender
For Property MapServers - The Defender for servers connection configuration
DefenderForServersAwsOfferingResponseArcAutoProvisioning, DefenderForServersAwsOfferingResponseArcAutoProvisioningArgs
- Enabled bool
- Is arc auto provisioning enabled
- Service
Principal Pulumi.Secret Metadata Azure Native. Security. Inputs. Defender For Servers Aws Offering Response Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- Enabled bool
- Is arc auto provisioning enabled
- Service
Principal DefenderSecret Metadata For Servers Aws Offering Response Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- enabled Boolean
- Is arc auto provisioning enabled
- service
Principal DefenderSecret Metadata For Servers Aws Offering Response Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- enabled boolean
- Is arc auto provisioning enabled
- service
Principal DefenderSecret Metadata For Servers Aws Offering Response Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- enabled bool
- Is arc auto provisioning enabled
- service_
principal_ Defendersecret_ metadata For Servers Aws Offering Response Service Principal Secret Metadata - Metadata of Service Principal secret for autoprovisioning
- enabled Boolean
- Is arc auto provisioning enabled
- service
Principal Property MapSecret Metadata - Metadata of Service Principal secret for autoprovisioning
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
DefenderForServersAwsOfferingResponseServicePrincipalSecretMetadata, DefenderForServersAwsOfferingResponseServicePrincipalSecretMetadataArgs
- Expiry
Date string - expiration date of service principal secret
- Parameter
Name stringIn Store - name of secret resource in parameter store
- Parameter
Store stringRegion - region of parameter store where secret is kept
- Expiry
Date string - expiration date of service principal secret
- Parameter
Name stringIn Store - name of secret resource in parameter store
- Parameter
Store stringRegion - region of parameter store where secret is kept
- expiry
Date String - expiration date of service principal secret
- parameter
Name StringIn Store - name of secret resource in parameter store
- parameter
Store StringRegion - region of parameter store where secret is kept
- expiry
Date string - expiration date of service principal secret
- parameter
Name stringIn Store - name of secret resource in parameter store
- parameter
Store stringRegion - region of parameter store where secret is kept
- expiry_
date str - expiration date of service principal secret
- parameter_
name_ strin_ store - name of secret resource in parameter store
- parameter_
store_ strregion - region of parameter store where secret is kept
- expiry
Date String - expiration date of service principal secret
- parameter
Name StringIn Store - name of secret resource in parameter store
- parameter
Store StringRegion - region of parameter store where secret is kept
DefenderForServersAwsOfferingServicePrincipalSecretMetadata, DefenderForServersAwsOfferingServicePrincipalSecretMetadataArgs
- Expiry
Date string - expiration date of service principal secret
- Parameter
Name stringIn Store - name of secret resource in parameter store
- Parameter
Store stringRegion - region of parameter store where secret is kept
- Expiry
Date string - expiration date of service principal secret
- Parameter
Name stringIn Store - name of secret resource in parameter store
- Parameter
Store stringRegion - region of parameter store where secret is kept
- expiry
Date String - expiration date of service principal secret
- parameter
Name StringIn Store - name of secret resource in parameter store
- parameter
Store StringRegion - region of parameter store where secret is kept
- expiry
Date string - expiration date of service principal secret
- parameter
Name stringIn Store - name of secret resource in parameter store
- parameter
Store stringRegion - region of parameter store where secret is kept
- expiry_
date str - expiration date of service principal secret
- parameter_
name_ strin_ store - name of secret resource in parameter store
- parameter_
store_ strregion - region of parameter store where secret is kept
- expiry
Date String - expiration date of service principal secret
- parameter
Name StringIn Store - name of secret resource in parameter store
- parameter
Store StringRegion - region of parameter store where secret is kept
InformationProtectionAwsOffering, InformationProtectionAwsOfferingArgs
- Information
Protection Pulumi.Azure Native. Security. Inputs. Information Protection Aws Offering Information Protection - The native cloud connection configuration
- Information
Protection InformationProtection Aws Offering Information Protection - The native cloud connection configuration
- information
Protection InformationProtection Aws Offering Information Protection - The native cloud connection configuration
- information
Protection InformationProtection Aws Offering Information Protection - The native cloud connection configuration
- information_
protection InformationProtection Aws Offering Information Protection - The native cloud connection configuration
- information
Protection Property Map - The native cloud connection configuration
InformationProtectionAwsOfferingInformationProtection, InformationProtectionAwsOfferingInformationProtectionArgs
- 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
InformationProtectionAwsOfferingResponse, InformationProtectionAwsOfferingResponseArgs
- Description string
- The offering description.
- Information
Protection Pulumi.Azure Native. Security. Inputs. Information Protection Aws Offering Response Information Protection - The native cloud connection configuration
- Description string
- The offering description.
- Information
Protection InformationProtection Aws Offering Response Information Protection - The native cloud connection configuration
- description String
- The offering description.
- information
Protection InformationProtection Aws Offering Response Information Protection - The native cloud connection configuration
- description string
- The offering description.
- information
Protection InformationProtection Aws Offering Response Information Protection - The native cloud connection configuration
- description str
- The offering description.
- information_
protection InformationProtection Aws Offering Response Information Protection - The native cloud connection configuration
- description String
- The offering description.
- information
Protection Property Map - The native cloud connection configuration
InformationProtectionAwsOfferingResponseInformationProtection, InformationProtectionAwsOfferingResponseInformationProtectionArgs
- 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
OrganizationMembershipType, OrganizationMembershipTypeArgs
- Member
- Member
- Organization
- Organization
- Organization
Membership Type Member - Member
- Organization
Membership Type Organization - Organization
- Member
- Member
- Organization
- Organization
- Member
- Member
- Organization
- Organization
- MEMBER
- Member
- ORGANIZATION
- Organization
- "Member"
- Member
- "Organization"
- Organization
SecurityConnectorPropertiesOrganizationalData, SecurityConnectorPropertiesOrganizationalDataArgs
- Excluded
Account List<string>Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Organization
Membership string | Pulumi.Type Azure Native. Security. Organization Membership Type - The multi cloud account's membership type in the organization
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- Organization
Membership string | OrganizationType Membership Type - The multi cloud account's membership type in the organization
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- organization
Membership String | OrganizationType Membership Type - The multi cloud account's membership type in the organization
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- organization
Membership string | OrganizationType Membership Type - The multi cloud account's membership type in the organization
- parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- organization_
membership_ str | Organizationtype Membership Type - The multi cloud account's membership type in the organization
- parent_
hierarchy_ strid - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- organization
Membership String | "Member" | "Organization"Type - The multi cloud account's membership type in the organization
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- stackset
Name String - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
SecurityConnectorPropertiesResponseOrganizationalData, SecurityConnectorPropertiesResponseOrganizationalDataArgs
- Excluded
Account List<string>Ids - If the multi cloud account is of membership type organization, list of accounts excluded from offering
- Organization
Membership stringType - The multi cloud account's membership type in the organization
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- Organization
Membership stringType - The multi cloud account's membership type in the organization
- Parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- organization
Membership StringType - The multi cloud account's membership type in the organization
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- organization
Membership stringType - The multi cloud account's membership type in the organization
- parent
Hierarchy stringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- organization_
membership_ strtype - The multi cloud account's membership type in the organization
- parent_
hierarchy_ strid - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- 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
- organization
Membership StringType - The multi cloud account's membership type in the organization
- parent
Hierarchy StringId - If the multi cloud account is not of membership type organization, this will be the ID of the account's parent
- stackset
Name String - If the multi cloud account is of membership type organization, this will be the name of the onboarding stackset
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.
Import
An existing resource can be imported using its type token, name, and identifier, e.g.
$ pulumi import azure-native:security:SecurityConnector exampleSecurityConnectorName /subscriptions/a5caac9c-5c04-49af-b3d0-e204f40345d5/resourceGroups/exampleResourceGroup/providers/Microsoft.Security/securityConnectors/exampleSecurityConnectorName
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- azure-native-v1 pulumi/pulumi-azure-native
- License
- Apache-2.0