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

141 lines (140 loc) 6.46 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; import * as enums from "../types/enums"; /** * Linker of source and target resource * * Uses Azure REST API version 2024-04-01. In version 2.x of the Azure Native provider, it used API version 2022-11-01-preview. * * Other available API versions: 2022-11-01-preview, 2023-04-01-preview, 2024-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native servicelinker [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare class Connector extends pulumi.CustomResource { /** * Get an existing Connector resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Connector; /** * Returns true if the given object is an instance of Connector. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Connector; /** * The authentication type. */ readonly authInfo: pulumi.Output<outputs.servicelinker.AccessKeyInfoBaseResponse | outputs.servicelinker.EasyAuthMicrosoftEntraIDAuthInfoResponse | outputs.servicelinker.SecretAuthInfoResponse | outputs.servicelinker.ServicePrincipalCertificateAuthInfoResponse | outputs.servicelinker.ServicePrincipalSecretAuthInfoResponse | outputs.servicelinker.SystemAssignedIdentityAuthInfoResponse | outputs.servicelinker.UserAccountAuthInfoResponse | outputs.servicelinker.UserAssignedIdentityAuthInfoResponse | undefined>; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * The application client type */ readonly clientType: pulumi.Output<string | undefined>; /** * The connection information consumed by applications, including secrets, connection strings. */ readonly configurationInfo: pulumi.Output<outputs.servicelinker.ConfigurationInfoResponse | undefined>; /** * The name of the resource */ readonly name: pulumi.Output<string>; /** * The provisioning state. */ readonly provisioningState: pulumi.Output<string>; /** * The network solution. */ readonly publicNetworkSolution: pulumi.Output<outputs.servicelinker.PublicNetworkSolutionResponse | undefined>; /** * connection scope in source service. */ readonly scope: pulumi.Output<string | undefined>; /** * An option to store secret value in secure place */ readonly secretStore: pulumi.Output<outputs.servicelinker.SecretStoreResponse | undefined>; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: pulumi.Output<outputs.servicelinker.SystemDataResponse>; /** * The target service properties */ readonly targetService: pulumi.Output<outputs.servicelinker.AzureResourceResponse | outputs.servicelinker.ConfluentBootstrapServerResponse | outputs.servicelinker.ConfluentSchemaRegistryResponse | outputs.servicelinker.SelfHostedServerResponse | undefined>; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output<string>; /** * The VNet solution. */ readonly vNetSolution: pulumi.Output<outputs.servicelinker.VNetSolutionResponse | undefined>; /** * Create a Connector resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ConnectorArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Connector resource. */ export interface ConnectorArgs { /** * The authentication type. */ authInfo?: pulumi.Input<inputs.servicelinker.AccessKeyInfoBaseArgs | inputs.servicelinker.EasyAuthMicrosoftEntraIDAuthInfoArgs | inputs.servicelinker.SecretAuthInfoArgs | inputs.servicelinker.ServicePrincipalCertificateAuthInfoArgs | inputs.servicelinker.ServicePrincipalSecretAuthInfoArgs | inputs.servicelinker.SystemAssignedIdentityAuthInfoArgs | inputs.servicelinker.UserAccountAuthInfoArgs | inputs.servicelinker.UserAssignedIdentityAuthInfoArgs>; /** * The application client type */ clientType?: pulumi.Input<string | enums.servicelinker.ClientType>; /** * The connection information consumed by applications, including secrets, connection strings. */ configurationInfo?: pulumi.Input<inputs.servicelinker.ConfigurationInfoArgs>; /** * The name of resource. */ connectorName?: pulumi.Input<string>; /** * The name of Azure region. */ location: pulumi.Input<string>; /** * The network solution. */ publicNetworkSolution?: pulumi.Input<inputs.servicelinker.PublicNetworkSolutionArgs>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * connection scope in source service. */ scope?: pulumi.Input<string>; /** * An option to store secret value in secure place */ secretStore?: pulumi.Input<inputs.servicelinker.SecretStoreArgs>; /** * The ID of the target subscription. */ subscriptionId?: pulumi.Input<string>; /** * The target service properties */ targetService?: pulumi.Input<inputs.servicelinker.AzureResourceArgs | inputs.servicelinker.ConfluentBootstrapServerArgs | inputs.servicelinker.ConfluentSchemaRegistryArgs | inputs.servicelinker.SelfHostedServerArgs>; /** * The VNet solution. */ vNetSolution?: pulumi.Input<inputs.servicelinker.VNetSolutionArgs>; }