tencentcloud.MqttJwksAuthenticator
Explore with Pulumi AI
Provides a resource to create a MQTT jwks authenticator
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.MqttJwksAuthenticator("example", {
endpoint: "https://example.com",
from: "username",
instanceId: "mqtt-zxjwkr98",
refreshInterval: 60,
remark: "Remark.",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.MqttJwksAuthenticator("example",
endpoint="https://example.com",
from_="username",
instance_id="mqtt-zxjwkr98",
refresh_interval=60,
remark="Remark.")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewMqttJwksAuthenticator(ctx, "example", &tencentcloud.MqttJwksAuthenticatorArgs{
Endpoint: pulumi.String("https://example.com"),
From: pulumi.String("username"),
InstanceId: pulumi.String("mqtt-zxjwkr98"),
RefreshInterval: pulumi.Float64(60),
Remark: pulumi.String("Remark."),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = new Tencentcloud.MqttJwksAuthenticator("example", new()
{
Endpoint = "https://example.com",
From = "username",
InstanceId = "mqtt-zxjwkr98",
RefreshInterval = 60,
Remark = "Remark.",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.MqttJwksAuthenticator;
import com.pulumi.tencentcloud.MqttJwksAuthenticatorArgs;
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 example = new MqttJwksAuthenticator("example", MqttJwksAuthenticatorArgs.builder()
.endpoint("https://example.com")
.from("username")
.instanceId("mqtt-zxjwkr98")
.refreshInterval(60)
.remark("Remark.")
.build());
}
}
resources:
example:
type: tencentcloud:MqttJwksAuthenticator
properties:
endpoint: https://example.com
from: username
instanceId: mqtt-zxjwkr98
refreshInterval: 60
remark: Remark.
Or
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const example = new tencentcloud.MqttJwksAuthenticator("example", {
from: "password",
instanceId: "mqtt-zxjwkr98",
remark: "Remark.",
text: "your text content",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
example = tencentcloud.MqttJwksAuthenticator("example",
from_="password",
instance_id="mqtt-zxjwkr98",
remark="Remark.",
text="your text content")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/tencentcloud/tencentcloud"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := tencentcloud.NewMqttJwksAuthenticator(ctx, "example", &tencentcloud.MqttJwksAuthenticatorArgs{
From: pulumi.String("password"),
InstanceId: pulumi.String("mqtt-zxjwkr98"),
Remark: pulumi.String("Remark."),
Text: pulumi.String("your text content"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Tencentcloud = Pulumi.Tencentcloud;
return await Deployment.RunAsync(() =>
{
var example = new Tencentcloud.MqttJwksAuthenticator("example", new()
{
From = "password",
InstanceId = "mqtt-zxjwkr98",
Remark = "Remark.",
Text = "your text content",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.MqttJwksAuthenticator;
import com.pulumi.tencentcloud.MqttJwksAuthenticatorArgs;
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 example = new MqttJwksAuthenticator("example", MqttJwksAuthenticatorArgs.builder()
.from("password")
.instanceId("mqtt-zxjwkr98")
.remark("Remark.")
.text("your text content")
.build());
}
}
resources:
example:
type: tencentcloud:MqttJwksAuthenticator
properties:
from: password
instanceId: mqtt-zxjwkr98
remark: Remark.
text: your text content
Create MqttJwksAuthenticator Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MqttJwksAuthenticator(name: string, args: MqttJwksAuthenticatorArgs, opts?: CustomResourceOptions);
@overload
def MqttJwksAuthenticator(resource_name: str,
args: MqttJwksAuthenticatorArgs,
opts: Optional[ResourceOptions] = None)
@overload
def MqttJwksAuthenticator(resource_name: str,
opts: Optional[ResourceOptions] = None,
instance_id: Optional[str] = None,
endpoint: Optional[str] = None,
from_: Optional[str] = None,
mqtt_jwks_authenticator_id: Optional[str] = None,
refresh_interval: Optional[float] = None,
remark: Optional[str] = None,
text: Optional[str] = None)
func NewMqttJwksAuthenticator(ctx *Context, name string, args MqttJwksAuthenticatorArgs, opts ...ResourceOption) (*MqttJwksAuthenticator, error)
public MqttJwksAuthenticator(string name, MqttJwksAuthenticatorArgs args, CustomResourceOptions? opts = null)
public MqttJwksAuthenticator(String name, MqttJwksAuthenticatorArgs args)
public MqttJwksAuthenticator(String name, MqttJwksAuthenticatorArgs args, CustomResourceOptions options)
type: tencentcloud:MqttJwksAuthenticator
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 MqttJwksAuthenticatorArgs
- 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 MqttJwksAuthenticatorArgs
- 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 MqttJwksAuthenticatorArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MqttJwksAuthenticatorArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MqttJwksAuthenticatorArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MqttJwksAuthenticator 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 MqttJwksAuthenticator resource accepts the following input properties:
- Instance
Id string - Instance ID.
- Endpoint string
- JWKS endpoint.
- From string
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- Mqtt
Jwks stringAuthenticator Id - ID of the resource.
- Refresh
Interval double - JWKS refresh interval. unit: s.
- Remark string
- Remark.
- Text string
- JWKS text.
- Instance
Id string - Instance ID.
- Endpoint string
- JWKS endpoint.
- From string
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- Mqtt
Jwks stringAuthenticator Id - ID of the resource.
- Refresh
Interval float64 - JWKS refresh interval. unit: s.
- Remark string
- Remark.
- Text string
- JWKS text.
- instance
Id String - Instance ID.
- endpoint String
- JWKS endpoint.
- from String
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- mqtt
Jwks StringAuthenticator Id - ID of the resource.
- refresh
Interval Double - JWKS refresh interval. unit: s.
- remark String
- Remark.
- text String
- JWKS text.
- instance
Id string - Instance ID.
- endpoint string
- JWKS endpoint.
- from string
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- mqtt
Jwks stringAuthenticator Id - ID of the resource.
- refresh
Interval number - JWKS refresh interval. unit: s.
- remark string
- Remark.
- text string
- JWKS text.
- instance_
id str - Instance ID.
- endpoint str
- JWKS endpoint.
- from_ str
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- mqtt_
jwks_ strauthenticator_ id - ID of the resource.
- refresh_
interval float - JWKS refresh interval. unit: s.
- remark str
- Remark.
- text str
- JWKS text.
- instance
Id String - Instance ID.
- endpoint String
- JWKS endpoint.
- from String
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- mqtt
Jwks StringAuthenticator Id - ID of the resource.
- refresh
Interval Number - JWKS refresh interval. unit: s.
- remark String
- Remark.
- text String
- JWKS text.
Outputs
All input properties are implicitly available as output properties. Additionally, the MqttJwksAuthenticator 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 MqttJwksAuthenticator Resource
Get an existing MqttJwksAuthenticator 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?: MqttJwksAuthenticatorState, opts?: CustomResourceOptions): MqttJwksAuthenticator
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
endpoint: Optional[str] = None,
from_: Optional[str] = None,
instance_id: Optional[str] = None,
mqtt_jwks_authenticator_id: Optional[str] = None,
refresh_interval: Optional[float] = None,
remark: Optional[str] = None,
text: Optional[str] = None) -> MqttJwksAuthenticator
func GetMqttJwksAuthenticator(ctx *Context, name string, id IDInput, state *MqttJwksAuthenticatorState, opts ...ResourceOption) (*MqttJwksAuthenticator, error)
public static MqttJwksAuthenticator Get(string name, Input<string> id, MqttJwksAuthenticatorState? state, CustomResourceOptions? opts = null)
public static MqttJwksAuthenticator get(String name, Output<String> id, MqttJwksAuthenticatorState state, CustomResourceOptions options)
resources: _: type: tencentcloud:MqttJwksAuthenticator 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.
- Endpoint string
- JWKS endpoint.
- From string
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- Instance
Id string - Instance ID.
- Mqtt
Jwks stringAuthenticator Id - ID of the resource.
- Refresh
Interval double - JWKS refresh interval. unit: s.
- Remark string
- Remark.
- Text string
- JWKS text.
- Endpoint string
- JWKS endpoint.
- From string
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- Instance
Id string - Instance ID.
- Mqtt
Jwks stringAuthenticator Id - ID of the resource.
- Refresh
Interval float64 - JWKS refresh interval. unit: s.
- Remark string
- Remark.
- Text string
- JWKS text.
- endpoint String
- JWKS endpoint.
- from String
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- instance
Id String - Instance ID.
- mqtt
Jwks StringAuthenticator Id - ID of the resource.
- refresh
Interval Double - JWKS refresh interval. unit: s.
- remark String
- Remark.
- text String
- JWKS text.
- endpoint string
- JWKS endpoint.
- from string
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- instance
Id string - Instance ID.
- mqtt
Jwks stringAuthenticator Id - ID of the resource.
- refresh
Interval number - JWKS refresh interval. unit: s.
- remark string
- Remark.
- text string
- JWKS text.
- endpoint str
- JWKS endpoint.
- from_ str
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- instance_
id str - Instance ID.
- mqtt_
jwks_ strauthenticator_ id - ID of the resource.
- refresh_
interval float - JWKS refresh interval. unit: s.
- remark str
- Remark.
- text str
- JWKS text.
- endpoint String
- JWKS endpoint.
- from String
- Pass the key of JWT when connecting the device; Username - passed using the username field; Password - Pass using password field.
- instance
Id String - Instance ID.
- mqtt
Jwks StringAuthenticator Id - ID of the resource.
- refresh
Interval Number - JWKS refresh interval. unit: s.
- remark String
- Remark.
- text String
- JWKS text.
Import
MQTT jwks authenticator can be imported using the id, e.g.
$ pulumi import tencentcloud:index/mqttJwksAuthenticator:MqttJwksAuthenticator example mqtt-zxjwkr98
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.