1. Packages
  2. Alibaba Cloud
  3. API Docs
  4. cloudmonitor
  5. ServiceBasicPublic
Alibaba Cloud v3.55.1 published on Tuesday, May 14, 2024 by Pulumi

alicloud.cloudmonitor.ServiceBasicPublic

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.55.1 published on Tuesday, May 14, 2024 by Pulumi

    Provides a Cloud Monitor Service Basic Public resource.

    For information about Cloud Monitor Service Basic Public and how to use it, see What is Basic 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.ServiceBasicPublic("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.ServiceBasicPublic("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.NewServiceBasicPublic(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.ServiceBasicPublic("default");
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.cloudmonitor.ServiceBasicPublic;
    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 ServiceBasicPublic("default");
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      default:
        type: alicloud:cloudmonitor:ServiceBasicPublic
    

    Create ServiceBasicPublic Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ServiceBasicPublic(name: string, args?: ServiceBasicPublicArgs, opts?: CustomResourceOptions);
    @overload
    def ServiceBasicPublic(resource_name: str,
                           args: Optional[ServiceBasicPublicArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ServiceBasicPublic(resource_name: str,
                           opts: Optional[ResourceOptions] = None)
    func NewServiceBasicPublic(ctx *Context, name string, args *ServiceBasicPublicArgs, opts ...ResourceOption) (*ServiceBasicPublic, error)
    public ServiceBasicPublic(string name, ServiceBasicPublicArgs? args = null, CustomResourceOptions? opts = null)
    public ServiceBasicPublic(String name, ServiceBasicPublicArgs args)
    public ServiceBasicPublic(String name, ServiceBasicPublicArgs args, CustomResourceOptions options)
    
    type: alicloud:cloudmonitor:ServiceBasicPublic
    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 ServiceBasicPublicArgs
    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 ServiceBasicPublicArgs
    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 ServiceBasicPublicArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ServiceBasicPublicArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ServiceBasicPublicArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var serviceBasicPublicResource = new AliCloud.CloudMonitor.ServiceBasicPublic("serviceBasicPublicResource");
    
    example, err := cloudmonitor.NewServiceBasicPublic(ctx, "serviceBasicPublicResource", nil)
    
    var serviceBasicPublicResource = new ServiceBasicPublic("serviceBasicPublicResource");
    
    service_basic_public_resource = alicloud.cloudmonitor.ServiceBasicPublic("serviceBasicPublicResource")
    
    const serviceBasicPublicResource = new alicloud.cloudmonitor.ServiceBasicPublic("serviceBasicPublicResource", {});
    
    type: alicloud:cloudmonitor:ServiceBasicPublic
    properties: {}
    

    ServiceBasicPublic 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 ServiceBasicPublic resource accepts the following input properties:

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ServiceBasicPublic resource produces the following output properties:

    CreateTime string
    The creation time of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    CreateTime string
    The creation time of the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    createTime String
    The creation time of the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    createTime 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.
    createTime String
    The creation time of the resource.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing ServiceBasicPublic Resource

    Get an existing ServiceBasicPublic 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?: ServiceBasicPublicState, opts?: CustomResourceOptions): ServiceBasicPublic
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None) -> ServiceBasicPublic
    func GetServiceBasicPublic(ctx *Context, name string, id IDInput, state *ServiceBasicPublicState, opts ...ResourceOption) (*ServiceBasicPublic, error)
    public static ServiceBasicPublic Get(string name, Input<string> id, ServiceBasicPublicState? state, CustomResourceOptions? opts = null)
    public static ServiceBasicPublic get(String name, Output<String> id, ServiceBasicPublicState 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.
    The following state arguments are supported:
    CreateTime string
    The creation time of the resource.
    CreateTime string
    The creation time of the resource.
    createTime String
    The creation time of the resource.
    createTime string
    The creation time of the resource.
    create_time str
    The creation time of the resource.
    createTime String
    The creation time of the resource.

    Import

    Cloud Monitor Service Basic Public can be imported using the id, e.g.

    $ pulumi import alicloud:cloudmonitor/serviceBasicPublic:ServiceBasicPublic 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.
    alicloud logo
    Alibaba Cloud v3.55.1 published on Tuesday, May 14, 2024 by Pulumi