1. Packages
  2. Azure Native
  3. API Docs
  4. securityinsights
  5. System
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

azure-native.securityinsights.System

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi

    Describes the system within the agent. Azure REST API version: 2024-04-01-preview.

    Example Usage

    Systems_CreateOrUpdate

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var system = new AzureNative.SecurityInsights.System("system", new()
        {
            AgentResourceName = "3123432b-0b60-4af3-8720-77f01a25d34a",
            Configuration = new AzureNative.SecurityInsights.Inputs.SapSystemsConfigurationArgs
            {
                AzureResourceId = "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace",
                Connector = new AzureNative.SecurityInsights.Inputs.RfcConnectorArgs
                {
                    AbapServerHost = "1.1.1.1",
                    AuthenticationType = AzureNative.SecurityInsights.SapAuthenticationType.UsernamePassword,
                    Client = "001",
                    SystemId = "A4H",
                    SystemNumber = "001",
                    Type = "Rfc",
                },
                Logs = new[]
                {
                    new AzureNative.SecurityInsights.Inputs.LogArgs
                    {
                        BulkSize = 100,
                        Filters = new[]
                        {
                            "filter1",
                            "filter2",
                        },
                        IngestionType = AzureNative.SecurityInsights.IngestionType.Incremental,
                        ScheduleInterval = 60,
                        Status = AzureNative.SecurityInsights.LogStatusType.Enabled,
                        Type = AzureNative.SecurityInsights.LogType.AbapAuditLog,
                    },
                    new AzureNative.SecurityInsights.Inputs.LogArgs
                    {
                        BulkSize = 100,
                        Filters = new[]
                        {
                            "filter1",
                            "filter2",
                        },
                        IngestionType = AzureNative.SecurityInsights.IngestionType.Incremental,
                        ScheduleInterval = 60,
                        Status = AzureNative.SecurityInsights.LogStatusType.Enabled,
                        Type = AzureNative.SecurityInsights.LogType.USR01,
                    },
                },
                Type = "SAP",
            },
            DisplayName = "A4H_System",
            ResourceGroupName = "myRg",
            Status = AzureNative.SecurityInsights.SystemStatusType.Running,
            SystemResourceName = "3d69632b-0b60-4af3-8720-77f01a25d34a",
            WorkspaceName = "myWorkspace",
        });
    
    });
    
    package main
    
    import (
    	securityinsights "github.com/pulumi/pulumi-azure-native-sdk/securityinsights/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := securityinsights.NewSystem(ctx, "system", &securityinsights.SystemArgs{
    			AgentResourceName: pulumi.String("3123432b-0b60-4af3-8720-77f01a25d34a"),
    			Configuration: &securityinsights.SapSystemsConfigurationArgs{
    				AzureResourceId: pulumi.String("/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace"),
    				Connector: securityinsights.RfcConnector{
    					AbapServerHost:     "1.1.1.1",
    					AuthenticationType: securityinsights.SapAuthenticationTypeUsernamePassword,
    					Client:             "001",
    					SystemId:           "A4H",
    					SystemNumber:       "001",
    					Type:               "Rfc",
    				},
    				Logs: securityinsights.LogArray{
    					&securityinsights.LogArgs{
    						BulkSize: pulumi.Int(100),
    						Filters: pulumi.StringArray{
    							pulumi.String("filter1"),
    							pulumi.String("filter2"),
    						},
    						IngestionType:    pulumi.String(securityinsights.IngestionTypeIncremental),
    						ScheduleInterval: pulumi.Int(60),
    						Status:           pulumi.String(securityinsights.LogStatusTypeEnabled),
    						Type:             pulumi.String(securityinsights.LogTypeAbapAuditLog),
    					},
    					&securityinsights.LogArgs{
    						BulkSize: pulumi.Int(100),
    						Filters: pulumi.StringArray{
    							pulumi.String("filter1"),
    							pulumi.String("filter2"),
    						},
    						IngestionType:    pulumi.String(securityinsights.IngestionTypeIncremental),
    						ScheduleInterval: pulumi.Int(60),
    						Status:           pulumi.String(securityinsights.LogStatusTypeEnabled),
    						Type:             pulumi.String(securityinsights.LogTypeUSR01),
    					},
    				},
    				Type: pulumi.String("SAP"),
    			},
    			DisplayName:        pulumi.String("A4H_System"),
    			ResourceGroupName:  pulumi.String("myRg"),
    			Status:             pulumi.String(securityinsights.SystemStatusTypeRunning),
    			SystemResourceName: pulumi.String("3d69632b-0b60-4af3-8720-77f01a25d34a"),
    			WorkspaceName:      pulumi.String("myWorkspace"),
    		})
    		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.securityinsights.System;
    import com.pulumi.azurenative.securityinsights.SystemArgs;
    import com.pulumi.azurenative.securityinsights.inputs.SapSystemsConfigurationArgs;
    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 system = new System("system", SystemArgs.builder()
                .agentResourceName("3123432b-0b60-4af3-8720-77f01a25d34a")
                .configuration(SapSystemsConfigurationArgs.builder()
                    .azureResourceId("/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace")
                    .connector(RfcConnectorArgs.builder()
                        .abapServerHost("1.1.1.1")
                        .authenticationType("UsernamePassword")
                        .client("001")
                        .systemId("A4H")
                        .systemNumber("001")
                        .type("Rfc")
                        .build())
                    .logs(                
                        LogArgs.builder()
                            .bulkSize(100)
                            .filters(                        
                                "filter1",
                                "filter2")
                            .ingestionType("Incremental")
                            .scheduleInterval(60)
                            .status("Enabled")
                            .type("AbapAuditLog")
                            .build(),
                        LogArgs.builder()
                            .bulkSize(100)
                            .filters(                        
                                "filter1",
                                "filter2")
                            .ingestionType("Incremental")
                            .scheduleInterval(60)
                            .status("Enabled")
                            .type("USR01")
                            .build())
                    .type("SAP")
                    .build())
                .displayName("A4H_System")
                .resourceGroupName("myRg")
                .status("Running")
                .systemResourceName("3d69632b-0b60-4af3-8720-77f01a25d34a")
                .workspaceName("myWorkspace")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    system = azure_native.securityinsights.System("system",
        agent_resource_name="3123432b-0b60-4af3-8720-77f01a25d34a",
        configuration={
            "azure_resource_id": "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace",
            "connector": {
                "abap_server_host": "1.1.1.1",
                "authentication_type": azure_native.securityinsights.SapAuthenticationType.USERNAME_PASSWORD,
                "client": "001",
                "system_id": "A4H",
                "system_number": "001",
                "type": "Rfc",
            },
            "logs": [
                {
                    "bulk_size": 100,
                    "filters": [
                        "filter1",
                        "filter2",
                    ],
                    "ingestion_type": azure_native.securityinsights.IngestionType.INCREMENTAL,
                    "schedule_interval": 60,
                    "status": azure_native.securityinsights.LogStatusType.ENABLED,
                    "type": azure_native.securityinsights.LogType.ABAP_AUDIT_LOG,
                },
                {
                    "bulk_size": 100,
                    "filters": [
                        "filter1",
                        "filter2",
                    ],
                    "ingestion_type": azure_native.securityinsights.IngestionType.INCREMENTAL,
                    "schedule_interval": 60,
                    "status": azure_native.securityinsights.LogStatusType.ENABLED,
                    "type": azure_native.securityinsights.LogType.USR01,
                },
            ],
            "type": "SAP",
        },
        display_name="A4H_System",
        resource_group_name="myRg",
        status=azure_native.securityinsights.SystemStatusType.RUNNING,
        system_resource_name="3d69632b-0b60-4af3-8720-77f01a25d34a",
        workspace_name="myWorkspace")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const system = new azure_native.securityinsights.System("system", {
        agentResourceName: "3123432b-0b60-4af3-8720-77f01a25d34a",
        configuration: {
            azureResourceId: "/subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace",
            connector: {
                abapServerHost: "1.1.1.1",
                authenticationType: azure_native.securityinsights.SapAuthenticationType.UsernamePassword,
                client: "001",
                systemId: "A4H",
                systemNumber: "001",
                type: "Rfc",
            },
            logs: [
                {
                    bulkSize: 100,
                    filters: [
                        "filter1",
                        "filter2",
                    ],
                    ingestionType: azure_native.securityinsights.IngestionType.Incremental,
                    scheduleInterval: 60,
                    status: azure_native.securityinsights.LogStatusType.Enabled,
                    type: azure_native.securityinsights.LogType.AbapAuditLog,
                },
                {
                    bulkSize: 100,
                    filters: [
                        "filter1",
                        "filter2",
                    ],
                    ingestionType: azure_native.securityinsights.IngestionType.Incremental,
                    scheduleInterval: 60,
                    status: azure_native.securityinsights.LogStatusType.Enabled,
                    type: azure_native.securityinsights.LogType.USR01,
                },
            ],
            type: "SAP",
        },
        displayName: "A4H_System",
        resourceGroupName: "myRg",
        status: azure_native.securityinsights.SystemStatusType.Running,
        systemResourceName: "3d69632b-0b60-4af3-8720-77f01a25d34a",
        workspaceName: "myWorkspace",
    });
    
    resources:
      system:
        type: azure-native:securityinsights:System
        properties:
          agentResourceName: 3123432b-0b60-4af3-8720-77f01a25d34a
          configuration:
            azureResourceId: /subscriptions/d0cfe6b2-9ac0-4464-9919-dccaee2e48c0/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace
            connector:
              abapServerHost: 1.1.1.1
              authenticationType: UsernamePassword
              client: '001'
              systemId: A4H
              systemNumber: '001'
              type: Rfc
            logs:
              - bulkSize: 100
                filters:
                  - filter1
                  - filter2
                ingestionType: Incremental
                scheduleInterval: 60
                status: Enabled
                type: AbapAuditLog
              - bulkSize: 100
                filters:
                  - filter1
                  - filter2
                ingestionType: Incremental
                scheduleInterval: 60
                status: Enabled
                type: USR01
            type: SAP
          displayName: A4H_System
          resourceGroupName: myRg
          status: Running
          systemResourceName: 3d69632b-0b60-4af3-8720-77f01a25d34a
          workspaceName: myWorkspace
    

    Create System Resource

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

    Constructor syntax

    new System(name: string, args: SystemArgs, opts?: CustomResourceOptions);
    @overload
    def System(resource_name: str,
               args: SystemArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def System(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               agent_resource_name: Optional[str] = None,
               configuration: Optional[SapSystemsConfigurationArgs] = None,
               display_name: Optional[str] = None,
               resource_group_name: Optional[str] = None,
               workspace_name: Optional[str] = None,
               status: Optional[Union[str, SystemStatusType]] = None,
               system_resource_name: Optional[str] = None)
    func NewSystem(ctx *Context, name string, args SystemArgs, opts ...ResourceOption) (*System, error)
    public System(string name, SystemArgs args, CustomResourceOptions? opts = null)
    public System(String name, SystemArgs args)
    public System(String name, SystemArgs args, CustomResourceOptions options)
    
    type: azure-native:securityinsights:System
    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 SystemArgs
    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 SystemArgs
    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 SystemArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemArgs
    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 systemResource = new AzureNative.SecurityInsights.System("systemResource", new()
    {
        AgentResourceName = "string",
        Configuration = new AzureNative.SecurityInsights.Inputs.SapSystemsConfigurationArgs
        {
            Connector = new AzureNative.SecurityInsights.Inputs.RfcConnectorArgs
            {
                Client = "string",
                SystemId = "string",
                SystemNumber = "string",
                Type = "Rfc",
                AbapServerHost = "string",
                AuthenticationType = "string",
                CodePage = "string",
                Group = "string",
                MessageServerHost = "string",
                MessageServerService = "string",
                SncQop = "string",
            },
            Type = "SAP",
            AzureResourceId = "string",
            Logs = new[]
            {
                new AzureNative.SecurityInsights.Inputs.LogArgs
                {
                    Type = "string",
                    BulkSize = 0,
                    Filters = new[]
                    {
                        "string",
                    },
                    IngestionType = "string",
                    ScheduleInterval = 0,
                    Status = "string",
                },
            },
        },
        DisplayName = "string",
        ResourceGroupName = "string",
        WorkspaceName = "string",
        Status = "string",
        SystemResourceName = "string",
    });
    
    example, err := securityinsights.NewSystem(ctx, "systemResource", &securityinsights.SystemArgs{
    	AgentResourceName: pulumi.String("string"),
    	Configuration: &securityinsights.SapSystemsConfigurationArgs{
    		Connector: securityinsights.RfcConnector{
    			Client:               "string",
    			SystemId:             "string",
    			SystemNumber:         "string",
    			Type:                 "Rfc",
    			AbapServerHost:       "string",
    			AuthenticationType:   "string",
    			CodePage:             "string",
    			Group:                "string",
    			MessageServerHost:    "string",
    			MessageServerService: "string",
    			SncQop:               "string",
    		},
    		Type:            pulumi.String("SAP"),
    		AzureResourceId: pulumi.String("string"),
    		Logs: securityinsights.LogArray{
    			&securityinsights.LogArgs{
    				Type:     pulumi.String("string"),
    				BulkSize: pulumi.Int(0),
    				Filters: pulumi.StringArray{
    					pulumi.String("string"),
    				},
    				IngestionType:    pulumi.String("string"),
    				ScheduleInterval: pulumi.Int(0),
    				Status:           pulumi.String("string"),
    			},
    		},
    	},
    	DisplayName:        pulumi.String("string"),
    	ResourceGroupName:  pulumi.String("string"),
    	WorkspaceName:      pulumi.String("string"),
    	Status:             pulumi.String("string"),
    	SystemResourceName: pulumi.String("string"),
    })
    
    var systemResource = new System("systemResource", SystemArgs.builder()
        .agentResourceName("string")
        .configuration(SapSystemsConfigurationArgs.builder()
            .connector(RfcConnectorArgs.builder()
                .client("string")
                .systemId("string")
                .systemNumber("string")
                .type("Rfc")
                .abapServerHost("string")
                .authenticationType("string")
                .codePage("string")
                .group("string")
                .messageServerHost("string")
                .messageServerService("string")
                .sncQop("string")
                .build())
            .type("SAP")
            .azureResourceId("string")
            .logs(LogArgs.builder()
                .type("string")
                .bulkSize(0)
                .filters("string")
                .ingestionType("string")
                .scheduleInterval(0)
                .status("string")
                .build())
            .build())
        .displayName("string")
        .resourceGroupName("string")
        .workspaceName("string")
        .status("string")
        .systemResourceName("string")
        .build());
    
    system_resource = azure_native.securityinsights.System("systemResource",
        agent_resource_name="string",
        configuration={
            "connector": {
                "client": "string",
                "system_id": "string",
                "system_number": "string",
                "type": "Rfc",
                "abap_server_host": "string",
                "authentication_type": "string",
                "code_page": "string",
                "group": "string",
                "message_server_host": "string",
                "message_server_service": "string",
                "snc_qop": "string",
            },
            "type": "SAP",
            "azure_resource_id": "string",
            "logs": [{
                "type": "string",
                "bulk_size": 0,
                "filters": ["string"],
                "ingestion_type": "string",
                "schedule_interval": 0,
                "status": "string",
            }],
        },
        display_name="string",
        resource_group_name="string",
        workspace_name="string",
        status="string",
        system_resource_name="string")
    
    const systemResource = new azure_native.securityinsights.System("systemResource", {
        agentResourceName: "string",
        configuration: {
            connector: {
                client: "string",
                systemId: "string",
                systemNumber: "string",
                type: "Rfc",
                abapServerHost: "string",
                authenticationType: "string",
                codePage: "string",
                group: "string",
                messageServerHost: "string",
                messageServerService: "string",
                sncQop: "string",
            },
            type: "SAP",
            azureResourceId: "string",
            logs: [{
                type: "string",
                bulkSize: 0,
                filters: ["string"],
                ingestionType: "string",
                scheduleInterval: 0,
                status: "string",
            }],
        },
        displayName: "string",
        resourceGroupName: "string",
        workspaceName: "string",
        status: "string",
        systemResourceName: "string",
    });
    
    type: azure-native:securityinsights:System
    properties:
        agentResourceName: string
        configuration:
            azureResourceId: string
            connector:
                abapServerHost: string
                authenticationType: string
                client: string
                codePage: string
                group: string
                messageServerHost: string
                messageServerService: string
                sncQop: string
                systemId: string
                systemNumber: string
                type: Rfc
            logs:
                - bulkSize: 0
                  filters:
                    - string
                  ingestionType: string
                  scheduleInterval: 0
                  status: string
                  type: string
            type: SAP
        displayName: string
        resourceGroupName: string
        status: string
        systemResourceName: string
        workspaceName: string
    

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

    AgentResourceName string
    Business Application Agent Name
    Configuration Pulumi.AzureNative.SecurityInsights.Inputs.SapSystemsConfiguration
    The configuration of the system.
    DisplayName string
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    WorkspaceName string
    The name of the workspace.
    Status string | Pulumi.AzureNative.SecurityInsights.SystemStatusType
    The status of the system.
    SystemResourceName string
    The name of the system.
    AgentResourceName string
    Business Application Agent Name
    Configuration SapSystemsConfigurationArgs
    The configuration of the system.
    DisplayName string
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    WorkspaceName string
    The name of the workspace.
    Status string | SystemStatusType
    The status of the system.
    SystemResourceName string
    The name of the system.
    agentResourceName String
    Business Application Agent Name
    configuration SapSystemsConfiguration
    The configuration of the system.
    displayName String
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    workspaceName String
    The name of the workspace.
    status String | SystemStatusType
    The status of the system.
    systemResourceName String
    The name of the system.
    agentResourceName string
    Business Application Agent Name
    configuration SapSystemsConfiguration
    The configuration of the system.
    displayName string
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    workspaceName string
    The name of the workspace.
    status string | SystemStatusType
    The status of the system.
    systemResourceName string
    The name of the system.
    agent_resource_name str
    Business Application Agent Name
    configuration SapSystemsConfigurationArgs
    The configuration of the system.
    display_name str
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    workspace_name str
    The name of the workspace.
    status str | SystemStatusType
    The status of the system.
    system_resource_name str
    The name of the system.
    agentResourceName String
    Business Application Agent Name
    configuration Property Map
    The configuration of the system.
    displayName String
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    workspaceName String
    The name of the workspace.
    status String | "Running" | "Stopped"
    The status of the system.
    systemResourceName String
    The name of the system.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedTimeUtc string
    Name string
    The name of the resource
    SystemData Pulumi.AzureNative.SecurityInsights.Outputs.SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Etag string
    Etag of the azure resource
    Id string
    The provider-assigned unique ID for this managed resource.
    LastModifiedTimeUtc string
    Name string
    The name of the resource
    SystemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    Type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    Etag string
    Etag of the azure resource
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedTimeUtc String
    name String
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag String
    Etag of the azure resource
    id string
    The provider-assigned unique ID for this managed resource.
    lastModifiedTimeUtc string
    name string
    The name of the resource
    systemData SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type string
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag string
    Etag of the azure resource
    id str
    The provider-assigned unique ID for this managed resource.
    last_modified_time_utc str
    name str
    The name of the resource
    system_data SystemDataResponse
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type str
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag str
    Etag of the azure resource
    id String
    The provider-assigned unique ID for this managed resource.
    lastModifiedTimeUtc String
    name String
    The name of the resource
    systemData Property Map
    Azure Resource Manager metadata containing createdBy and modifiedBy information.
    type String
    The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
    etag String
    Etag of the azure resource

    Supporting Types

    HttpsConfigurationType, HttpsConfigurationTypeArgs

    HttpOnly
    HttpOnly
    HttpsWithSslVerification
    HttpsWithSslVerification
    HttpsWithoutSslVerification
    HttpsWithoutSslVerification
    HttpsConfigurationTypeHttpOnly
    HttpOnly
    HttpsConfigurationTypeHttpsWithSslVerification
    HttpsWithSslVerification
    HttpsConfigurationTypeHttpsWithoutSslVerification
    HttpsWithoutSslVerification
    HttpOnly
    HttpOnly
    HttpsWithSslVerification
    HttpsWithSslVerification
    HttpsWithoutSslVerification
    HttpsWithoutSslVerification
    HttpOnly
    HttpOnly
    HttpsWithSslVerification
    HttpsWithSslVerification
    HttpsWithoutSslVerification
    HttpsWithoutSslVerification
    HTTP_ONLY
    HttpOnly
    HTTPS_WITH_SSL_VERIFICATION
    HttpsWithSslVerification
    HTTPS_WITHOUT_SSL_VERIFICATION
    HttpsWithoutSslVerification
    "HttpOnly"
    HttpOnly
    "HttpsWithSslVerification"
    HttpsWithSslVerification
    "HttpsWithoutSslVerification"
    HttpsWithoutSslVerification

    IngestionType, IngestionTypeArgs

    Full
    Full
    Incremental
    Incremental
    IngestionTypeFull
    Full
    IngestionTypeIncremental
    Incremental
    Full
    Full
    Incremental
    Incremental
    Full
    Full
    Incremental
    Incremental
    FULL
    Full
    INCREMENTAL
    Incremental
    "Full"
    Full
    "Incremental"
    Incremental

    Log, LogArgs

    Type string | Pulumi.AzureNative.SecurityInsights.LogType
    Types of logs and tables.
    BulkSize int
    The bulk size for the log.
    Filters List<string>
    The filters for the log.
    IngestionType string | Pulumi.AzureNative.SecurityInsights.IngestionType
    Types of ingestion.
    ScheduleInterval int
    The schedule interval in seconds.
    Status string | Pulumi.AzureNative.SecurityInsights.LogStatusType
    Types of log status.
    Type string | LogType
    Types of logs and tables.
    BulkSize int
    The bulk size for the log.
    Filters []string
    The filters for the log.
    IngestionType string | IngestionType
    Types of ingestion.
    ScheduleInterval int
    The schedule interval in seconds.
    Status string | LogStatusType
    Types of log status.
    type String | LogType
    Types of logs and tables.
    bulkSize Integer
    The bulk size for the log.
    filters List<String>
    The filters for the log.
    ingestionType String | IngestionType
    Types of ingestion.
    scheduleInterval Integer
    The schedule interval in seconds.
    status String | LogStatusType
    Types of log status.
    type string | LogType
    Types of logs and tables.
    bulkSize number
    The bulk size for the log.
    filters string[]
    The filters for the log.
    ingestionType string | IngestionType
    Types of ingestion.
    scheduleInterval number
    The schedule interval in seconds.
    status string | LogStatusType
    Types of log status.
    type str | LogType
    Types of logs and tables.
    bulk_size int
    The bulk size for the log.
    filters Sequence[str]
    The filters for the log.
    ingestion_type str | IngestionType
    Types of ingestion.
    schedule_interval int
    The schedule interval in seconds.
    status str | LogStatusType
    Types of log status.

    LogResponse, LogResponseArgs

    Type string
    Types of logs and tables.
    BulkSize int
    The bulk size for the log.
    Filters List<string>
    The filters for the log.
    IngestionType string
    Types of ingestion.
    ScheduleInterval int
    The schedule interval in seconds.
    Status string
    Types of log status.
    Type string
    Types of logs and tables.
    BulkSize int
    The bulk size for the log.
    Filters []string
    The filters for the log.
    IngestionType string
    Types of ingestion.
    ScheduleInterval int
    The schedule interval in seconds.
    Status string
    Types of log status.
    type String
    Types of logs and tables.
    bulkSize Integer
    The bulk size for the log.
    filters List<String>
    The filters for the log.
    ingestionType String
    Types of ingestion.
    scheduleInterval Integer
    The schedule interval in seconds.
    status String
    Types of log status.
    type string
    Types of logs and tables.
    bulkSize number
    The bulk size for the log.
    filters string[]
    The filters for the log.
    ingestionType string
    Types of ingestion.
    scheduleInterval number
    The schedule interval in seconds.
    status string
    Types of log status.
    type str
    Types of logs and tables.
    bulk_size int
    The bulk size for the log.
    filters Sequence[str]
    The filters for the log.
    ingestion_type str
    Types of ingestion.
    schedule_interval int
    The schedule interval in seconds.
    status str
    Types of log status.
    type String
    Types of logs and tables.
    bulkSize Number
    The bulk size for the log.
    filters List<String>
    The filters for the log.
    ingestionType String
    Types of ingestion.
    scheduleInterval Number
    The schedule interval in seconds.
    status String
    Types of log status.

    LogStatusType, LogStatusTypeArgs

    Enabled
    Enabled
    Disabled
    Disabled
    LogStatusTypeEnabled
    Enabled
    LogStatusTypeDisabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    Enabled
    Enabled
    Disabled
    Disabled
    ENABLED
    Enabled
    DISABLED
    Disabled
    "Enabled"
    Enabled
    "Disabled"
    Disabled

    LogType, LogTypeArgs

    AbapAuditLog
    AbapAuditLog
    AbapJobLog
    AbapJobLog
    AbapSpoolLog
    AbapSpoolLog
    AbapSpoolOutputLog
    AbapSpoolOutputLog
    AbapChangeDocsLog
    AbapChangeDocsLog
    AbapAppLog
    AbapAppLog
    AbapWorkflowLog
    AbapWorkflowLog
    AbapCrLog
    AbapCrLog
    AbapTableDataLog
    AbapTableDataLog
    AbapFilesLogs
    AbapFilesLogs
    JavaFilesLogs
    JavaFilesLogs
    AGRTCODES
    AGRTCODES
    USR01
    USR01
    USR02
    USR02
    AGR1251
    AGR1251
    AGRUSERS
    AGRUSERS
    AGRPROF
    AGRPROF
    UST04
    UST04
    USR21
    USR21
    ADR6
    ADR6
    ADCP
    ADCP
    USR05
    USR05
    USGRPUSER
    USGRPUSER
    USERADDR
    USERADDR
    DEVACCESS
    DEVACCESS
    AGRDEFINE
    AGRDEFINE
    PAHI
    PAHI
    AGRAGRS
    AGRAGRS
    USRSTAMP
    USRSTAMP
    AGRFLAGS
    AGRFLAGS
    SNCSYSACL
    SNCSYSACL
    USRACL
    USRACL
    LogTypeAbapAuditLog
    AbapAuditLog
    LogTypeAbapJobLog
    AbapJobLog
    LogTypeAbapSpoolLog
    AbapSpoolLog
    LogTypeAbapSpoolOutputLog
    AbapSpoolOutputLog
    LogTypeAbapChangeDocsLog
    AbapChangeDocsLog
    LogTypeAbapAppLog
    AbapAppLog
    LogTypeAbapWorkflowLog
    AbapWorkflowLog
    LogTypeAbapCrLog
    AbapCrLog
    LogTypeAbapTableDataLog
    AbapTableDataLog
    LogTypeAbapFilesLogs
    AbapFilesLogs
    LogTypeJavaFilesLogs
    JavaFilesLogs
    LogTypeAGRTCODES
    AGRTCODES
    LogTypeUSR01
    USR01
    LogTypeUSR02
    USR02
    LogTypeAGR1251
    AGR1251
    LogTypeAGRUSERS
    AGRUSERS
    LogTypeAGRPROF
    AGRPROF
    LogTypeUST04
    UST04
    LogTypeUSR21
    USR21
    LogTypeADR6
    ADR6
    LogTypeADCP
    ADCP
    LogTypeUSR05
    USR05
    LogTypeUSGRPUSER
    USGRPUSER
    LogTypeUSERADDR
    USERADDR
    LogTypeDEVACCESS
    DEVACCESS
    LogTypeAGRDEFINE
    AGRDEFINE
    LogTypePAHI
    PAHI
    LogTypeAGRAGRS
    AGRAGRS
    LogTypeUSRSTAMP
    USRSTAMP
    LogTypeAGRFLAGS
    AGRFLAGS
    LogTypeSNCSYSACL
    SNCSYSACL
    LogTypeUSRACL
    USRACL
    AbapAuditLog
    AbapAuditLog
    AbapJobLog
    AbapJobLog
    AbapSpoolLog
    AbapSpoolLog
    AbapSpoolOutputLog
    AbapSpoolOutputLog
    AbapChangeDocsLog
    AbapChangeDocsLog
    AbapAppLog
    AbapAppLog
    AbapWorkflowLog
    AbapWorkflowLog
    AbapCrLog
    AbapCrLog
    AbapTableDataLog
    AbapTableDataLog
    AbapFilesLogs
    AbapFilesLogs
    JavaFilesLogs
    JavaFilesLogs
    AGRTCODES
    AGRTCODES
    USR01
    USR01
    USR02
    USR02
    AGR1251
    AGR1251
    AGRUSERS
    AGRUSERS
    AGRPROF
    AGRPROF
    UST04
    UST04
    USR21
    USR21
    ADR6
    ADR6
    ADCP
    ADCP
    USR05
    USR05
    USGRPUSER
    USGRPUSER
    USERADDR
    USERADDR
    DEVACCESS
    DEVACCESS
    AGRDEFINE
    AGRDEFINE
    PAHI
    PAHI
    AGRAGRS
    AGRAGRS
    USRSTAMP
    USRSTAMP
    AGRFLAGS
    AGRFLAGS
    SNCSYSACL
    SNCSYSACL
    USRACL
    USRACL
    AbapAuditLog
    AbapAuditLog
    AbapJobLog
    AbapJobLog
    AbapSpoolLog
    AbapSpoolLog
    AbapSpoolOutputLog
    AbapSpoolOutputLog
    AbapChangeDocsLog
    AbapChangeDocsLog
    AbapAppLog
    AbapAppLog
    AbapWorkflowLog
    AbapWorkflowLog
    AbapCrLog
    AbapCrLog
    AbapTableDataLog
    AbapTableDataLog
    AbapFilesLogs
    AbapFilesLogs
    JavaFilesLogs
    JavaFilesLogs
    AGRTCODES
    AGRTCODES
    USR01
    USR01
    USR02
    USR02
    AGR1251
    AGR1251
    AGRUSERS
    AGRUSERS
    AGRPROF
    AGRPROF
    UST04
    UST04
    USR21
    USR21
    ADR6
    ADR6
    ADCP
    ADCP
    USR05
    USR05
    USGRPUSER
    USGRPUSER
    USERADDR
    USERADDR
    DEVACCESS
    DEVACCESS
    AGRDEFINE
    AGRDEFINE
    PAHI
    PAHI
    AGRAGRS
    AGRAGRS
    USRSTAMP
    USRSTAMP
    AGRFLAGS
    AGRFLAGS
    SNCSYSACL
    SNCSYSACL
    USRACL
    USRACL
    ABAP_AUDIT_LOG
    AbapAuditLog
    ABAP_JOB_LOG
    AbapJobLog
    ABAP_SPOOL_LOG
    AbapSpoolLog
    ABAP_SPOOL_OUTPUT_LOG
    AbapSpoolOutputLog
    ABAP_CHANGE_DOCS_LOG
    AbapChangeDocsLog
    ABAP_APP_LOG
    AbapAppLog
    ABAP_WORKFLOW_LOG
    AbapWorkflowLog
    ABAP_CR_LOG
    AbapCrLog
    ABAP_TABLE_DATA_LOG
    AbapTableDataLog
    ABAP_FILES_LOGS
    AbapFilesLogs
    JAVA_FILES_LOGS
    JavaFilesLogs
    AGRTCODES
    AGRTCODES
    USR01
    USR01
    USR02
    USR02
    AGR1251
    AGR1251
    AGRUSERS
    AGRUSERS
    AGRPROF
    AGRPROF
    UST04
    UST04
    USR21
    USR21
    ADR6
    ADR6
    ADCP
    ADCP
    USR05
    USR05
    USGRPUSER
    USGRPUSER
    USERADDR
    USERADDR
    DEVACCESS
    DEVACCESS
    AGRDEFINE
    AGRDEFINE
    PAHI
    PAHI
    AGRAGRS
    AGRAGRS
    USRSTAMP
    USRSTAMP
    AGRFLAGS
    AGRFLAGS
    SNCSYSACL
    SNCSYSACL
    USRACL
    USRACL
    "AbapAuditLog"
    AbapAuditLog
    "AbapJobLog"
    AbapJobLog
    "AbapSpoolLog"
    AbapSpoolLog
    "AbapSpoolOutputLog"
    AbapSpoolOutputLog
    "AbapChangeDocsLog"
    AbapChangeDocsLog
    "AbapAppLog"
    AbapAppLog
    "AbapWorkflowLog"
    AbapWorkflowLog
    "AbapCrLog"
    AbapCrLog
    "AbapTableDataLog"
    AbapTableDataLog
    "AbapFilesLogs"
    AbapFilesLogs
    "JavaFilesLogs"
    JavaFilesLogs
    "AGRTCODES"
    AGRTCODES
    "USR01"
    USR01
    "USR02"
    USR02
    "AGR1251"
    AGR1251
    "AGRUSERS"
    AGRUSERS
    "AGRPROF"
    AGRPROF
    "UST04"
    UST04
    "USR21"
    USR21
    "ADR6"
    ADR6
    "ADCP"
    ADCP
    "USR05"
    USR05
    "USGRPUSER"
    USGRPUSER
    "USERADDR"
    USERADDR
    "DEVACCESS"
    DEVACCESS
    "AGRDEFINE"
    AGRDEFINE
    "PAHI"
    PAHI
    "AGRAGRS"
    AGRAGRS
    "USRSTAMP"
    USRSTAMP
    "AGRFLAGS"
    AGRFLAGS
    "SNCSYSACL"
    SNCSYSACL
    "USRACL"
    USRACL

    RfcConnector, RfcConnectorArgs

    Client string
    Client number of the ABAP server. Example - 001
    SystemId string
    System ID of the ABAP server. Example - A4H
    SystemNumber string
    System number of the ABAP server.
    AbapServerHost string
    FQDN, hostname, or IP address of the ABAP server.
    AuthenticationType string | Pulumi.AzureNative.SecurityInsights.SapAuthenticationType
    The authentication type to SAP.
    CodePage string
    The SAP code page used for character encoding. Example - 1100
    Group string
    Logon group of the message server.
    MessageServerHost string
    FQDN, hostname, or IP address of the Message server.
    MessageServerService string
    Port number, or service name (from /etc/services) of the message server.
    SncQop string
    SNC QOP. Options are 1, 2, 3, 8, 9.
    Client string
    Client number of the ABAP server. Example - 001
    SystemId string
    System ID of the ABAP server. Example - A4H
    SystemNumber string
    System number of the ABAP server.
    AbapServerHost string
    FQDN, hostname, or IP address of the ABAP server.
    AuthenticationType string | SapAuthenticationType
    The authentication type to SAP.
    CodePage string
    The SAP code page used for character encoding. Example - 1100
    Group string
    Logon group of the message server.
    MessageServerHost string
    FQDN, hostname, or IP address of the Message server.
    MessageServerService string
    Port number, or service name (from /etc/services) of the message server.
    SncQop string
    SNC QOP. Options are 1, 2, 3, 8, 9.
    client String
    Client number of the ABAP server. Example - 001
    systemId String
    System ID of the ABAP server. Example - A4H
    systemNumber String
    System number of the ABAP server.
    abapServerHost String
    FQDN, hostname, or IP address of the ABAP server.
    authenticationType String | SapAuthenticationType
    The authentication type to SAP.
    codePage String
    The SAP code page used for character encoding. Example - 1100
    group String
    Logon group of the message server.
    messageServerHost String
    FQDN, hostname, or IP address of the Message server.
    messageServerService String
    Port number, or service name (from /etc/services) of the message server.
    sncQop String
    SNC QOP. Options are 1, 2, 3, 8, 9.
    client string
    Client number of the ABAP server. Example - 001
    systemId string
    System ID of the ABAP server. Example - A4H
    systemNumber string
    System number of the ABAP server.
    abapServerHost string
    FQDN, hostname, or IP address of the ABAP server.
    authenticationType string | SapAuthenticationType
    The authentication type to SAP.
    codePage string
    The SAP code page used for character encoding. Example - 1100
    group string
    Logon group of the message server.
    messageServerHost string
    FQDN, hostname, or IP address of the Message server.
    messageServerService string
    Port number, or service name (from /etc/services) of the message server.
    sncQop string
    SNC QOP. Options are 1, 2, 3, 8, 9.
    client str
    Client number of the ABAP server. Example - 001
    system_id str
    System ID of the ABAP server. Example - A4H
    system_number str
    System number of the ABAP server.
    abap_server_host str
    FQDN, hostname, or IP address of the ABAP server.
    authentication_type str | SapAuthenticationType
    The authentication type to SAP.
    code_page str
    The SAP code page used for character encoding. Example - 1100
    group str
    Logon group of the message server.
    message_server_host str
    FQDN, hostname, or IP address of the Message server.
    message_server_service str
    Port number, or service name (from /etc/services) of the message server.
    snc_qop str
    SNC QOP. Options are 1, 2, 3, 8, 9.
    client String
    Client number of the ABAP server. Example - 001
    systemId String
    System ID of the ABAP server. Example - A4H
    systemNumber String
    System number of the ABAP server.
    abapServerHost String
    FQDN, hostname, or IP address of the ABAP server.
    authenticationType String | "UsernamePassword" | "Snc" | "SncWithUsernamePassword"
    The authentication type to SAP.
    codePage String
    The SAP code page used for character encoding. Example - 1100
    group String
    Logon group of the message server.
    messageServerHost String
    FQDN, hostname, or IP address of the Message server.
    messageServerService String
    Port number, or service name (from /etc/services) of the message server.
    sncQop String
    SNC QOP. Options are 1, 2, 3, 8, 9.

    RfcConnectorResponse, RfcConnectorResponseArgs

    Client string
    Client number of the ABAP server. Example - 001
    SystemId string
    System ID of the ABAP server. Example - A4H
    SystemNumber string
    System number of the ABAP server.
    AbapServerHost string
    FQDN, hostname, or IP address of the ABAP server.
    AuthenticationType string
    The authentication type to SAP.
    CodePage string
    The SAP code page used for character encoding. Example - 1100
    Group string
    Logon group of the message server.
    MessageServerHost string
    FQDN, hostname, or IP address of the Message server.
    MessageServerService string
    Port number, or service name (from /etc/services) of the message server.
    SncQop string
    SNC QOP. Options are 1, 2, 3, 8, 9.
    Client string
    Client number of the ABAP server. Example - 001
    SystemId string
    System ID of the ABAP server. Example - A4H
    SystemNumber string
    System number of the ABAP server.
    AbapServerHost string
    FQDN, hostname, or IP address of the ABAP server.
    AuthenticationType string
    The authentication type to SAP.
    CodePage string
    The SAP code page used for character encoding. Example - 1100
    Group string
    Logon group of the message server.
    MessageServerHost string
    FQDN, hostname, or IP address of the Message server.
    MessageServerService string
    Port number, or service name (from /etc/services) of the message server.
    SncQop string
    SNC QOP. Options are 1, 2, 3, 8, 9.
    client String
    Client number of the ABAP server. Example - 001
    systemId String
    System ID of the ABAP server. Example - A4H
    systemNumber String
    System number of the ABAP server.
    abapServerHost String
    FQDN, hostname, or IP address of the ABAP server.
    authenticationType String
    The authentication type to SAP.
    codePage String
    The SAP code page used for character encoding. Example - 1100
    group String
    Logon group of the message server.
    messageServerHost String
    FQDN, hostname, or IP address of the Message server.
    messageServerService String
    Port number, or service name (from /etc/services) of the message server.
    sncQop String
    SNC QOP. Options are 1, 2, 3, 8, 9.
    client string
    Client number of the ABAP server. Example - 001
    systemId string
    System ID of the ABAP server. Example - A4H
    systemNumber string
    System number of the ABAP server.
    abapServerHost string
    FQDN, hostname, or IP address of the ABAP server.
    authenticationType string
    The authentication type to SAP.
    codePage string
    The SAP code page used for character encoding. Example - 1100
    group string
    Logon group of the message server.
    messageServerHost string
    FQDN, hostname, or IP address of the Message server.
    messageServerService string
    Port number, or service name (from /etc/services) of the message server.
    sncQop string
    SNC QOP. Options are 1, 2, 3, 8, 9.
    client str
    Client number of the ABAP server. Example - 001
    system_id str
    System ID of the ABAP server. Example - A4H
    system_number str
    System number of the ABAP server.
    abap_server_host str
    FQDN, hostname, or IP address of the ABAP server.
    authentication_type str
    The authentication type to SAP.
    code_page str
    The SAP code page used for character encoding. Example - 1100
    group str
    Logon group of the message server.
    message_server_host str
    FQDN, hostname, or IP address of the Message server.
    message_server_service str
    Port number, or service name (from /etc/services) of the message server.
    snc_qop str
    SNC QOP. Options are 1, 2, 3, 8, 9.
    client String
    Client number of the ABAP server. Example - 001
    systemId String
    System ID of the ABAP server. Example - A4H
    systemNumber String
    System number of the ABAP server.
    abapServerHost String
    FQDN, hostname, or IP address of the ABAP server.
    authenticationType String
    The authentication type to SAP.
    codePage String
    The SAP code page used for character encoding. Example - 1100
    group String
    Logon group of the message server.
    messageServerHost String
    FQDN, hostname, or IP address of the Message server.
    messageServerService String
    Port number, or service name (from /etc/services) of the message server.
    sncQop String
    SNC QOP. Options are 1, 2, 3, 8, 9.

    SapAuthenticationType, SapAuthenticationTypeArgs

    UsernamePassword
    UsernamePassword
    Snc
    Snc
    SncWithUsernamePassword
    SncWithUsernamePassword
    SapAuthenticationTypeUsernamePassword
    UsernamePassword
    SapAuthenticationTypeSnc
    Snc
    SapAuthenticationTypeSncWithUsernamePassword
    SncWithUsernamePassword
    UsernamePassword
    UsernamePassword
    Snc
    Snc
    SncWithUsernamePassword
    SncWithUsernamePassword
    UsernamePassword
    UsernamePassword
    Snc
    Snc
    SncWithUsernamePassword
    SncWithUsernamePassword
    USERNAME_PASSWORD
    UsernamePassword
    SNC
    Snc
    SNC_WITH_USERNAME_PASSWORD
    SncWithUsernamePassword
    "UsernamePassword"
    UsernamePassword
    "Snc"
    Snc
    "SncWithUsernamePassword"
    SncWithUsernamePassword

    SapControlConnector, SapControlConnectorArgs

    Instance string
    The instance number. Only 2 digits are allowed.
    Server string
    The server name. FQDN or IP address.
    HttpsConfiguration string | Pulumi.AzureNative.SecurityInsights.HttpsConfigurationType
    Represents the types of HTTPS configuration to connect to the SapControl service.
    Port string
    The port of the SOAP connection to SAP Control.
    Timezone string
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    Instance string
    The instance number. Only 2 digits are allowed.
    Server string
    The server name. FQDN or IP address.
    HttpsConfiguration string | HttpsConfigurationType
    Represents the types of HTTPS configuration to connect to the SapControl service.
    Port string
    The port of the SOAP connection to SAP Control.
    Timezone string
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    instance String
    The instance number. Only 2 digits are allowed.
    server String
    The server name. FQDN or IP address.
    httpsConfiguration String | HttpsConfigurationType
    Represents the types of HTTPS configuration to connect to the SapControl service.
    port String
    The port of the SOAP connection to SAP Control.
    timezone String
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    instance string
    The instance number. Only 2 digits are allowed.
    server string
    The server name. FQDN or IP address.
    httpsConfiguration string | HttpsConfigurationType
    Represents the types of HTTPS configuration to connect to the SapControl service.
    port string
    The port of the SOAP connection to SAP Control.
    timezone string
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    instance str
    The instance number. Only 2 digits are allowed.
    server str
    The server name. FQDN or IP address.
    https_configuration str | HttpsConfigurationType
    Represents the types of HTTPS configuration to connect to the SapControl service.
    port str
    The port of the SOAP connection to SAP Control.
    timezone str
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    instance String
    The instance number. Only 2 digits are allowed.
    server String
    The server name. FQDN or IP address.
    httpsConfiguration String | "HttpOnly" | "HttpsWithSslVerification" | "HttpsWithoutSslVerification"
    Represents the types of HTTPS configuration to connect to the SapControl service.
    port String
    The port of the SOAP connection to SAP Control.
    timezone String
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"

    SapControlConnectorResponse, SapControlConnectorResponseArgs

    Instance string
    The instance number. Only 2 digits are allowed.
    Server string
    The server name. FQDN or IP address.
    HttpsConfiguration string
    Represents the types of HTTPS configuration to connect to the SapControl service.
    Port string
    The port of the SOAP connection to SAP Control.
    Timezone string
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    Instance string
    The instance number. Only 2 digits are allowed.
    Server string
    The server name. FQDN or IP address.
    HttpsConfiguration string
    Represents the types of HTTPS configuration to connect to the SapControl service.
    Port string
    The port of the SOAP connection to SAP Control.
    Timezone string
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    instance String
    The instance number. Only 2 digits are allowed.
    server String
    The server name. FQDN or IP address.
    httpsConfiguration String
    Represents the types of HTTPS configuration to connect to the SapControl service.
    port String
    The port of the SOAP connection to SAP Control.
    timezone String
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    instance string
    The instance number. Only 2 digits are allowed.
    server string
    The server name. FQDN or IP address.
    httpsConfiguration string
    Represents the types of HTTPS configuration to connect to the SapControl service.
    port string
    The port of the SOAP connection to SAP Control.
    timezone string
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    instance str
    The instance number. Only 2 digits are allowed.
    server str
    The server name. FQDN or IP address.
    https_configuration str
    Represents the types of HTTPS configuration to connect to the SapControl service.
    port str
    The port of the SOAP connection to SAP Control.
    timezone str
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"
    instance String
    The instance number. Only 2 digits are allowed.
    server String
    The server name. FQDN or IP address.
    httpsConfiguration String
    Represents the types of HTTPS configuration to connect to the SapControl service.
    port String
    The port of the SOAP connection to SAP Control.
    timezone String
    The timezone. example: "GMT+0" or "GMT-8" default: "GMT+0"

    SapSystemsConfiguration, SapSystemsConfigurationArgs

    Connector Pulumi.AzureNative.SecurityInsights.Inputs.RfcConnector | Pulumi.AzureNative.SecurityInsights.Inputs.SapControlConnector
    Base Model for SAP System Connector.
    AzureResourceId string
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    Logs List<Pulumi.AzureNative.SecurityInsights.Inputs.Log>
    The logs configuration.
    Connector RfcConnector | SapControlConnector
    Base Model for SAP System Connector.
    AzureResourceId string
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    Logs []Log
    The logs configuration.
    connector RfcConnector | SapControlConnector
    Base Model for SAP System Connector.
    azureResourceId String
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    logs List<Log>
    The logs configuration.
    connector RfcConnector | SapControlConnector
    Base Model for SAP System Connector.
    azureResourceId string
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    logs Log[]
    The logs configuration.
    connector RfcConnector | SapControlConnector
    Base Model for SAP System Connector.
    azure_resource_id str
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    logs Sequence[Log]
    The logs configuration.
    connector Property Map | Property Map
    Base Model for SAP System Connector.
    azureResourceId String
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    logs List<Property Map>
    The logs configuration.

    SapSystemsConfigurationResponse, SapSystemsConfigurationResponseArgs

    Connector Pulumi.AzureNative.SecurityInsights.Inputs.RfcConnectorResponse | Pulumi.AzureNative.SecurityInsights.Inputs.SapControlConnectorResponse
    Base Model for SAP System Connector.
    AzureResourceId string
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    Logs List<Pulumi.AzureNative.SecurityInsights.Inputs.LogResponse>
    The logs configuration.
    Connector RfcConnectorResponse | SapControlConnectorResponse
    Base Model for SAP System Connector.
    AzureResourceId string
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    Logs []LogResponse
    The logs configuration.
    connector RfcConnectorResponse | SapControlConnectorResponse
    Base Model for SAP System Connector.
    azureResourceId String
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    logs List<LogResponse>
    The logs configuration.
    connector RfcConnectorResponse | SapControlConnectorResponse
    Base Model for SAP System Connector.
    azureResourceId string
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    logs LogResponse[]
    The logs configuration.
    connector RfcConnectorResponse | SapControlConnectorResponse
    Base Model for SAP System Connector.
    azure_resource_id str
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    logs Sequence[LogResponse]
    The logs configuration.
    connector Property Map | Property Map
    Base Model for SAP System Connector.
    azureResourceId String
    azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
    logs List<Property Map>
    The logs configuration.

    SystemDataResponse, SystemDataResponseArgs

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

    SystemStatusType, SystemStatusTypeArgs

    Running
    Running
    Stopped
    Stopped
    SystemStatusTypeRunning
    Running
    SystemStatusTypeStopped
    Stopped
    Running
    Running
    Stopped
    Stopped
    Running
    Running
    Stopped
    Stopped
    RUNNING
    Running
    STOPPED
    Stopped
    "Running"
    Running
    "Stopped"
    Stopped

    Import

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

    $ pulumi import azure-native:securityinsights:System 3b6bed7b-3f1c-47fc-ab8e-2c57047ed446 /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.OperationalInsights/workspaces/{workspaceName}/providers/Microsoft.SecurityInsights/businessApplicationAgents/{agentResourceName}/systems/{systemResourceName} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.73.0 published on Wednesday, Nov 20, 2024 by Pulumi