azure-native.securityinsights.System
Explore with Pulumi AI
Describes the system within the agent. Azure REST API version: 2024-04-01-preview.
Other available API versions: 2024-10-01-preview, 2025-01-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 * 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",
});
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")
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:
- AgentResource stringName 
- Business Application Agent Name
- Configuration
Pulumi.Azure Native. Security Insights. Inputs. Sap Systems Configuration 
- The configuration of the system.
- DisplayName string
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- Status
string | Pulumi.Azure Native. Security Insights. System Status Type 
- The status of the system.
- SystemResource stringName 
- The name of the system.
- AgentResource stringName 
- Business Application Agent Name
- Configuration
SapSystems Configuration Args 
- The configuration of the system.
- DisplayName string
- ResourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- WorkspaceName string
- The name of the workspace.
- Status
string | SystemStatus Type 
- The status of the system.
- SystemResource stringName 
- The name of the system.
- agentResource StringName 
- Business Application Agent Name
- configuration
SapSystems Configuration 
- The configuration of the system.
- displayName String
- resourceGroup StringName 
- The name of the resource group. The name is case insensitive.
- workspaceName String
- The name of the workspace.
- status
String | SystemStatus Type 
- The status of the system.
- systemResource StringName 
- The name of the system.
- agentResource stringName 
- Business Application Agent Name
- configuration
SapSystems Configuration 
- The configuration of the system.
- displayName string
- resourceGroup stringName 
- The name of the resource group. The name is case insensitive.
- workspaceName string
- The name of the workspace.
- status
string | SystemStatus Type 
- The status of the system.
- systemResource stringName 
- The name of the system.
- agent_resource_ strname 
- Business Application Agent Name
- configuration
SapSystems Configuration Args 
- The configuration of the system.
- display_name str
- resource_group_ strname 
- The name of the resource group. The name is case insensitive.
- workspace_name str
- The name of the workspace.
- status
str | SystemStatus Type 
- The status of the system.
- system_resource_ strname 
- The name of the system.
- agentResource StringName 
- Business Application Agent Name
- configuration Property Map
- The configuration of the system.
- displayName String
- resourceGroup StringName 
- 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.
- systemResource StringName 
- 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.
- LastModified stringTime Utc 
- Name string
- The name of the resource
- SystemData Pulumi.Azure Native. Security Insights. Outputs. System Data Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Etag string
- Etag of the azure resource
- Id string
- The provider-assigned unique ID for this managed resource.
- LastModified stringTime Utc 
- Name string
- The name of the resource
- SystemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- Type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- Etag string
- Etag of the azure resource
- id String
- The provider-assigned unique ID for this managed resource.
- lastModified StringTime Utc 
- name String
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type String
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag String
- Etag of the azure resource
- id string
- The provider-assigned unique ID for this managed resource.
- lastModified stringTime Utc 
- name string
- The name of the resource
- systemData SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type string
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag string
- Etag of the azure resource
- id str
- The provider-assigned unique ID for this managed resource.
- last_modified_ strtime_ utc 
- name str
- The name of the resource
- system_data SystemData Response 
- Azure Resource Manager metadata containing createdBy and modifiedBy information.
- type str
- The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
- etag str
- Etag of the azure resource
- id String
- The provider-assigned unique ID for this managed resource.
- lastModified StringTime Utc 
- 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
- HttpsWith Ssl Verification 
- HttpsWithSslVerification
- HttpsWithout Ssl Verification 
- HttpsWithoutSslVerification
- HttpsConfiguration Type Http Only 
- HttpOnly
- HttpsConfiguration Type Https With Ssl Verification 
- HttpsWithSslVerification
- HttpsConfiguration Type Https Without Ssl Verification 
- HttpsWithoutSslVerification
- HttpOnly 
- HttpOnly
- HttpsWith Ssl Verification 
- HttpsWithSslVerification
- HttpsWithout Ssl Verification 
- HttpsWithoutSslVerification
- HttpOnly 
- HttpOnly
- HttpsWith Ssl Verification 
- HttpsWithSslVerification
- HttpsWithout Ssl Verification 
- HttpsWithoutSslVerification
- HTTP_ONLY
- HttpOnly
- HTTPS_WITH_SSL_VERIFICATION
- HttpsWithSslVerification
- HTTPS_WITHOUT_SSL_VERIFICATION
- HttpsWithoutSslVerification
- "HttpOnly" 
- HttpOnly
- "HttpsWith Ssl Verification" 
- HttpsWithSslVerification
- "HttpsWithout Ssl Verification" 
- HttpsWithoutSslVerification
IngestionType, IngestionTypeArgs    
- Full
- Full
- Incremental
- Incremental
- IngestionType Full 
- Full
- IngestionType Incremental 
- Incremental
- Full
- Full
- Incremental
- Incremental
- Full
- Full
- Incremental
- Incremental
- FULL
- Full
- INCREMENTAL
- Incremental
- "Full"
- Full
- "Incremental"
- Incremental
Log, LogArgs  
- Type
string | Pulumi.Azure Native. Security Insights. Log Type 
- Types of logs and tables.
- BulkSize int
- The bulk size for the log.
- Filters List<string>
- The filters for the log.
- IngestionType string | Pulumi.Azure Native. Security Insights. Ingestion Type 
- Types of ingestion.
- ScheduleInterval int
- The schedule interval in seconds.
- Status
string | Pulumi.Azure Native. Security Insights. Log Status Type 
- 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 | LogStatus Type 
- 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 | LogStatus Type 
- 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 | LogStatus Type 
- 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 | LogStatus Type 
- Types of log status.
- type
String | "AbapAudit Log" | "Abap Job Log" | "Abap Spool Log" | "Abap Spool Output Log" | "Abap Change Docs Log" | "Abap App Log" | "Abap Workflow Log" | "Abap Cr Log" | "Abap Table Data Log" | "Abap Files Logs" | "Java Files Logs" | "AGRTCODES" | "USR01" | "USR02" | "AGR1251" | "AGRUSERS" | "AGRPROF" | "UST04" | "USR21" | "ADR6" | "ADCP" | "USR05" | "USGRPUSER" | "USERADDR" | "DEVACCESS" | "AGRDEFINE" | "PAHI" | "AGRAGRS" | "USRSTAMP" | "AGRFLAGS" | "SNCSYSACL" | "USRACL" 
- Types of logs and tables.
- bulkSize Number
- The bulk size for the log.
- filters List<String>
- The filters for the log.
- ingestionType String | "Full" | "Incremental"
- Types of ingestion.
- scheduleInterval Number
- The schedule interval in seconds.
- status String | "Enabled" | "Disabled"
- 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
- LogStatus Type Enabled 
- Enabled
- LogStatus Type Disabled 
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- Enabled
- Enabled
- Disabled
- Disabled
- ENABLED
- Enabled
- DISABLED
- Disabled
- "Enabled"
- Enabled
- "Disabled"
- Disabled
LogType, LogTypeArgs    
- AbapAudit Log 
- AbapAuditLog
- AbapJob Log 
- AbapJobLog
- AbapSpool Log 
- AbapSpoolLog
- AbapSpool Output Log 
- AbapSpoolOutputLog
- AbapChange Docs Log 
- AbapChangeDocsLog
- AbapApp Log 
- AbapAppLog
- AbapWorkflow Log 
- AbapWorkflowLog
- AbapCr Log 
- AbapCrLog
- AbapTable Data Log 
- AbapTableDataLog
- AbapFiles Logs 
- AbapFilesLogs
- JavaFiles 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
- LogType Abap Audit Log 
- AbapAuditLog
- LogType Abap Job Log 
- AbapJobLog
- LogType Abap Spool Log 
- AbapSpoolLog
- LogType Abap Spool Output Log 
- AbapSpoolOutputLog
- LogType Abap Change Docs Log 
- AbapChangeDocsLog
- LogType Abap App Log 
- AbapAppLog
- LogType Abap Workflow Log 
- AbapWorkflowLog
- LogType Abap Cr Log 
- AbapCrLog
- LogType Abap Table Data Log 
- AbapTableDataLog
- LogType Abap Files Logs 
- AbapFilesLogs
- LogType Java Files Logs 
- JavaFilesLogs
- LogType AGRTCODES 
- AGRTCODES
- LogType USR01 
- USR01
- LogType USR02 
- USR02
- LogType AGR1251 
- AGR1251
- LogType AGRUSERS 
- AGRUSERS
- LogType AGRPROF 
- AGRPROF
- LogType UST04 
- UST04
- LogType USR21 
- USR21
- LogType ADR6 
- ADR6
- LogType ADCP 
- ADCP
- LogType USR05 
- USR05
- LogType USGRPUSER 
- USGRPUSER
- LogType USERADDR 
- USERADDR
- LogType DEVACCESS 
- DEVACCESS
- LogType AGRDEFINE 
- AGRDEFINE
- LogType PAHI 
- PAHI
- LogType AGRAGRS 
- AGRAGRS
- LogType USRSTAMP 
- USRSTAMP
- LogType AGRFLAGS 
- AGRFLAGS
- LogType SNCSYSACL 
- SNCSYSACL
- LogType USRACL 
- USRACL
- AbapAudit Log 
- AbapAuditLog
- AbapJob Log 
- AbapJobLog
- AbapSpool Log 
- AbapSpoolLog
- AbapSpool Output Log 
- AbapSpoolOutputLog
- AbapChange Docs Log 
- AbapChangeDocsLog
- AbapApp Log 
- AbapAppLog
- AbapWorkflow Log 
- AbapWorkflowLog
- AbapCr Log 
- AbapCrLog
- AbapTable Data Log 
- AbapTableDataLog
- AbapFiles Logs 
- AbapFilesLogs
- JavaFiles 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
- AbapAudit Log 
- AbapAuditLog
- AbapJob Log 
- AbapJobLog
- AbapSpool Log 
- AbapSpoolLog
- AbapSpool Output Log 
- AbapSpoolOutputLog
- AbapChange Docs Log 
- AbapChangeDocsLog
- AbapApp Log 
- AbapAppLog
- AbapWorkflow Log 
- AbapWorkflowLog
- AbapCr Log 
- AbapCrLog
- AbapTable Data Log 
- AbapTableDataLog
- AbapFiles Logs 
- AbapFilesLogs
- JavaFiles 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
- 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
- "AbapAudit Log" 
- AbapAuditLog
- "AbapJob Log" 
- AbapJobLog
- "AbapSpool Log" 
- AbapSpoolLog
- "AbapSpool Output Log" 
- AbapSpoolOutputLog
- "AbapChange Docs Log" 
- AbapChangeDocsLog
- "AbapApp Log" 
- AbapAppLog
- "AbapWorkflow Log" 
- AbapWorkflowLog
- "AbapCr Log" 
- AbapCrLog
- "AbapTable Data Log" 
- AbapTableDataLog
- "AbapFiles Logs" 
- AbapFilesLogs
- "JavaFiles 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
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.
- AbapServer stringHost 
- FQDN, hostname, or IP address of the ABAP server.
- AuthenticationType string | Pulumi.Azure Native. Security Insights. Sap Authentication Type 
- 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.
- MessageServer stringHost 
- FQDN, hostname, or IP address of the Message server.
- MessageServer stringService 
- 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.
- AbapServer stringHost 
- FQDN, hostname, or IP address of the ABAP server.
- AuthenticationType string | SapAuthentication Type 
- 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.
- MessageServer stringHost 
- FQDN, hostname, or IP address of the Message server.
- MessageServer stringService 
- 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.
- abapServer StringHost 
- FQDN, hostname, or IP address of the ABAP server.
- authenticationType String | SapAuthentication Type 
- 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.
- messageServer StringHost 
- FQDN, hostname, or IP address of the Message server.
- messageServer StringService 
- 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.
- abapServer stringHost 
- FQDN, hostname, or IP address of the ABAP server.
- authenticationType string | SapAuthentication Type 
- 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.
- messageServer stringHost 
- FQDN, hostname, or IP address of the Message server.
- messageServer stringService 
- 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_ strhost 
- FQDN, hostname, or IP address of the ABAP server.
- authentication_type str | SapAuthentication Type 
- 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_ strhost 
- FQDN, hostname, or IP address of the Message server.
- message_server_ strservice 
- 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.
- abapServer StringHost 
- FQDN, hostname, or IP address of the ABAP server.
- authenticationType String | "UsernamePassword" | "Snc" | "Snc With Username Password" 
- 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.
- messageServer StringHost 
- FQDN, hostname, or IP address of the Message server.
- messageServer StringService 
- 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.
- AbapServer stringHost 
- 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.
- MessageServer stringHost 
- FQDN, hostname, or IP address of the Message server.
- MessageServer stringService 
- 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.
- AbapServer stringHost 
- 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.
- MessageServer stringHost 
- FQDN, hostname, or IP address of the Message server.
- MessageServer stringService 
- 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.
- abapServer StringHost 
- 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.
- messageServer StringHost 
- FQDN, hostname, or IP address of the Message server.
- messageServer StringService 
- 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.
- abapServer stringHost 
- 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.
- messageServer stringHost 
- FQDN, hostname, or IP address of the Message server.
- messageServer stringService 
- 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_ strhost 
- 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_ strhost 
- FQDN, hostname, or IP address of the Message server.
- message_server_ strservice 
- 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.
- abapServer StringHost 
- 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.
- messageServer StringHost 
- FQDN, hostname, or IP address of the Message server.
- messageServer StringService 
- 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
- SncWith Username Password 
- SncWithUsernamePassword
- SapAuthentication Type Username Password 
- UsernamePassword
- SapAuthentication Type Snc 
- Snc
- SapAuthentication Type Snc With Username Password 
- SncWithUsernamePassword
- UsernamePassword 
- UsernamePassword
- Snc
- Snc
- SncWith Username Password 
- SncWithUsernamePassword
- UsernamePassword 
- UsernamePassword
- Snc
- Snc
- SncWith Username Password 
- SncWithUsernamePassword
- USERNAME_PASSWORD
- UsernamePassword
- SNC
- Snc
- SNC_WITH_USERNAME_PASSWORD
- SncWithUsernamePassword
- "UsernamePassword" 
- UsernamePassword
- "Snc"
- Snc
- "SncWith Username Password" 
- 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.Azure Native. Security Insights. Https Configuration Type 
- 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 | HttpsConfiguration Type 
- 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 | HttpsConfiguration Type 
- 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 | HttpsConfiguration Type 
- 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 | HttpsConfiguration Type 
- 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" | "Https With Ssl Verification" | "Https Without Ssl Verification" 
- 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.Azure | Pulumi.Native. Security Insights. Inputs. Rfc Connector Azure Native. Security Insights. Inputs. Sap Control Connector 
- Base Model for SAP System Connector.
- AzureResource stringId 
- azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
- Logs
List<Pulumi.Azure Native. Security Insights. Inputs. Log> 
- The logs configuration.
- Connector
RfcConnector | SapControl Connector 
- Base Model for SAP System Connector.
- AzureResource stringId 
- azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
- Logs []Log
- The logs configuration.
- connector
RfcConnector | SapControl Connector 
- Base Model for SAP System Connector.
- azureResource StringId 
- 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 | SapControl Connector 
- Base Model for SAP System Connector.
- azureResource stringId 
- azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
- logs Log[]
- The logs configuration.
- connector
RfcConnector | SapControl Connector 
- Base Model for SAP System Connector.
- azure_resource_ strid 
- 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.
- azureResource StringId 
- 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.Azure | Pulumi.Native. Security Insights. Inputs. Rfc Connector Response Azure Native. Security Insights. Inputs. Sap Control Connector Response 
- Base Model for SAP System Connector.
- AzureResource stringId 
- azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
- Logs
List<Pulumi.Azure Native. Security Insights. Inputs. Log Response> 
- The logs configuration.
- Connector
RfcConnector | SapResponse Control Connector Response 
- Base Model for SAP System Connector.
- AzureResource stringId 
- azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
- Logs
[]LogResponse 
- The logs configuration.
- connector
RfcConnector | SapResponse Control Connector Response 
- Base Model for SAP System Connector.
- azureResource StringId 
- azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
- logs
List<LogResponse> 
- The logs configuration.
- connector
RfcConnector | SapResponse Control Connector Response 
- Base Model for SAP System Connector.
- azureResource stringId 
- azure resource id example: "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.Compute/virtualMachines/myVM"
- logs
LogResponse[] 
- The logs configuration.
- connector
RfcConnector | SapResponse Control Connector Response 
- Base Model for SAP System Connector.
- azure_resource_ strid 
- 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.
- azureResource StringId 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- CreatedBy stringType 
- The type of identity that created the resource.
- LastModified stringAt 
- The timestamp of resource last modification (UTC)
- LastModified stringBy 
- The identity that last modified the resource.
- LastModified stringBy Type 
- 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.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- 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.
- createdBy stringType 
- The type of identity that created the resource.
- lastModified stringAt 
- The timestamp of resource last modification (UTC)
- lastModified stringBy 
- The identity that last modified the resource.
- lastModified 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.
- createdAt String
- The timestamp of resource creation (UTC).
- createdBy String
- The identity that created the resource.
- createdBy StringType 
- The type of identity that created the resource.
- lastModified StringAt 
- The timestamp of resource last modification (UTC)
- lastModified StringBy 
- The identity that last modified the resource.
- lastModified StringBy Type 
- The type of identity that last modified the resource.
SystemStatusType, SystemStatusTypeArgs      
- Running
- Running
- Stopped
- Stopped
- SystemStatus Type Running 
- Running
- SystemStatus Type Stopped 
- 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