yandex.AlbHttpRouter
Explore with Pulumi AI
Creates an HTTP Router in the specified folder. For more information, see the official documentation.
Example Usage
using Pulumi;
using Yandex = Pulumi.Yandex;
class MyStack : Stack
{
public MyStack()
{
var tf_router = new Yandex.AlbHttpRouter("tf-router", new Yandex.AlbHttpRouterArgs
{
Labels =
{
{ "empty-label", "" },
{ "s",
{
,
} },
{ "tf-label", "tf-label-value" },
},
});
}
}
package main
import (
"github.com/pulumi/pulumi-yandex/sdk/go/yandex"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := yandex.NewAlbHttpRouter(ctx, "tf-router", &yandex.AlbHttpRouterArgs{
Labels: pulumi.StringMap{
"empty-label": pulumi.String(""),
"s": pulumi.String{
nil,
},
"tf-label": pulumi.String("tf-label-value"),
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_yandex as yandex
tf_router = yandex.AlbHttpRouter("tf-router", labels={
"empty-label": "",
"s": [{}],
"tf-label": "tf-label-value",
})
import * as pulumi from "@pulumi/pulumi";
import * as yandex from "@pulumi/yandex";
const tf_router = new yandex.AlbHttpRouter("tf-router", {
labels: {
"empty-label": "",
s: [{}],
"tf-label": "tf-label-value",
},
});
Coming soon!
Create AlbHttpRouter Resource
new AlbHttpRouter(name: string, args?: AlbHttpRouterArgs, opts?: CustomResourceOptions);
@overload
def AlbHttpRouter(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
folder_id: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None)
@overload
def AlbHttpRouter(resource_name: str,
args: Optional[AlbHttpRouterArgs] = None,
opts: Optional[ResourceOptions] = None)
func NewAlbHttpRouter(ctx *Context, name string, args *AlbHttpRouterArgs, opts ...ResourceOption) (*AlbHttpRouter, error)
public AlbHttpRouter(string name, AlbHttpRouterArgs? args = null, CustomResourceOptions? opts = null)
public AlbHttpRouter(String name, AlbHttpRouterArgs args)
public AlbHttpRouter(String name, AlbHttpRouterArgs args, CustomResourceOptions options)
type: yandex:AlbHttpRouter
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlbHttpRouterArgs
- 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 AlbHttpRouterArgs
- 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 AlbHttpRouterArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlbHttpRouterArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AlbHttpRouterArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
AlbHttpRouter 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 AlbHttpRouter resource accepts the following input properties:
- Description string
An optional description of the HTTP Router. Provide this property when you create the resource.
- Folder
Id string The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- Labels Dictionary<string, string>
Labels to assign to this HTTP Router. A list of key/value pairs.
- Name string
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- Description string
An optional description of the HTTP Router. Provide this property when you create the resource.
- Folder
Id string The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- Labels map[string]string
Labels to assign to this HTTP Router. A list of key/value pairs.
- Name string
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- description String
An optional description of the HTTP Router. Provide this property when you create the resource.
- folder
Id String The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- labels Map<String,String>
Labels to assign to this HTTP Router. A list of key/value pairs.
- name String
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- description string
An optional description of the HTTP Router. Provide this property when you create the resource.
- folder
Id string The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- labels {[key: string]: string}
Labels to assign to this HTTP Router. A list of key/value pairs.
- name string
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- description str
An optional description of the HTTP Router. Provide this property when you create the resource.
- folder_
id str The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- labels Mapping[str, str]
Labels to assign to this HTTP Router. A list of key/value pairs.
- name str
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- description String
An optional description of the HTTP Router. Provide this property when you create the resource.
- folder
Id String The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- labels Map<String>
Labels to assign to this HTTP Router. A list of key/value pairs.
- name String
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
Outputs
All input properties are implicitly available as output properties. Additionally, the AlbHttpRouter resource produces the following output properties:
- created_
at str The HTTP Router creation timestamp.
- id str
The provider-assigned unique ID for this managed resource.
Look up Existing AlbHttpRouter Resource
Get an existing AlbHttpRouter 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?: AlbHttpRouterState, opts?: CustomResourceOptions): AlbHttpRouter
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
created_at: Optional[str] = None,
description: Optional[str] = None,
folder_id: Optional[str] = None,
labels: Optional[Mapping[str, str]] = None,
name: Optional[str] = None) -> AlbHttpRouter
func GetAlbHttpRouter(ctx *Context, name string, id IDInput, state *AlbHttpRouterState, opts ...ResourceOption) (*AlbHttpRouter, error)
public static AlbHttpRouter Get(string name, Input<string> id, AlbHttpRouterState? state, CustomResourceOptions? opts = null)
public static AlbHttpRouter get(String name, Output<String> id, AlbHttpRouterState 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.
- Created
At string The HTTP Router creation timestamp.
- Description string
An optional description of the HTTP Router. Provide this property when you create the resource.
- Folder
Id string The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- Labels Dictionary<string, string>
Labels to assign to this HTTP Router. A list of key/value pairs.
- Name string
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- Created
At string The HTTP Router creation timestamp.
- Description string
An optional description of the HTTP Router. Provide this property when you create the resource.
- Folder
Id string The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- Labels map[string]string
Labels to assign to this HTTP Router. A list of key/value pairs.
- Name string
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- created
At String The HTTP Router creation timestamp.
- description String
An optional description of the HTTP Router. Provide this property when you create the resource.
- folder
Id String The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- labels Map<String,String>
Labels to assign to this HTTP Router. A list of key/value pairs.
- name String
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- created
At string The HTTP Router creation timestamp.
- description string
An optional description of the HTTP Router. Provide this property when you create the resource.
- folder
Id string The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- labels {[key: string]: string}
Labels to assign to this HTTP Router. A list of key/value pairs.
- name string
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- created_
at str The HTTP Router creation timestamp.
- description str
An optional description of the HTTP Router. Provide this property when you create the resource.
- folder_
id str The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- labels Mapping[str, str]
Labels to assign to this HTTP Router. A list of key/value pairs.
- name str
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
- created
At String The HTTP Router creation timestamp.
- description String
An optional description of the HTTP Router. Provide this property when you create the resource.
- folder
Id String The ID of the folder to which the resource belongs. If omitted, the provider folder is used.
- labels Map<String>
Labels to assign to this HTTP Router. A list of key/value pairs.
- name String
Name of the HTTP Router. Provided by the client when the HTTP Router is created.
Import
An HTTP Router can be imported using the id
of the resource, e.g.
$ pulumi import yandex:index/albHttpRouter:AlbHttpRouter default http_router_id
Package Details
- Repository
- Yandex pulumi/pulumi-yandex
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
yandex
Terraform Provider.