1. Packages
  2. Azure Native
  3. API Docs
  4. network
  5. SecurityPartnerProvider
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

azure-native.network.SecurityPartnerProvider

Explore with Pulumi AI

This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi

Security Partner Provider resource.

Uses Azure REST API version 2024-05-01. In version 2.x of the Azure Native provider, it used API version 2023-02-01.

Other available API versions: 2020-03-01, 2020-04-01, 2020-05-01, 2020-06-01, 2020-07-01, 2020-08-01, 2020-11-01, 2021-02-01, 2021-03-01, 2021-05-01, 2021-08-01, 2022-01-01, 2022-05-01, 2022-07-01, 2022-09-01, 2022-11-01, 2023-02-01, 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01, 2023-11-01, 2024-01-01, 2024-03-01. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native network [ApiVersion]. See the version guide for details.

Example Usage

Create Security Partner Provider

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var securityPartnerProvider = new AzureNative.Network.SecurityPartnerProvider("securityPartnerProvider", new()
    {
        Location = "West US",
        ResourceGroupName = "rg1",
        SecurityPartnerProviderName = "securityPartnerProvider",
        SecurityProviderName = AzureNative.Network.SecurityProviderName.ZScaler,
        Tags = 
        {
            { "key1", "value1" },
        },
        VirtualHub = new AzureNative.Network.Inputs.SubResourceArgs
        {
            Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
        },
    });

});
Copy
package main

import (
	network "github.com/pulumi/pulumi-azure-native-sdk/network/v3"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := network.NewSecurityPartnerProvider(ctx, "securityPartnerProvider", &network.SecurityPartnerProviderArgs{
			Location:                    pulumi.String("West US"),
			ResourceGroupName:           pulumi.String("rg1"),
			SecurityPartnerProviderName: pulumi.String("securityPartnerProvider"),
			SecurityProviderName:        pulumi.String(network.SecurityProviderNameZScaler),
			Tags: pulumi.StringMap{
				"key1": pulumi.String("value1"),
			},
			VirtualHub: &network.SubResourceArgs{
				Id: pulumi.String("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.network.SecurityPartnerProvider;
import com.pulumi.azurenative.network.SecurityPartnerProviderArgs;
import com.pulumi.azurenative.network.inputs.SubResourceArgs;
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 securityPartnerProvider = new SecurityPartnerProvider("securityPartnerProvider", SecurityPartnerProviderArgs.builder()
            .location("West US")
            .resourceGroupName("rg1")
            .securityPartnerProviderName("securityPartnerProvider")
            .securityProviderName("ZScaler")
            .tags(Map.of("key1", "value1"))
            .virtualHub(SubResourceArgs.builder()
                .id("/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1")
                .build())
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const securityPartnerProvider = new azure_native.network.SecurityPartnerProvider("securityPartnerProvider", {
    location: "West US",
    resourceGroupName: "rg1",
    securityPartnerProviderName: "securityPartnerProvider",
    securityProviderName: azure_native.network.SecurityProviderName.ZScaler,
    tags: {
        key1: "value1",
    },
    virtualHub: {
        id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
    },
});
Copy
import pulumi
import pulumi_azure_native as azure_native

security_partner_provider = azure_native.network.SecurityPartnerProvider("securityPartnerProvider",
    location="West US",
    resource_group_name="rg1",
    security_partner_provider_name="securityPartnerProvider",
    security_provider_name=azure_native.network.SecurityProviderName.Z_SCALER,
    tags={
        "key1": "value1",
    },
    virtual_hub={
        "id": "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
    })
Copy
resources:
  securityPartnerProvider:
    type: azure-native:network:SecurityPartnerProvider
    properties:
      location: West US
      resourceGroupName: rg1
      securityPartnerProviderName: securityPartnerProvider
      securityProviderName: ZScaler
      tags:
        key1: value1
      virtualHub:
        id: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1
Copy

Create SecurityPartnerProvider Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new SecurityPartnerProvider(name: string, args: SecurityPartnerProviderArgs, opts?: CustomResourceOptions);
@overload
def SecurityPartnerProvider(resource_name: str,
                            args: SecurityPartnerProviderArgs,
                            opts: Optional[ResourceOptions] = None)

@overload
def SecurityPartnerProvider(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            resource_group_name: Optional[str] = None,
                            id: Optional[str] = None,
                            location: Optional[str] = None,
                            security_partner_provider_name: Optional[str] = None,
                            security_provider_name: Optional[Union[str, SecurityProviderName]] = None,
                            tags: Optional[Mapping[str, str]] = None,
                            virtual_hub: Optional[SubResourceArgs] = None)
func NewSecurityPartnerProvider(ctx *Context, name string, args SecurityPartnerProviderArgs, opts ...ResourceOption) (*SecurityPartnerProvider, error)
public SecurityPartnerProvider(string name, SecurityPartnerProviderArgs args, CustomResourceOptions? opts = null)
public SecurityPartnerProvider(String name, SecurityPartnerProviderArgs args)
public SecurityPartnerProvider(String name, SecurityPartnerProviderArgs args, CustomResourceOptions options)
type: azure-native:network:SecurityPartnerProvider
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. SecurityPartnerProviderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. SecurityPartnerProviderArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. SecurityPartnerProviderArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. SecurityPartnerProviderArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SecurityPartnerProviderArgs
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 securityPartnerProviderResource = new AzureNative.Network.SecurityPartnerProvider("securityPartnerProviderResource", new()
{
    ResourceGroupName = "string",
    Id = "string",
    Location = "string",
    SecurityPartnerProviderName = "string",
    SecurityProviderName = "string",
    Tags = 
    {
        { "string", "string" },
    },
    VirtualHub = new AzureNative.Network.Inputs.SubResourceArgs
    {
        Id = "string",
    },
});
Copy
example, err := network.NewSecurityPartnerProvider(ctx, "securityPartnerProviderResource", &network.SecurityPartnerProviderArgs{
	ResourceGroupName:           pulumi.String("string"),
	Id:                          pulumi.String("string"),
	Location:                    pulumi.String("string"),
	SecurityPartnerProviderName: pulumi.String("string"),
	SecurityProviderName:        pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	VirtualHub: &network.SubResourceArgs{
		Id: pulumi.String("string"),
	},
})
Copy
var securityPartnerProviderResource = new SecurityPartnerProvider("securityPartnerProviderResource", SecurityPartnerProviderArgs.builder()
    .resourceGroupName("string")
    .id("string")
    .location("string")
    .securityPartnerProviderName("string")
    .securityProviderName("string")
    .tags(Map.of("string", "string"))
    .virtualHub(SubResourceArgs.builder()
        .id("string")
        .build())
    .build());
Copy
security_partner_provider_resource = azure_native.network.SecurityPartnerProvider("securityPartnerProviderResource",
    resource_group_name="string",
    id="string",
    location="string",
    security_partner_provider_name="string",
    security_provider_name="string",
    tags={
        "string": "string",
    },
    virtual_hub={
        "id": "string",
    })
Copy
const securityPartnerProviderResource = new azure_native.network.SecurityPartnerProvider("securityPartnerProviderResource", {
    resourceGroupName: "string",
    id: "string",
    location: "string",
    securityPartnerProviderName: "string",
    securityProviderName: "string",
    tags: {
        string: "string",
    },
    virtualHub: {
        id: "string",
    },
});
Copy
type: azure-native:network:SecurityPartnerProvider
properties:
    id: string
    location: string
    resourceGroupName: string
    securityPartnerProviderName: string
    securityProviderName: string
    tags:
        string: string
    virtualHub:
        id: string
Copy

SecurityPartnerProvider 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 SecurityPartnerProvider resource accepts the following input properties:

ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
Id string
Resource ID.
Location string
Resource location.
SecurityPartnerProviderName Changes to this property will trigger replacement. string
The name of the Security Partner Provider.
SecurityProviderName string | Pulumi.AzureNative.Network.SecurityProviderName
The security provider name.
Tags Dictionary<string, string>
Resource tags.
VirtualHub Pulumi.AzureNative.Network.Inputs.SubResource
The virtualHub to which the Security Partner Provider belongs.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
Id string
Resource ID.
Location string
Resource location.
SecurityPartnerProviderName Changes to this property will trigger replacement. string
The name of the Security Partner Provider.
SecurityProviderName string | SecurityProviderName
The security provider name.
Tags map[string]string
Resource tags.
VirtualHub SubResourceArgs
The virtualHub to which the Security Partner Provider belongs.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
id String
Resource ID.
location String
Resource location.
securityPartnerProviderName Changes to this property will trigger replacement. String
The name of the Security Partner Provider.
securityProviderName String | SecurityProviderName
The security provider name.
tags Map<String,String>
Resource tags.
virtualHub SubResource
The virtualHub to which the Security Partner Provider belongs.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group.
id string
Resource ID.
location string
Resource location.
securityPartnerProviderName Changes to this property will trigger replacement. string
The name of the Security Partner Provider.
securityProviderName string | SecurityProviderName
The security provider name.
tags {[key: string]: string}
Resource tags.
virtualHub SubResource
The virtualHub to which the Security Partner Provider belongs.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group.
id str
Resource ID.
location str
Resource location.
security_partner_provider_name Changes to this property will trigger replacement. str
The name of the Security Partner Provider.
security_provider_name str | SecurityProviderName
The security provider name.
tags Mapping[str, str]
Resource tags.
virtual_hub SubResourceArgs
The virtualHub to which the Security Partner Provider belongs.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group.
id String
Resource ID.
location String
Resource location.
securityPartnerProviderName Changes to this property will trigger replacement. String
The name of the Security Partner Provider.
securityProviderName String | "ZScaler" | "IBoss" | "Checkpoint"
The security provider name.
tags Map<String>
Resource tags.
virtualHub Property Map
The virtualHub to which the Security Partner Provider belongs.

Outputs

All input properties are implicitly available as output properties. Additionally, the SecurityPartnerProvider resource produces the following output properties:

AzureApiVersion string
The Azure API version of the resource.
ConnectionStatus string
The connection status with the Security Partner Provider.
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
ProvisioningState string
The provisioning state of the Security Partner Provider resource.
Type string
Resource type.
AzureApiVersion string
The Azure API version of the resource.
ConnectionStatus string
The connection status with the Security Partner Provider.
Etag string
A unique read-only string that changes whenever the resource is updated.
Id string
The provider-assigned unique ID for this managed resource.
Name string
Resource name.
ProvisioningState string
The provisioning state of the Security Partner Provider resource.
Type string
Resource type.
azureApiVersion String
The Azure API version of the resource.
connectionStatus String
The connection status with the Security Partner Provider.
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
provisioningState String
The provisioning state of the Security Partner Provider resource.
type String
Resource type.
azureApiVersion string
The Azure API version of the resource.
connectionStatus string
The connection status with the Security Partner Provider.
etag string
A unique read-only string that changes whenever the resource is updated.
id string
The provider-assigned unique ID for this managed resource.
name string
Resource name.
provisioningState string
The provisioning state of the Security Partner Provider resource.
type string
Resource type.
azure_api_version str
The Azure API version of the resource.
connection_status str
The connection status with the Security Partner Provider.
etag str
A unique read-only string that changes whenever the resource is updated.
id str
The provider-assigned unique ID for this managed resource.
name str
Resource name.
provisioning_state str
The provisioning state of the Security Partner Provider resource.
type str
Resource type.
azureApiVersion String
The Azure API version of the resource.
connectionStatus String
The connection status with the Security Partner Provider.
etag String
A unique read-only string that changes whenever the resource is updated.
id String
The provider-assigned unique ID for this managed resource.
name String
Resource name.
provisioningState String
The provisioning state of the Security Partner Provider resource.
type String
Resource type.

Supporting Types

SecurityProviderName
, SecurityProviderNameArgs

ZScaler
ZScaler
IBoss
IBoss
Checkpoint
Checkpoint
SecurityProviderNameZScaler
ZScaler
SecurityProviderNameIBoss
IBoss
SecurityProviderNameCheckpoint
Checkpoint
ZScaler
ZScaler
IBoss
IBoss
Checkpoint
Checkpoint
ZScaler
ZScaler
IBoss
IBoss
Checkpoint
Checkpoint
Z_SCALER
ZScaler
I_BOSS
IBoss
CHECKPOINT
Checkpoint
"ZScaler"
ZScaler
"IBoss"
IBoss
"Checkpoint"
Checkpoint

SubResource
, SubResourceArgs

Id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
Id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id String
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id string
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id str
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.
id String
Sub-resource ID. Both absolute resource ID and a relative resource ID are accepted. An absolute ID starts with /subscriptions/ and contains the entire ID of the parent resource and the ID of the sub-resource in the end. A relative ID replaces the ID of the parent resource with a token '$self', followed by the sub-resource ID itself. Example of a relative ID: $self/frontEndConfigurations/my-frontend.

SubResourceResponse
, SubResourceResponseArgs

Id string
Resource ID.
Id string
Resource ID.
id String
Resource ID.
id string
Resource ID.
id str
Resource ID.
id String
Resource ID.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:network:SecurityPartnerProvider securityPartnerProvider /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Network/securityPartnerProviders/{securityPartnerProviderName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
Azure Native pulumi/pulumi-azure-native
License
Apache-2.0
This is the latest version of Azure Native. Use the Azure Native v2 docs if using the v2 version of this package.
Azure Native v3.2.0 published on Monday, Apr 14, 2025 by Pulumi