@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 6.26 kB
TypeScript
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 Linker extends pulumi.CustomResource {
/**
* Get an existing Linker 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): Linker;
/**
* Returns true if the given object is an instance of Linker. 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 Linker;
/**
* 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 Linker 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: LinkerArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* The set of arguments for constructing a Linker resource.
*/
export interface LinkerArgs {
/**
* 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 Linker resource.
*/
linkerName?: pulumi.Input<string>;
/**
* The network solution.
*/
publicNetworkSolution?: pulumi.Input<inputs.servicelinker.PublicNetworkSolutionArgs>;
/**
* The fully qualified Azure Resource manager identifier of the resource to be connected.
*/
resourceUri: 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 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>;
}