tencentcloud.MpsEvent
Provides a resource to create a mps event
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const event = new tencentcloud.MpsEvent("event", {
    description: "event description",
    eventName: "you-event-name",
});
import pulumi
import pulumi_tencentcloud as tencentcloud
event = tencentcloud.MpsEvent("event",
    description="event description",
    event_name="you-event-name")
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.NewMpsEvent(ctx, "event", &tencentcloud.MpsEventArgs{
			Description: pulumi.String("event description"),
			EventName:   pulumi.String("you-event-name"),
		})
		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 @event = new Tencentcloud.MpsEvent("event", new()
    {
        Description = "event description",
        EventName = "you-event-name",
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.MpsEvent;
import com.pulumi.tencentcloud.MpsEventArgs;
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 event = new MpsEvent("event", MpsEventArgs.builder()
            .description("event description")
            .eventName("you-event-name")
            .build());
    }
}
resources:
  event:
    type: tencentcloud:MpsEvent
    properties:
      description: event description
      eventName: you-event-name
Create MpsEvent Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new MpsEvent(name: string, args: MpsEventArgs, opts?: CustomResourceOptions);@overload
def MpsEvent(resource_name: str,
             args: MpsEventArgs,
             opts: Optional[ResourceOptions] = None)
@overload
def MpsEvent(resource_name: str,
             opts: Optional[ResourceOptions] = None,
             event_name: Optional[str] = None,
             description: Optional[str] = None,
             mps_event_id: Optional[str] = None)func NewMpsEvent(ctx *Context, name string, args MpsEventArgs, opts ...ResourceOption) (*MpsEvent, error)public MpsEvent(string name, MpsEventArgs args, CustomResourceOptions? opts = null)
public MpsEvent(String name, MpsEventArgs args)
public MpsEvent(String name, MpsEventArgs args, CustomResourceOptions options)
type: tencentcloud:MpsEvent
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 MpsEventArgs
- 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 MpsEventArgs
- 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 MpsEventArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args MpsEventArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args MpsEventArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
MpsEvent 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 MpsEvent resource accepts the following input properties:
- EventName string
- Event name.
- Description string
- Event description.
- MpsEvent stringId 
- ID of the resource.
- EventName string
- Event name.
- Description string
- Event description.
- MpsEvent stringId 
- ID of the resource.
- eventName String
- Event name.
- description String
- Event description.
- mpsEvent StringId 
- ID of the resource.
- eventName string
- Event name.
- description string
- Event description.
- mpsEvent stringId 
- ID of the resource.
- event_name str
- Event name.
- description str
- Event description.
- mps_event_ strid 
- ID of the resource.
- eventName String
- Event name.
- description String
- Event description.
- mpsEvent StringId 
- ID of the resource.
Outputs
All input properties are implicitly available as output properties. Additionally, the MpsEvent 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 MpsEvent Resource
Get an existing MpsEvent 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?: MpsEventState, opts?: CustomResourceOptions): MpsEvent@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        description: Optional[str] = None,
        event_name: Optional[str] = None,
        mps_event_id: Optional[str] = None) -> MpsEventfunc GetMpsEvent(ctx *Context, name string, id IDInput, state *MpsEventState, opts ...ResourceOption) (*MpsEvent, error)public static MpsEvent Get(string name, Input<string> id, MpsEventState? state, CustomResourceOptions? opts = null)public static MpsEvent get(String name, Output<String> id, MpsEventState state, CustomResourceOptions options)resources:  _:    type: tencentcloud:MpsEvent    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.
- Description string
- Event description.
- EventName string
- Event name.
- MpsEvent stringId 
- ID of the resource.
- Description string
- Event description.
- EventName string
- Event name.
- MpsEvent stringId 
- ID of the resource.
- description String
- Event description.
- eventName String
- Event name.
- mpsEvent StringId 
- ID of the resource.
- description string
- Event description.
- eventName string
- Event name.
- mpsEvent stringId 
- ID of the resource.
- description str
- Event description.
- event_name str
- Event name.
- mps_event_ strid 
- ID of the resource.
- description String
- Event description.
- eventName String
- Event name.
- mpsEvent StringId 
- ID of the resource.
Import
mps event can be imported using the id, e.g.
$ pulumi import tencentcloud:index/mpsEvent:MpsEvent event event_id
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 tencentcloudTerraform Provider.
