tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
tencentcloud.getSsmProducts
Explore with Pulumi AI
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack
Use this data source to query detailed information of ssm products
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as tencentcloud from "@pulumi/tencentcloud";
const products = tencentcloud.getSsmProducts({});
import pulumi
import pulumi_tencentcloud as tencentcloud
products = tencentcloud.get_ssm_products()
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.GetSsmProducts(ctx, &tencentcloud.GetSsmProductsArgs{}, nil)
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 products = Tencentcloud.GetSsmProducts.Invoke();
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.tencentcloud.TencentcloudFunctions;
import com.pulumi.tencentcloud.inputs.GetSsmProductsArgs;
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 products = TencentcloudFunctions.getSsmProducts();
}
}
variables:
products:
fn::invoke:
function: tencentcloud:getSsmProducts
arguments: {}
Using getSsmProducts
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getSsmProducts(args: GetSsmProductsArgs, opts?: InvokeOptions): Promise<GetSsmProductsResult>
function getSsmProductsOutput(args: GetSsmProductsOutputArgs, opts?: InvokeOptions): Output<GetSsmProductsResult>
def get_ssm_products(id: Optional[str] = None,
result_output_file: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetSsmProductsResult
def get_ssm_products_output(id: Optional[pulumi.Input[str]] = None,
result_output_file: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetSsmProductsResult]
func GetSsmProducts(ctx *Context, args *GetSsmProductsArgs, opts ...InvokeOption) (*GetSsmProductsResult, error)
func GetSsmProductsOutput(ctx *Context, args *GetSsmProductsOutputArgs, opts ...InvokeOption) GetSsmProductsResultOutput
> Note: This function is named GetSsmProducts
in the Go SDK.
public static class GetSsmProducts
{
public static Task<GetSsmProductsResult> InvokeAsync(GetSsmProductsArgs args, InvokeOptions? opts = null)
public static Output<GetSsmProductsResult> Invoke(GetSsmProductsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetSsmProductsResult> getSsmProducts(GetSsmProductsArgs args, InvokeOptions options)
public static Output<GetSsmProductsResult> getSsmProducts(GetSsmProductsArgs args, InvokeOptions options)
fn::invoke:
function: tencentcloud:index/getSsmProducts:getSsmProducts
arguments:
# arguments dictionary
The following arguments are supported:
- Id string
- Result
Output stringFile - Used to save results.
- Id string
- Result
Output stringFile - Used to save results.
- id String
- result
Output StringFile - Used to save results.
- id string
- result
Output stringFile - Used to save results.
- id str
- result_
output_ strfile - Used to save results.
- id String
- result
Output StringFile - Used to save results.
getSsmProducts Result
The following output properties are available:
- Id string
- Products List<string>
- List of supported services.
- Result
Output stringFile
- Id string
- Products []string
- List of supported services.
- Result
Output stringFile
- id String
- products List<String>
- List of supported services.
- result
Output StringFile
- id string
- products string[]
- List of supported services.
- result
Output stringFile
- id str
- products Sequence[str]
- List of supported services.
- result_
output_ strfile
- id String
- products List<String>
- List of supported services.
- result
Output StringFile
Package Details
- Repository
- tencentcloud tencentcloudstack/terraform-provider-tencentcloud
- License
- Notes
- This Pulumi package is based on the
tencentcloud
Terraform Provider.
tencentcloud 1.81.189 published on Wednesday, Apr 30, 2025 by tencentcloudstack