1. Packages
  2. Strata Cloud Manager Provider
  3. API Docs
  4. BgpAuthProfile
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
scm logo
Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi

    BgpAuthProfile resource

    Create BgpAuthProfile Resource

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

    Constructor syntax

    new BgpAuthProfile(name: string, args?: BgpAuthProfileArgs, opts?: CustomResourceOptions);
    @overload
    def BgpAuthProfile(resource_name: str,
                       args: Optional[BgpAuthProfileArgs] = None,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def BgpAuthProfile(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       device: Optional[str] = None,
                       folder: Optional[str] = None,
                       name: Optional[str] = None,
                       secret: Optional[str] = None,
                       snippet: Optional[str] = None)
    func NewBgpAuthProfile(ctx *Context, name string, args *BgpAuthProfileArgs, opts ...ResourceOption) (*BgpAuthProfile, error)
    public BgpAuthProfile(string name, BgpAuthProfileArgs? args = null, CustomResourceOptions? opts = null)
    public BgpAuthProfile(String name, BgpAuthProfileArgs args)
    public BgpAuthProfile(String name, BgpAuthProfileArgs args, CustomResourceOptions options)
    
    type: scm:BgpAuthProfile
    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 BgpAuthProfileArgs
    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 BgpAuthProfileArgs
    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 BgpAuthProfileArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BgpAuthProfileArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BgpAuthProfileArgs
    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 bgpAuthProfileResource = new Scm.BgpAuthProfile("bgpAuthProfileResource", new()
    {
        Device = "string",
        Folder = "string",
        Name = "string",
        Secret = "string",
        Snippet = "string",
    });
    
    example, err := scm.NewBgpAuthProfile(ctx, "bgpAuthProfileResource", &scm.BgpAuthProfileArgs{
    	Device:  pulumi.String("string"),
    	Folder:  pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	Secret:  pulumi.String("string"),
    	Snippet: pulumi.String("string"),
    })
    
    var bgpAuthProfileResource = new BgpAuthProfile("bgpAuthProfileResource", BgpAuthProfileArgs.builder()
        .device("string")
        .folder("string")
        .name("string")
        .secret("string")
        .snippet("string")
        .build());
    
    bgp_auth_profile_resource = scm.BgpAuthProfile("bgpAuthProfileResource",
        device="string",
        folder="string",
        name="string",
        secret="string",
        snippet="string")
    
    const bgpAuthProfileResource = new scm.BgpAuthProfile("bgpAuthProfileResource", {
        device: "string",
        folder: "string",
        name: "string",
        secret: "string",
        snippet: "string",
    });
    
    type: scm:BgpAuthProfile
    properties:
        device: string
        folder: string
        name: string
        secret: string
        snippet: string
    

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

    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Name string
    Profile name
    Secret string
    BGP authentication key
    Snippet string
    The snippet in which the resource is defined
    Device string
    The device in which the resource is defined
    Folder string
    The folder in which the resource is defined
    Name string
    Profile name
    Secret string
    BGP authentication key
    Snippet string
    The snippet in which the resource is defined
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    Profile name
    secret String
    BGP authentication key
    snippet String
    The snippet in which the resource is defined
    device string
    The device in which the resource is defined
    folder string
    The folder in which the resource is defined
    name string
    Profile name
    secret string
    BGP authentication key
    snippet string
    The snippet in which the resource is defined
    device str
    The device in which the resource is defined
    folder str
    The folder in which the resource is defined
    name str
    Profile name
    secret str
    BGP authentication key
    snippet str
    The snippet in which the resource is defined
    device String
    The device in which the resource is defined
    folder String
    The folder in which the resource is defined
    name String
    Profile name
    secret String
    BGP authentication key
    snippet String
    The snippet in which the resource is defined

    Outputs

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

    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Id string
    The provider-assigned unique ID for this managed resource.
    Tfid string
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    id string
    The provider-assigned unique ID for this managed resource.
    tfid string
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    id str
    The provider-assigned unique ID for this managed resource.
    tfid str
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    id String
    The provider-assigned unique ID for this managed resource.
    tfid String

    Look up Existing BgpAuthProfile Resource

    Get an existing BgpAuthProfile resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: BgpAuthProfileState, opts?: CustomResourceOptions): BgpAuthProfile
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            device: Optional[str] = None,
            encrypted_values: Optional[Mapping[str, str]] = None,
            folder: Optional[str] = None,
            name: Optional[str] = None,
            secret: Optional[str] = None,
            snippet: Optional[str] = None,
            tfid: Optional[str] = None) -> BgpAuthProfile
    func GetBgpAuthProfile(ctx *Context, name string, id IDInput, state *BgpAuthProfileState, opts ...ResourceOption) (*BgpAuthProfile, error)
    public static BgpAuthProfile Get(string name, Input<string> id, BgpAuthProfileState? state, CustomResourceOptions? opts = null)
    public static BgpAuthProfile get(String name, Output<String> id, BgpAuthProfileState state, CustomResourceOptions options)
    resources:  _:    type: scm:BgpAuthProfile    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Device string
    The device in which the resource is defined
    EncryptedValues Dictionary<string, string>
    Map of sensitive values returned from the API.
    Folder string
    The folder in which the resource is defined
    Name string
    Profile name
    Secret string
    BGP authentication key
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    Device string
    The device in which the resource is defined
    EncryptedValues map[string]string
    Map of sensitive values returned from the API.
    Folder string
    The folder in which the resource is defined
    Name string
    Profile name
    Secret string
    BGP authentication key
    Snippet string
    The snippet in which the resource is defined
    Tfid string
    device String
    The device in which the resource is defined
    encryptedValues Map<String,String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    name String
    Profile name
    secret String
    BGP authentication key
    snippet String
    The snippet in which the resource is defined
    tfid String
    device string
    The device in which the resource is defined
    encryptedValues {[key: string]: string}
    Map of sensitive values returned from the API.
    folder string
    The folder in which the resource is defined
    name string
    Profile name
    secret string
    BGP authentication key
    snippet string
    The snippet in which the resource is defined
    tfid string
    device str
    The device in which the resource is defined
    encrypted_values Mapping[str, str]
    Map of sensitive values returned from the API.
    folder str
    The folder in which the resource is defined
    name str
    Profile name
    secret str
    BGP authentication key
    snippet str
    The snippet in which the resource is defined
    tfid str
    device String
    The device in which the resource is defined
    encryptedValues Map<String>
    Map of sensitive values returned from the API.
    folder String
    The folder in which the resource is defined
    name String
    Profile name
    secret String
    BGP authentication key
    snippet String
    The snippet in which the resource is defined
    tfid String

    Package Details

    Repository
    scm pulumi/pulumi-scm
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the scm Terraform Provider.
    scm logo
    Strata Cloud Manager v0.4.3 published on Saturday, Nov 8, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate