UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

134 lines (133 loc) 4.51 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the SAP Central Services Instance resource. * * Uses Azure REST API version 2024-09-01. */ export declare function getSapCentralServerInstance(args: GetSapCentralServerInstanceArgs, opts?: pulumi.InvokeOptions): Promise<GetSapCentralServerInstanceResult>; export interface GetSapCentralServerInstanceArgs { /** * Central Services Instance resource name string modeled as parameter for auto generation to work correctly. */ centralInstanceName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the Virtual Instances for SAP solutions resource */ sapVirtualInstanceName: string; } /** * Define the SAP Central Services Instance resource. */ export interface GetSapCentralServerInstanceResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Defines the SAP Enqueue Replication Server (ERS) properties. */ readonly enqueueReplicationServerProperties?: outputs.workloads.EnqueueReplicationServerPropertiesResponse; /** * Defines the SAP Enqueue Server properties. */ readonly enqueueServerProperties?: outputs.workloads.EnqueueServerPropertiesResponse; /** * Defines the errors related to SAP Central Services Instance resource. */ readonly errors: outputs.workloads.SAPVirtualInstanceErrorResponse; /** * Defines the SAP Gateway Server properties. */ readonly gatewayServerProperties?: outputs.workloads.GatewayServerPropertiesResponse; /** * Defines the health of SAP Instances. */ readonly health: string; /** * Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}" */ readonly id: string; /** * The central services instance number. */ readonly instanceNo: string; /** * The central services instance Kernel Patch level. */ readonly kernelPatch: string; /** * The central services instance Kernel Version. */ readonly kernelVersion: string; /** * The Load Balancer details such as LoadBalancer ID attached to ASCS Virtual Machines */ readonly loadBalancerDetails: outputs.workloads.LoadBalancerDetailsResponse; /** * The geo-location where the resource lives */ readonly location: string; /** * Defines the SAP message server properties. */ readonly messageServerProperties?: outputs.workloads.MessageServerPropertiesResponse; /** * The name of the resource */ readonly name: string; /** * Defines the provisioning states. */ readonly provisioningState: string; /** * Defines the SAP Instance status. */ readonly status: string; /** * The central services instance subnet. */ readonly subnet: string; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: outputs.workloads.SystemDataResponse; /** * Resource tags. */ readonly tags?: { [key: string]: string; }; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: string; /** * The list of virtual machines corresponding to the Central Services instance. */ readonly vmDetails: outputs.workloads.CentralServerVmDetailsResponse[]; } /** * Gets the SAP Central Services Instance resource. * * Uses Azure REST API version 2024-09-01. */ export declare function getSapCentralServerInstanceOutput(args: GetSapCentralServerInstanceOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSapCentralServerInstanceResult>; export interface GetSapCentralServerInstanceOutputArgs { /** * Central Services Instance resource name string modeled as parameter for auto generation to work correctly. */ centralInstanceName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The name of the Virtual Instances for SAP solutions resource */ sapVirtualInstanceName: pulumi.Input<string>; }