import * as pulumi from "@pulumi/pulumi"; /** * Manages a Security Partner Provider which could be associated to virtual hub. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = new azure.core.ResourceGroup("example", { * name: "example-resources", * location: "West Europe", * }); * const exampleVirtualWan = new azure.network.VirtualWan("example", { * name: "example-vwan", * resourceGroupName: example.name, * location: example.location, * }); * const exampleVirtualHub = new azure.network.VirtualHub("example", { * name: "example-vhub", * resourceGroupName: example.name, * location: example.location, * virtualWanId: exampleVirtualWan.id, * addressPrefix: "10.0.2.0/24", * }); * const exampleVpnGateway = new azure.network.VpnGateway("example", { * name: "example-vpngw", * location: example.location, * resourceGroupName: example.name, * virtualHubId: exampleVirtualHub.id, * }); * const exampleSecurityPartnerProvider = new azure.network.SecurityPartnerProvider("example", { * name: "example-spp", * resourceGroupName: example.name, * location: example.location, * virtualHubId: exampleVirtualHub.id, * securityProviderName: "IBoss", * tags: { * ENV: "Prod", * }, * }, { * dependsOn: [exampleVpnGateway], * }); * ``` * * ## API Providers * * * This resource uses the following Azure API Providers: * * * `Microsoft.Network` - 2025-01-01 * * ## Import * * Security Partner Providers can be imported using the `resource id`, e.g. * * ```sh * $ pulumi import azure:network/securityPartnerProvider:SecurityPartnerProvider example /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/group1/providers/Microsoft.Network/securityPartnerProviders/securityPartnerProvider1 * ``` */ export declare class SecurityPartnerProvider extends pulumi.CustomResource { /** * Get an existing SecurityPartnerProvider 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 state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: SecurityPartnerProviderState, opts?: pulumi.CustomResourceOptions): SecurityPartnerProvider; /** * Returns true if the given object is an instance of SecurityPartnerProvider. 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 SecurityPartnerProvider; /** * The Azure Region where the Security Partner Provider should exist. Changing this forces a new resource to be created. */ readonly location: pulumi.Output; /** * The name which should be used for this Security Partner Provider. Changing this forces a new resource to be created. */ readonly name: pulumi.Output; /** * The name of the Resource Group where the Security Partner Provider should exist. Changing this forces a new resource to be created. */ readonly resourceGroupName: pulumi.Output; /** * The security provider name. Possible values are `ZScaler`, `IBoss` and `Checkpoint` is allowed. Changing this forces a new resource to be created. */ readonly securityProviderName: pulumi.Output; /** * A mapping of tags which should be assigned to the Security Partner Provider. */ readonly tags: pulumi.Output<{ [key: string]: string; } | undefined>; /** * The ID of the Virtual Hub within which this Security Partner Provider should be created. Changing this forces a new resource to be created. */ readonly virtualHubId: pulumi.Output; /** * Create a SecurityPartnerProvider 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: SecurityPartnerProviderArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering SecurityPartnerProvider resources. */ export interface SecurityPartnerProviderState { /** * The Azure Region where the Security Partner Provider should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name which should be used for this Security Partner Provider. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Security Partner Provider should exist. Changing this forces a new resource to be created. */ resourceGroupName?: pulumi.Input; /** * The security provider name. Possible values are `ZScaler`, `IBoss` and `Checkpoint` is allowed. Changing this forces a new resource to be created. */ securityProviderName?: pulumi.Input; /** * A mapping of tags which should be assigned to the Security Partner Provider. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The ID of the Virtual Hub within which this Security Partner Provider should be created. Changing this forces a new resource to be created. */ virtualHubId?: pulumi.Input; } /** * The set of arguments for constructing a SecurityPartnerProvider resource. */ export interface SecurityPartnerProviderArgs { /** * The Azure Region where the Security Partner Provider should exist. Changing this forces a new resource to be created. */ location?: pulumi.Input; /** * The name which should be used for this Security Partner Provider. Changing this forces a new resource to be created. */ name?: pulumi.Input; /** * The name of the Resource Group where the Security Partner Provider should exist. Changing this forces a new resource to be created. */ resourceGroupName: pulumi.Input; /** * The security provider name. Possible values are `ZScaler`, `IBoss` and `Checkpoint` is allowed. Changing this forces a new resource to be created. */ securityProviderName: pulumi.Input; /** * A mapping of tags which should be assigned to the Security Partner Provider. */ tags?: pulumi.Input<{ [key: string]: pulumi.Input; }>; /** * The ID of the Virtual Hub within which this Security Partner Provider should be created. Changing this forces a new resource to be created. */ virtualHubId?: pulumi.Input; }