Threefold Grid v0.6.4 published on Tuesday, May 28, 2024 by Threefold
threefold.provider.GatewayName
Explore with Pulumi AI
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 Sequence[str]
- name str
- node_
id Any - description str
- network str
- solution_
type str - tls_
passthrough bool
- 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_ intid - Node_
deployment_ Dictionary<string, int>id
- Contract_
id int - Fqdn string
- Id string
- The provider-assigned unique ID for this managed resource.
- Name_
contract_ intid - Node_
deployment_ map[string]intid
- contract_
id Integer - fqdn String
- id String
- The provider-assigned unique ID for this managed resource.
- name_
contract_ Integerid - node_
deployment_ Map<String,Integer>id
- contract_
id number - fqdn string
- id string
- The provider-assigned unique ID for this managed resource.
- name_
contract_ numberid - node_
deployment_ {[key: string]: number}id
- contract_
id int - fqdn str
- id str
- The provider-assigned unique ID for this managed resource.
- name_
contract_ intid - node_
deployment_ Mapping[str, int]id
- contract_
id Number - fqdn String
- id String
- The provider-assigned unique ID for this managed resource.
- name_
contract_ Numberid - node_
deployment_ Map<Number>id
Package Details
- Repository
- threefold threefoldtech/pulumi-threefold
- License
- Apache-2.0
Threefold Grid v0.6.4 published on Tuesday, May 28, 2024 by Threefold