1. Packages
  2. Azure Native
  3. API Docs
  4. peering
  5. RegisteredAsn
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.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.peering.RegisteredAsn

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.37.0 published on Monday, Apr 15, 2024 by Pulumi

    The customer’s ASN that is registered by the peering service provider. Azure REST API version: 2022-10-01. Prior API version in Azure Native 1.x: 2021-01-01.

    Example Usage

    Create or update a registered ASN for the peering

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using AzureNative = Pulumi.AzureNative;
    
    return await Deployment.RunAsync(() => 
    {
        var registeredAsn = new AzureNative.Peering.RegisteredAsn("registeredAsn", new()
        {
            Asn = 65000,
            PeeringName = "peeringName",
            RegisteredAsnName = "registeredAsnName",
            ResourceGroupName = "rgName",
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure-native-sdk/peering/v2"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := peering.NewRegisteredAsn(ctx, "registeredAsn", &peering.RegisteredAsnArgs{
    			Asn:               pulumi.Int(65000),
    			PeeringName:       pulumi.String("peeringName"),
    			RegisteredAsnName: pulumi.String("registeredAsnName"),
    			ResourceGroupName: pulumi.String("rgName"),
    		})
    		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.peering.RegisteredAsn;
    import com.pulumi.azurenative.peering.RegisteredAsnArgs;
    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 registeredAsn = new RegisteredAsn("registeredAsn", RegisteredAsnArgs.builder()        
                .asn(65000)
                .peeringName("peeringName")
                .registeredAsnName("registeredAsnName")
                .resourceGroupName("rgName")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    registered_asn = azure_native.peering.RegisteredAsn("registeredAsn",
        asn=65000,
        peering_name="peeringName",
        registered_asn_name="registeredAsnName",
        resource_group_name="rgName")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as azure_native from "@pulumi/azure-native";
    
    const registeredAsn = new azure_native.peering.RegisteredAsn("registeredAsn", {
        asn: 65000,
        peeringName: "peeringName",
        registeredAsnName: "registeredAsnName",
        resourceGroupName: "rgName",
    });
    
    resources:
      registeredAsn:
        type: azure-native:peering:RegisteredAsn
        properties:
          asn: 65000
          peeringName: peeringName
          registeredAsnName: registeredAsnName
          resourceGroupName: rgName
    

    Create RegisteredAsn Resource

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

    Constructor syntax

    new RegisteredAsn(name: string, args: RegisteredAsnArgs, opts?: CustomResourceOptions);
    @overload
    def RegisteredAsn(resource_name: str,
                      args: RegisteredAsnArgs,
                      opts: Optional[ResourceOptions] = None)
    
    @overload
    def RegisteredAsn(resource_name: str,
                      opts: Optional[ResourceOptions] = None,
                      peering_name: Optional[str] = None,
                      resource_group_name: Optional[str] = None,
                      asn: Optional[int] = None,
                      registered_asn_name: Optional[str] = None)
    func NewRegisteredAsn(ctx *Context, name string, args RegisteredAsnArgs, opts ...ResourceOption) (*RegisteredAsn, error)
    public RegisteredAsn(string name, RegisteredAsnArgs args, CustomResourceOptions? opts = null)
    public RegisteredAsn(String name, RegisteredAsnArgs args)
    public RegisteredAsn(String name, RegisteredAsnArgs args, CustomResourceOptions options)
    
    type: azure-native:peering:RegisteredAsn
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RegisteredAsnArgs
    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 RegisteredAsnArgs
    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 RegisteredAsnArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RegisteredAsnArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RegisteredAsnArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var registeredAsnResource = new AzureNative.Peering.RegisteredAsn("registeredAsnResource", new()
    {
        PeeringName = "string",
        ResourceGroupName = "string",
        Asn = 0,
        RegisteredAsnName = "string",
    });
    
    example, err := peering.NewRegisteredAsn(ctx, "registeredAsnResource", &peering.RegisteredAsnArgs{
    PeeringName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    Asn: pulumi.Int(0),
    RegisteredAsnName: pulumi.String("string"),
    })
    
    var registeredAsnResource = new RegisteredAsn("registeredAsnResource", RegisteredAsnArgs.builder()        
        .peeringName("string")
        .resourceGroupName("string")
        .asn(0)
        .registeredAsnName("string")
        .build());
    
    registered_asn_resource = azure_native.peering.RegisteredAsn("registeredAsnResource",
        peering_name="string",
        resource_group_name="string",
        asn=0,
        registered_asn_name="string")
    
    const registeredAsnResource = new azure_native.peering.RegisteredAsn("registeredAsnResource", {
        peeringName: "string",
        resourceGroupName: "string",
        asn: 0,
        registeredAsnName: "string",
    });
    
    type: azure-native:peering:RegisteredAsn
    properties:
        asn: 0
        peeringName: string
        registeredAsnName: string
        resourceGroupName: string
    

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

    PeeringName string
    The name of the peering.
    ResourceGroupName string
    The name of the resource group.
    Asn int
    The customer's ASN from which traffic originates.
    RegisteredAsnName string
    The name of the ASN.
    PeeringName string
    The name of the peering.
    ResourceGroupName string
    The name of the resource group.
    Asn int
    The customer's ASN from which traffic originates.
    RegisteredAsnName string
    The name of the ASN.
    peeringName String
    The name of the peering.
    resourceGroupName String
    The name of the resource group.
    asn Integer
    The customer's ASN from which traffic originates.
    registeredAsnName String
    The name of the ASN.
    peeringName string
    The name of the peering.
    resourceGroupName string
    The name of the resource group.
    asn number
    The customer's ASN from which traffic originates.
    registeredAsnName string
    The name of the ASN.
    peering_name str
    The name of the peering.
    resource_group_name str
    The name of the resource group.
    asn int
    The customer's ASN from which traffic originates.
    registered_asn_name str
    The name of the ASN.
    peeringName String
    The name of the peering.
    resourceGroupName String
    The name of the resource group.
    asn Number
    The customer's ASN from which traffic originates.
    registeredAsnName String
    The name of the ASN.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    PeeringServicePrefixKey string
    The peering service prefix key that is to be shared with the customer.
    ProvisioningState string
    The provisioning state of the resource.
    Type string
    The type of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The name of the resource.
    PeeringServicePrefixKey string
    The peering service prefix key that is to be shared with the customer.
    ProvisioningState string
    The provisioning state of the resource.
    Type string
    The type of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    peeringServicePrefixKey String
    The peering service prefix key that is to be shared with the customer.
    provisioningState String
    The provisioning state of the resource.
    type String
    The type of the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The name of the resource.
    peeringServicePrefixKey string
    The peering service prefix key that is to be shared with the customer.
    provisioningState string
    The provisioning state of the resource.
    type string
    The type of the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The name of the resource.
    peering_service_prefix_key str
    The peering service prefix key that is to be shared with the customer.
    provisioning_state str
    The provisioning state of the resource.
    type str
    The type of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The name of the resource.
    peeringServicePrefixKey String
    The peering service prefix key that is to be shared with the customer.
    provisioningState String
    The provisioning state of the resource.
    type String
    The type of the resource.

    Import

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

    $ pulumi import azure-native:peering:RegisteredAsn registeredAsnName /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Peering/peerings/{peeringName}/registeredAsns/{registeredAsnName} 
    

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

    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.37.0 published on Monday, Apr 15, 2024 by Pulumi