1. Packages
  2. Azure Native
  3. API Docs
  4. network
  5. SecurityPartnerProvider
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

azure-native.network.SecurityPartnerProvider

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi

    Security Partner Provider resource. Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2020-11-01.

    Other available API versions: 2023-04-01, 2023-05-01, 2023-06-01, 2023-09-01.

    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 = "ZScaler",
            Tags = 
            {
                { "key1", "value1" },
            },
            VirtualHub = new AzureNative.Network.Inputs.SubResourceArgs
            {
                Id = "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/network/v2"
    	"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("ZScaler"),
    			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
    	})
    }
    
    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());
    
        }
    }
    
    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="ZScaler",
        tags={
            "key1": "value1",
        },
        virtual_hub=azure_native.network.SubResourceArgs(
            id="/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
        ))
    
    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: "ZScaler",
        tags: {
            key1: "value1",
        },
        virtualHub: {
            id: "/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualHubs/hub1",
        },
    });
    
    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
    

    Create SecurityPartnerProvider Resource

    new SecurityPartnerProvider(name: string, args: SecurityPartnerProviderArgs, opts?: CustomResourceOptions);
    @overload
    def SecurityPartnerProvider(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                id: Optional[str] = None,
                                location: Optional[str] = None,
                                resource_group_name: 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)
    @overload
    def SecurityPartnerProvider(resource_name: str,
                                args: SecurityPartnerProviderArgs,
                                opts: Optional[ResourceOptions] = 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.
    
    
    name string
    The unique name of the resource.
    args SecurityPartnerProviderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args 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 string
    The unique name of the resource.
    args SecurityPartnerProviderArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityPartnerProviderArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityPartnerProviderArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    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

    The SecurityPartnerProvider resource accepts the following input properties:

    ResourceGroupName string
    The name of the resource group.
    Id string
    Resource ID.
    Location string
    Resource location.
    SecurityPartnerProviderName 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 string
    The name of the resource group.
    Id string
    Resource ID.
    Location string
    Resource location.
    SecurityPartnerProviderName 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 String
    The name of the resource group.
    id String
    Resource ID.
    location String
    Resource location.
    securityPartnerProviderName 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 string
    The name of the resource group.
    id string
    Resource ID.
    location string
    Resource location.
    securityPartnerProviderName 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 str
    The name of the resource group.
    id str
    Resource ID.
    location str
    Resource location.
    security_partner_provider_name 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 String
    The name of the resource group.
    id String
    Resource ID.
    location String
    Resource location.
    securityPartnerProviderName 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:

    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.
    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.
    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.
    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.
    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.
    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} 
    

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.33.0 published on Friday, Mar 22, 2024 by Pulumi