1. Packages
  2. Aviatrix
  3. API Docs
  4. AviatrixSegmentationNetworkDomain
Aviatrix v0.0.11 published on Saturday, Jun 17, 2023 by Aviatrix

aviatrix.AviatrixSegmentationNetworkDomain

Explore with Pulumi AI

aviatrix logo
Aviatrix v0.0.11 published on Saturday, Jun 17, 2023 by Aviatrix

    The aviatrix_segmentation_network_domain resource handles creation of Transit Segmentation Network Domains.

    Example Usage

    using System.Collections.Generic;
    using Pulumi;
    using Aviatrix = Pulumi.Aviatrix;
    
    return await Deployment.RunAsync(() => 
    {
        // Create an Aviatrix Segmentation Network Domain
        var testSegmentationNetworkDomain = new Aviatrix.AviatrixSegmentationNetworkDomain("testSegmentationNetworkDomain", new()
        {
            DomainName = "domain-a",
        });
    
    });
    
    package main
    
    import (
    	"github.com/astipkovits/pulumi-aviatrix/sdk/go/aviatrix"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := aviatrix.NewAviatrixSegmentationNetworkDomain(ctx, "testSegmentationNetworkDomain", &aviatrix.AviatrixSegmentationNetworkDomainArgs{
    			DomainName: pulumi.String("domain-a"),
    		})
    		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.aviatrix.AviatrixSegmentationNetworkDomain;
    import com.pulumi.aviatrix.AviatrixSegmentationNetworkDomainArgs;
    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 testSegmentationNetworkDomain = new AviatrixSegmentationNetworkDomain("testSegmentationNetworkDomain", AviatrixSegmentationNetworkDomainArgs.builder()        
                .domainName("domain-a")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aviatrix as aviatrix
    
    # Create an Aviatrix Segmentation Network Domain
    test_segmentation_network_domain = aviatrix.AviatrixSegmentationNetworkDomain("testSegmentationNetworkDomain", domain_name="domain-a")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aviatrix from "@pulumi/aviatrix";
    
    // Create an Aviatrix Segmentation Network Domain
    const testSegmentationNetworkDomain = new aviatrix.AviatrixSegmentationNetworkDomain("test_segmentation_network_domain", {
        domainName: "domain-a",
    });
    
    resources:
      # Create an Aviatrix Segmentation Network Domain
      testSegmentationNetworkDomain:
        type: aviatrix:AviatrixSegmentationNetworkDomain
        properties:
          domainName: domain-a
    

    Create AviatrixSegmentationNetworkDomain Resource

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

    Constructor syntax

    new AviatrixSegmentationNetworkDomain(name: string, args: AviatrixSegmentationNetworkDomainArgs, opts?: CustomResourceOptions);
    @overload
    def AviatrixSegmentationNetworkDomain(resource_name: str,
                                          args: AviatrixSegmentationNetworkDomainArgs,
                                          opts: Optional[ResourceOptions] = None)
    
    @overload
    def AviatrixSegmentationNetworkDomain(resource_name: str,
                                          opts: Optional[ResourceOptions] = None,
                                          domain_name: Optional[str] = None)
    func NewAviatrixSegmentationNetworkDomain(ctx *Context, name string, args AviatrixSegmentationNetworkDomainArgs, opts ...ResourceOption) (*AviatrixSegmentationNetworkDomain, error)
    public AviatrixSegmentationNetworkDomain(string name, AviatrixSegmentationNetworkDomainArgs args, CustomResourceOptions? opts = null)
    public AviatrixSegmentationNetworkDomain(String name, AviatrixSegmentationNetworkDomainArgs args)
    public AviatrixSegmentationNetworkDomain(String name, AviatrixSegmentationNetworkDomainArgs args, CustomResourceOptions options)
    
    type: aviatrix:AviatrixSegmentationNetworkDomain
    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 AviatrixSegmentationNetworkDomainArgs
    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 AviatrixSegmentationNetworkDomainArgs
    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 AviatrixSegmentationNetworkDomainArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args AviatrixSegmentationNetworkDomainArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args AviatrixSegmentationNetworkDomainArgs
    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 aviatrixSegmentationNetworkDomainResource = new Aviatrix.AviatrixSegmentationNetworkDomain("aviatrixSegmentationNetworkDomainResource", new()
    {
        DomainName = "string",
    });
    
    example, err := aviatrix.NewAviatrixSegmentationNetworkDomain(ctx, "aviatrixSegmentationNetworkDomainResource", &aviatrix.AviatrixSegmentationNetworkDomainArgs{
    	DomainName: pulumi.String("string"),
    })
    
    var aviatrixSegmentationNetworkDomainResource = new AviatrixSegmentationNetworkDomain("aviatrixSegmentationNetworkDomainResource", AviatrixSegmentationNetworkDomainArgs.builder()        
        .domainName("string")
        .build());
    
    aviatrix_segmentation_network_domain_resource = aviatrix.AviatrixSegmentationNetworkDomain("aviatrixSegmentationNetworkDomainResource", domain_name="string")
    
    const aviatrixSegmentationNetworkDomainResource = new aviatrix.AviatrixSegmentationNetworkDomain("aviatrixSegmentationNetworkDomainResource", {domainName: "string"});
    
    type: aviatrix:AviatrixSegmentationNetworkDomain
    properties:
        domainName: string
    

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

    DomainName string
    Name of the Network Domain.
    DomainName string
    Name of the Network Domain.
    domainName String
    Name of the Network Domain.
    domainName string
    Name of the Network Domain.
    domain_name str
    Name of the Network Domain.
    domainName String
    Name of the Network Domain.

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.
    id string
    The provider-assigned unique ID for this managed resource.
    id str
    The provider-assigned unique ID for this managed resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing AviatrixSegmentationNetworkDomain Resource

    Get an existing AviatrixSegmentationNetworkDomain 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?: AviatrixSegmentationNetworkDomainState, opts?: CustomResourceOptions): AviatrixSegmentationNetworkDomain
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            domain_name: Optional[str] = None) -> AviatrixSegmentationNetworkDomain
    func GetAviatrixSegmentationNetworkDomain(ctx *Context, name string, id IDInput, state *AviatrixSegmentationNetworkDomainState, opts ...ResourceOption) (*AviatrixSegmentationNetworkDomain, error)
    public static AviatrixSegmentationNetworkDomain Get(string name, Input<string> id, AviatrixSegmentationNetworkDomainState? state, CustomResourceOptions? opts = null)
    public static AviatrixSegmentationNetworkDomain get(String name, Output<String> id, AviatrixSegmentationNetworkDomainState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    DomainName string
    Name of the Network Domain.
    DomainName string
    Name of the Network Domain.
    domainName String
    Name of the Network Domain.
    domainName string
    Name of the Network Domain.
    domain_name str
    Name of the Network Domain.
    domainName String
    Name of the Network Domain.

    Import

    aviatrix_segmentation_network_domain can be imported using the domain_name, e.g.

     $ pulumi import aviatrix:index/aviatrixSegmentationNetworkDomain:AviatrixSegmentationNetworkDomain test domain_name
    

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

    Package Details

    Repository
    aviatrix astipkovits/pulumi-aviatrix
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aviatrix Terraform Provider.
    aviatrix logo
    Aviatrix v0.0.11 published on Saturday, Jun 17, 2023 by Aviatrix