1. Packages
  2. threefold
  3. API Docs
  4. provider
  5. GatewayName
Threefold Grid v0.6.4 published on Tuesday, May 28, 2024 by Threefold

threefold.provider.GatewayName

Explore with Pulumi AI

threefold logo
Threefold Grid v0.6.4 published on Tuesday, May 28, 2024 by Threefold

    Create GatewayName Resource

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

    Constructor syntax

    new GatewayName(name: string, args: GatewayNameArgs, opts?: CustomResourceOptions);
    @overload
    def GatewayName(resource_name: str,
                    args: GatewayNameArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def GatewayName(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    backends: Optional[Sequence[str]] = None,
                    name: Optional[str] = None,
                    node_id: Optional[Any] = None,
                    description: Optional[str] = None,
                    network: Optional[str] = None,
                    solution_type: Optional[str] = None,
                    tls_passthrough: Optional[bool] = None)
    func NewGatewayName(ctx *Context, name string, args GatewayNameArgs, opts ...ResourceOption) (*GatewayName, error)
    public GatewayName(string name, GatewayNameArgs args, CustomResourceOptions? opts = null)
    public GatewayName(String name, GatewayNameArgs args)
    public GatewayName(String name, GatewayNameArgs args, CustomResourceOptions options)
    
    type: threefold:provider:GatewayName
    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 GatewayNameArgs
    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 GatewayNameArgs
    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 GatewayNameArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args GatewayNameArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args GatewayNameArgs
    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 gatewayNameResource = new Threefold.Provider.GatewayName("gatewayNameResource", new()
    {
        Backends = new[]
        {
            "string",
        },
        Name = "string",
        Node_id = "any",
        Description = "string",
        Network = "string",
        Solution_type = "string",
        Tls_passthrough = false,
    });
    
    example, err := provider.NewGatewayName(ctx, "gatewayNameResource", &provider.GatewayNameArgs{
    	Backends: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Name:            pulumi.String("string"),
    	Node_id:         pulumi.Any("any"),
    	Description:     pulumi.String("string"),
    	Network:         pulumi.String("string"),
    	Solution_type:   pulumi.String("string"),
    	Tls_passthrough: pulumi.Bool(false),
    })
    
    var gatewayNameResource = new GatewayName("gatewayNameResource", GatewayNameArgs.builder()
        .backends("string")
        .name("string")
        .node_id("any")
        .description("string")
        .network("string")
        .solution_type("string")
        .tls_passthrough(false)
        .build());
    
    gateway_name_resource = threefold.provider.GatewayName("gatewayNameResource",
        backends=["string"],
        name="string",
        node_id="any",
        description="string",
        network="string",
        solution_type="string",
        tls_passthrough=False)
    
    const gatewayNameResource = new threefold.provider.GatewayName("gatewayNameResource", {
        backends: ["string"],
        name: "string",
        node_id: "any",
        description: "string",
        network: "string",
        solution_type: "string",
        tls_passthrough: false,
    });
    
    type: threefold:provider:GatewayName
    properties:
        backends:
            - string
        description: string
        name: string
        network: string
        node_id: any
        solution_type: string
        tls_passthrough: false
    

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

    Backends List<string>
    Name string
    Node_id object
    Description string
    Network string
    Solution_type string
    Tls_passthrough bool
    Backends []string
    Name string
    Node_id interface{}
    Description string
    Network string
    Solution_type string
    Tls_passthrough bool
    backends List<String>
    name String
    node_id Object
    description String
    network String
    solution_type String
    tls_passthrough Boolean
    backends string[]
    name string
    node_id any
    description string
    network string
    solution_type string
    tls_passthrough boolean
    backends List<String>
    name String
    node_id Any
    description String
    network String
    solution_type String
    tls_passthrough Boolean

    Outputs

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

    Contract_id int
    Fqdn string
    Id string
    The provider-assigned unique ID for this managed resource.
    Name_contract_id int
    Node_deployment_id Dictionary<string, int>
    Contract_id int
    Fqdn string
    Id string
    The provider-assigned unique ID for this managed resource.
    Name_contract_id int
    Node_deployment_id map[string]int
    contract_id Integer
    fqdn String
    id String
    The provider-assigned unique ID for this managed resource.
    name_contract_id Integer
    node_deployment_id Map<String,Integer>
    contract_id number
    fqdn string
    id string
    The provider-assigned unique ID for this managed resource.
    name_contract_id number
    node_deployment_id {[key: string]: number}
    contract_id int
    fqdn str
    id str
    The provider-assigned unique ID for this managed resource.
    name_contract_id int
    node_deployment_id Mapping[str, int]
    contract_id Number
    fqdn String
    id String
    The provider-assigned unique ID for this managed resource.
    name_contract_id Number
    node_deployment_id Map<Number>

    Package Details

    Repository
    threefold threefoldtech/pulumi-threefold
    License
    Apache-2.0
    threefold logo
    Threefold Grid v0.6.4 published on Tuesday, May 28, 2024 by Threefold