alicloud.message.ServiceTopic
Explore with Pulumi AI
Provides a Message Service Topic resource.
For information about Message Service Topic and how to use it, see What is Topic.
NOTE: Available since v1.188.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "terraform-example";
const _default = new alicloud.message.ServiceTopic("default", {
topicName: name,
maxMessageSize: 16888,
enableLogging: true,
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.message.ServiceTopic("default",
topic_name=name,
max_message_size=16888,
enable_logging=True)
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/message"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "terraform-example"
if param := cfg.Get("name"); param != "" {
name = param
}
_, err := message.NewServiceTopic(ctx, "default", &message.ServiceTopicArgs{
TopicName: pulumi.String(name),
MaxMessageSize: pulumi.Int(16888),
EnableLogging: pulumi.Bool(true),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() =>
{
var config = new Config();
var name = config.Get("name") ?? "terraform-example";
var @default = new AliCloud.Message.ServiceTopic("default", new()
{
TopicName = name,
MaxMessageSize = 16888,
EnableLogging = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.message.ServiceTopic;
import com.pulumi.alicloud.message.ServiceTopicArgs;
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) {
final var config = ctx.config();
final var name = config.get("name").orElse("terraform-example");
var default_ = new ServiceTopic("default", ServiceTopicArgs.builder()
.topicName(name)
.maxMessageSize(16888)
.enableLogging(true)
.build());
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:message:ServiceTopic
properties:
topicName: ${name}
maxMessageSize: 16888
enableLogging: true
Create ServiceTopic Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceTopic(name: string, args: ServiceTopicArgs, opts?: CustomResourceOptions);
@overload
def ServiceTopic(resource_name: str,
args: ServiceTopicArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceTopic(resource_name: str,
opts: Optional[ResourceOptions] = None,
topic_name: Optional[str] = None,
enable_logging: Optional[bool] = None,
logging_enabled: Optional[bool] = None,
max_message_size: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None)
func NewServiceTopic(ctx *Context, name string, args ServiceTopicArgs, opts ...ResourceOption) (*ServiceTopic, error)
public ServiceTopic(string name, ServiceTopicArgs args, CustomResourceOptions? opts = null)
public ServiceTopic(String name, ServiceTopicArgs args)
public ServiceTopic(String name, ServiceTopicArgs args, CustomResourceOptions options)
type: alicloud:message:ServiceTopic
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 ServiceTopicArgs
- 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 ServiceTopicArgs
- 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 ServiceTopicArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceTopicArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceTopicArgs
- 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 serviceTopicResource = new AliCloud.Message.ServiceTopic("serviceTopicResource", new()
{
TopicName = "string",
EnableLogging = false,
MaxMessageSize = 0,
Tags =
{
{ "string", "string" },
},
});
example, err := message.NewServiceTopic(ctx, "serviceTopicResource", &message.ServiceTopicArgs{
TopicName: pulumi.String("string"),
EnableLogging: pulumi.Bool(false),
MaxMessageSize: pulumi.Int(0),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var serviceTopicResource = new ServiceTopic("serviceTopicResource", ServiceTopicArgs.builder()
.topicName("string")
.enableLogging(false)
.maxMessageSize(0)
.tags(Map.of("string", "string"))
.build());
service_topic_resource = alicloud.message.ServiceTopic("serviceTopicResource",
topic_name="string",
enable_logging=False,
max_message_size=0,
tags={
"string": "string",
})
const serviceTopicResource = new alicloud.message.ServiceTopic("serviceTopicResource", {
topicName: "string",
enableLogging: false,
maxMessageSize: 0,
tags: {
string: "string",
},
});
type: alicloud:message:ServiceTopic
properties:
enableLogging: false
maxMessageSize: 0
tags:
string: string
topicName: string
ServiceTopic 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 ServiceTopic resource accepts the following input properties:
- Topic
Name string The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- Enable
Logging bool - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - Logging
Enabled bool - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - Max
Message intSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Topic
Name string The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- Enable
Logging bool - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - Logging
Enabled bool - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - Max
Message intSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - map[string]string
- A mapping of tags to assign to the resource.
- topic
Name String The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- enable
Logging Boolean - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - logging
Enabled Boolean - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - max
Message IntegerSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - Map<String,String>
- A mapping of tags to assign to the resource.
- topic
Name string The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- enable
Logging boolean - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - logging
Enabled boolean - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - max
Message numberSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- topic_
name str The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- enable_
logging bool - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - logging_
enabled bool - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - max_
message_ intsize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- topic
Name String The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- enable
Logging Boolean - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - logging
Enabled Boolean - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - max
Message NumberSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - Map<String>
- A mapping of tags to assign to the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceTopic resource produces the following output properties:
- Create
Time string - (Available since v1.241.0) The time when the topic was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Create
Time string - (Available since v1.241.0) The time when the topic was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- create
Time String - (Available since v1.241.0) The time when the topic was created.
- id String
- The provider-assigned unique ID for this managed resource.
- create
Time string - (Available since v1.241.0) The time when the topic was created.
- id string
- The provider-assigned unique ID for this managed resource.
- create_
time str - (Available since v1.241.0) The time when the topic was created.
- id str
- The provider-assigned unique ID for this managed resource.
- create
Time String - (Available since v1.241.0) The time when the topic was created.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ServiceTopic Resource
Get an existing ServiceTopic 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?: ServiceTopicState, opts?: CustomResourceOptions): ServiceTopic
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None,
enable_logging: Optional[bool] = None,
logging_enabled: Optional[bool] = None,
max_message_size: Optional[int] = None,
tags: Optional[Mapping[str, str]] = None,
topic_name: Optional[str] = None) -> ServiceTopic
func GetServiceTopic(ctx *Context, name string, id IDInput, state *ServiceTopicState, opts ...ResourceOption) (*ServiceTopic, error)
public static ServiceTopic Get(string name, Input<string> id, ServiceTopicState? state, CustomResourceOptions? opts = null)
public static ServiceTopic get(String name, Output<String> id, ServiceTopicState state, CustomResourceOptions options)
resources: _: type: alicloud:message:ServiceTopic 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.
- Create
Time string - (Available since v1.241.0) The time when the topic was created.
- Enable
Logging bool - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - Logging
Enabled bool - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - Max
Message intSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - Dictionary<string, string>
- A mapping of tags to assign to the resource.
- Topic
Name string The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- Create
Time string - (Available since v1.241.0) The time when the topic was created.
- Enable
Logging bool - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - Logging
Enabled bool - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - Max
Message intSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - map[string]string
- A mapping of tags to assign to the resource.
- Topic
Name string The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- create
Time String - (Available since v1.241.0) The time when the topic was created.
- enable
Logging Boolean - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - logging
Enabled Boolean - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - max
Message IntegerSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - Map<String,String>
- A mapping of tags to assign to the resource.
- topic
Name String The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- create
Time string - (Available since v1.241.0) The time when the topic was created.
- enable
Logging boolean - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - logging
Enabled boolean - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - max
Message numberSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - {[key: string]: string}
- A mapping of tags to assign to the resource.
- topic
Name string The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- create_
time str - (Available since v1.241.0) The time when the topic was created.
- enable_
logging bool - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - logging_
enabled bool - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - max_
message_ intsize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - Mapping[str, str]
- A mapping of tags to assign to the resource.
- topic_
name str The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
- create
Time String - (Available since v1.241.0) The time when the topic was created.
- enable
Logging Boolean - Specifies whether to enable the logging feature. Default value:
false
. Valid values: - logging
Enabled Boolean - . Field
logging_enabled
has been deprecated from provider version 1.241.0. New fieldenable_logging
instead. - max
Message NumberSize - The maximum length of the message that is sent to the topic. Default value:
65536
. Valid values:1024
to65536
. Unit: bytes. - Map<String>
- A mapping of tags to assign to the resource.
- topic
Name String The name of the topic.
The following arguments will be discarded. Please use new fields as soon as possible:
Import
Message Service Topic can be imported using the id, e.g.
$ pulumi import alicloud:message/serviceTopic:ServiceTopic example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
alicloud
Terraform Provider.