alicloud.cloudmonitor.ServiceEnterprisePublic
Explore with Pulumi AI
Provides a Cloud Monitor Service Enterprise Public resource. Hybrid Cloud Monitoring.
For information about Cloud Monitor Service Enterprise Public and how to use it, see What is Enterprise Public.
NOTE: Available since v1.215.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.cloudmonitor.ServiceEnterprisePublic("default", {});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
name = "terraform-example"
default = alicloud.cloudmonitor.ServiceEnterprisePublic("default")
package main
import (
"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudmonitor"
"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 := cloudmonitor.NewServiceEnterprisePublic(ctx, "default", nil)
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.CloudMonitor.ServiceEnterprisePublic("default");
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.cloudmonitor.ServiceEnterprisePublic;
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 ServiceEnterprisePublic("default");
}
}
configuration:
name:
type: string
default: terraform-example
resources:
default:
type: alicloud:cloudmonitor:ServiceEnterprisePublic
Create ServiceEnterprisePublic Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ServiceEnterprisePublic(name: string, args?: ServiceEnterprisePublicArgs, opts?: CustomResourceOptions);
@overload
def ServiceEnterprisePublic(resource_name: str,
args: Optional[ServiceEnterprisePublicArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def ServiceEnterprisePublic(resource_name: str,
opts: Optional[ResourceOptions] = None)
func NewServiceEnterprisePublic(ctx *Context, name string, args *ServiceEnterprisePublicArgs, opts ...ResourceOption) (*ServiceEnterprisePublic, error)
public ServiceEnterprisePublic(string name, ServiceEnterprisePublicArgs? args = null, CustomResourceOptions? opts = null)
public ServiceEnterprisePublic(String name, ServiceEnterprisePublicArgs args)
public ServiceEnterprisePublic(String name, ServiceEnterprisePublicArgs args, CustomResourceOptions options)
type: alicloud:cloudmonitor:ServiceEnterprisePublic
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 ServiceEnterprisePublicArgs
- 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 ServiceEnterprisePublicArgs
- 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 ServiceEnterprisePublicArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ServiceEnterprisePublicArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ServiceEnterprisePublicArgs
- 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 serviceEnterprisePublicResource = new AliCloud.CloudMonitor.ServiceEnterprisePublic("serviceEnterprisePublicResource");
example, err := cloudmonitor.NewServiceEnterprisePublic(ctx, "serviceEnterprisePublicResource", nil)
var serviceEnterprisePublicResource = new ServiceEnterprisePublic("serviceEnterprisePublicResource");
service_enterprise_public_resource = alicloud.cloudmonitor.ServiceEnterprisePublic("serviceEnterprisePublicResource")
const serviceEnterprisePublicResource = new alicloud.cloudmonitor.ServiceEnterprisePublic("serviceEnterprisePublicResource", {});
type: alicloud:cloudmonitor:ServiceEnterprisePublic
properties: {}
ServiceEnterprisePublic 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 ServiceEnterprisePublic resource accepts the following input properties:
Outputs
All input properties are implicitly available as output properties. Additionally, the ServiceEnterprisePublic resource produces the following output properties:
- Create
Time string - The creation time of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- Create
Time string - The creation time of the resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- create
Time String - The creation time of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
- create
Time string - The creation time of the resource.
- id string
- The provider-assigned unique ID for this managed resource.
- create_
time str - The creation time of the resource.
- id str
- The provider-assigned unique ID for this managed resource.
- create
Time String - The creation time of the resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing ServiceEnterprisePublic Resource
Get an existing ServiceEnterprisePublic 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?: ServiceEnterprisePublicState, opts?: CustomResourceOptions): ServiceEnterprisePublic
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
create_time: Optional[str] = None) -> ServiceEnterprisePublic
func GetServiceEnterprisePublic(ctx *Context, name string, id IDInput, state *ServiceEnterprisePublicState, opts ...ResourceOption) (*ServiceEnterprisePublic, error)
public static ServiceEnterprisePublic Get(string name, Input<string> id, ServiceEnterprisePublicState? state, CustomResourceOptions? opts = null)
public static ServiceEnterprisePublic get(String name, Output<String> id, ServiceEnterprisePublicState 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.
- Create
Time string - The creation time of the resource.
- Create
Time string - The creation time of the resource.
- create
Time String - The creation time of the resource.
- create
Time string - The creation time of the resource.
- create_
time str - The creation time of the resource.
- create
Time String - The creation time of the resource.
Import
Cloud Monitor Service Enterprise Public can be imported using the id, e.g.
$ pulumi import alicloud:cloudmonitor/serviceEnterprisePublic:ServiceEnterprisePublic 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.