1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. oos
  5. getSecretParameters
Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 by Pulumi

alicloud.oos.getSecretParameters

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.66.0 published on Friday, Nov 15, 2024 by Pulumi

    This data source provides the Oos Secret Parameters of the current Alibaba Cloud user.

    NOTE: Available since v1.147.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.oos.SecretParameter("default", {
        secretParameterName: name,
        value: "tf-testacc-oos_secret_parameter",
        type: "Secret",
        description: name,
        constraints: `  {
        "AllowedValues": [
            "tf-testacc-oos_secret_parameter"
        ],
        "AllowedPattern": "tf-testacc-oos_secret_parameter",
        "MinLength": 1,
        "MaxLength": 100
      }
    `,
        tags: {
            Created: "TF",
            For: "SecretParameter",
        },
    });
    const ids = alicloud.oos.getSecretParametersOutput({
        ids: [_default.id],
    });
    export const oosSecretParameterId0 = ids.apply(ids => ids.parameters?.[0]?.id);
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.oos.SecretParameter("default",
        secret_parameter_name=name,
        value="tf-testacc-oos_secret_parameter",
        type="Secret",
        description=name,
        constraints="""  {
        "AllowedValues": [
            "tf-testacc-oos_secret_parameter"
        ],
        "AllowedPattern": "tf-testacc-oos_secret_parameter",
        "MinLength": 1,
        "MaxLength": 100
      }
    """,
        tags={
            "Created": "TF",
            "For": "SecretParameter",
        })
    ids = alicloud.oos.get_secret_parameters_output(ids=[default.id])
    pulumi.export("oosSecretParameterId0", ids.parameters[0].id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/oos"
    	"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 := oos.NewSecretParameter(ctx, "default", &oos.SecretParameterArgs{
    			SecretParameterName: pulumi.String(name),
    			Value:               pulumi.String("tf-testacc-oos_secret_parameter"),
    			Type:                pulumi.String("Secret"),
    			Description:         pulumi.String(name),
    			Constraints: pulumi.String(`  {
        "AllowedValues": [
            "tf-testacc-oos_secret_parameter"
        ],
        "AllowedPattern": "tf-testacc-oos_secret_parameter",
        "MinLength": 1,
        "MaxLength": 100
      }
    `),
    			Tags: pulumi.StringMap{
    				"Created": pulumi.String("TF"),
    				"For":     pulumi.String("SecretParameter"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		ids := oos.GetSecretParametersOutput(ctx, oos.GetSecretParametersOutputArgs{
    			Ids: pulumi.StringArray{
    				_default.ID(),
    			},
    		}, nil)
    		ctx.Export("oosSecretParameterId0", ids.ApplyT(func(ids oos.GetSecretParametersResult) (*string, error) {
    			return &ids.Parameters[0].Id, nil
    		}).(pulumi.StringPtrOutput))
    		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.Oos.SecretParameter("default", new()
        {
            SecretParameterName = name,
            Value = "tf-testacc-oos_secret_parameter",
            Type = "Secret",
            Description = name,
            Constraints = @"  {
        ""AllowedValues"": [
            ""tf-testacc-oos_secret_parameter""
        ],
        ""AllowedPattern"": ""tf-testacc-oos_secret_parameter"",
        ""MinLength"": 1,
        ""MaxLength"": 100
      }
    ",
            Tags = 
            {
                { "Created", "TF" },
                { "For", "SecretParameter" },
            },
        });
    
        var ids = AliCloud.Oos.GetSecretParameters.Invoke(new()
        {
            Ids = new[]
            {
                @default.Id,
            },
        });
    
        return new Dictionary<string, object?>
        {
            ["oosSecretParameterId0"] = ids.Apply(getSecretParametersResult => getSecretParametersResult.Parameters[0]?.Id),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.oos.SecretParameter;
    import com.pulumi.alicloud.oos.SecretParameterArgs;
    import com.pulumi.alicloud.oos.OosFunctions;
    import com.pulumi.alicloud.oos.inputs.GetSecretParametersArgs;
    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 SecretParameter("default", SecretParameterArgs.builder()
                .secretParameterName(name)
                .value("tf-testacc-oos_secret_parameter")
                .type("Secret")
                .description(name)
                .constraints("""
      {
        "AllowedValues": [
            "tf-testacc-oos_secret_parameter"
        ],
        "AllowedPattern": "tf-testacc-oos_secret_parameter",
        "MinLength": 1,
        "MaxLength": 100
      }
                """)
                .tags(Map.ofEntries(
                    Map.entry("Created", "TF"),
                    Map.entry("For", "SecretParameter")
                ))
                .build());
    
            final var ids = OosFunctions.getSecretParameters(GetSecretParametersArgs.builder()
                .ids(default_.id())
                .build());
    
            ctx.export("oosSecretParameterId0", ids.applyValue(getSecretParametersResult -> getSecretParametersResult).applyValue(ids -> ids.applyValue(getSecretParametersResult -> getSecretParametersResult.parameters()[0].id())));
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    resources:
      default:
        type: alicloud:oos:SecretParameter
        properties:
          secretParameterName: ${name}
          value: tf-testacc-oos_secret_parameter
          type: Secret
          description: ${name}
          constraints: |2
              {
                "AllowedValues": [
                    "tf-testacc-oos_secret_parameter"
                ],
                "AllowedPattern": "tf-testacc-oos_secret_parameter",
                "MinLength": 1,
                "MaxLength": 100
              }
          tags:
            Created: TF
            For: SecretParameter
    variables:
      ids:
        fn::invoke:
          Function: alicloud:oos:getSecretParameters
          Arguments:
            ids:
              - ${default.id}
    outputs:
      oosSecretParameterId0: ${ids.parameters[0].id}
    

    Using getSecretParameters

    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 getSecretParameters(args: GetSecretParametersArgs, opts?: InvokeOptions): Promise<GetSecretParametersResult>
    function getSecretParametersOutput(args: GetSecretParametersOutputArgs, opts?: InvokeOptions): Output<GetSecretParametersResult>
    def get_secret_parameters(enable_details: Optional[bool] = None,
                              ids: Optional[Sequence[str]] = None,
                              name_regex: Optional[str] = None,
                              output_file: Optional[str] = None,
                              resource_group_id: Optional[str] = None,
                              secret_parameter_name: Optional[str] = None,
                              sort_field: Optional[str] = None,
                              sort_order: Optional[str] = None,
                              tags: Optional[Mapping[str, str]] = None,
                              with_decryption: Optional[bool] = None,
                              opts: Optional[InvokeOptions] = None) -> GetSecretParametersResult
    def get_secret_parameters_output(enable_details: Optional[pulumi.Input[bool]] = None,
                              ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                              name_regex: Optional[pulumi.Input[str]] = None,
                              output_file: Optional[pulumi.Input[str]] = None,
                              resource_group_id: Optional[pulumi.Input[str]] = None,
                              secret_parameter_name: Optional[pulumi.Input[str]] = None,
                              sort_field: Optional[pulumi.Input[str]] = None,
                              sort_order: Optional[pulumi.Input[str]] = None,
                              tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                              with_decryption: Optional[pulumi.Input[bool]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetSecretParametersResult]
    func GetSecretParameters(ctx *Context, args *GetSecretParametersArgs, opts ...InvokeOption) (*GetSecretParametersResult, error)
    func GetSecretParametersOutput(ctx *Context, args *GetSecretParametersOutputArgs, opts ...InvokeOption) GetSecretParametersResultOutput

    > Note: This function is named GetSecretParameters in the Go SDK.

    public static class GetSecretParameters 
    {
        public static Task<GetSecretParametersResult> InvokeAsync(GetSecretParametersArgs args, InvokeOptions? opts = null)
        public static Output<GetSecretParametersResult> Invoke(GetSecretParametersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSecretParametersResult> getSecretParameters(GetSecretParametersArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: alicloud:oos/getSecretParameters:getSecretParameters
      arguments:
        # arguments dictionary

    The following arguments are supported:

    EnableDetails bool
    Whether to query the detailed list of resource attributes. Default value: false.
    Ids List<string>
    A list of Secret Parameter IDs.
    NameRegex string
    A regex string to filter results by Secret Parameter name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    ResourceGroupId string
    The ID of the Resource Group.
    SecretParameterName string
    The name of the Secret Parameter.
    SortField string
    The field used to sort the query results. Valid values: Name, CreatedDate.
    SortOrder string
    The order in which the entries are sorted. Default value: Descending. Valid values: Ascending, Descending.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    WithDecryption bool
    Specifies whether to decrypt the parameter value. Default value: false. Note: with_decryption takes effect only if enable_details is set to true.
    EnableDetails bool
    Whether to query the detailed list of resource attributes. Default value: false.
    Ids []string
    A list of Secret Parameter IDs.
    NameRegex string
    A regex string to filter results by Secret Parameter name.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    ResourceGroupId string
    The ID of the Resource Group.
    SecretParameterName string
    The name of the Secret Parameter.
    SortField string
    The field used to sort the query results. Valid values: Name, CreatedDate.
    SortOrder string
    The order in which the entries are sorted. Default value: Descending. Valid values: Ascending, Descending.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    WithDecryption bool
    Specifies whether to decrypt the parameter value. Default value: false. Note: with_decryption takes effect only if enable_details is set to true.
    enableDetails Boolean
    Whether to query the detailed list of resource attributes. Default value: false.
    ids List<String>
    A list of Secret Parameter IDs.
    nameRegex String
    A regex string to filter results by Secret Parameter name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    resourceGroupId String
    The ID of the Resource Group.
    secretParameterName String
    The name of the Secret Parameter.
    sortField String
    The field used to sort the query results. Valid values: Name, CreatedDate.
    sortOrder String
    The order in which the entries are sorted. Default value: Descending. Valid values: Ascending, Descending.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    withDecryption Boolean
    Specifies whether to decrypt the parameter value. Default value: false. Note: with_decryption takes effect only if enable_details is set to true.
    enableDetails boolean
    Whether to query the detailed list of resource attributes. Default value: false.
    ids string[]
    A list of Secret Parameter IDs.
    nameRegex string
    A regex string to filter results by Secret Parameter name.
    outputFile string
    File name where to save data source results (after running pulumi preview).
    resourceGroupId string
    The ID of the Resource Group.
    secretParameterName string
    The name of the Secret Parameter.
    sortField string
    The field used to sort the query results. Valid values: Name, CreatedDate.
    sortOrder string
    The order in which the entries are sorted. Default value: Descending. Valid values: Ascending, Descending.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    withDecryption boolean
    Specifies whether to decrypt the parameter value. Default value: false. Note: with_decryption takes effect only if enable_details is set to true.
    enable_details bool
    Whether to query the detailed list of resource attributes. Default value: false.
    ids Sequence[str]
    A list of Secret Parameter IDs.
    name_regex str
    A regex string to filter results by Secret Parameter name.
    output_file str
    File name where to save data source results (after running pulumi preview).
    resource_group_id str
    The ID of the Resource Group.
    secret_parameter_name str
    The name of the Secret Parameter.
    sort_field str
    The field used to sort the query results. Valid values: Name, CreatedDate.
    sort_order str
    The order in which the entries are sorted. Default value: Descending. Valid values: Ascending, Descending.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    with_decryption bool
    Specifies whether to decrypt the parameter value. Default value: false. Note: with_decryption takes effect only if enable_details is set to true.
    enableDetails Boolean
    Whether to query the detailed list of resource attributes. Default value: false.
    ids List<String>
    A list of Secret Parameter IDs.
    nameRegex String
    A regex string to filter results by Secret Parameter name.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    resourceGroupId String
    The ID of the Resource Group.
    secretParameterName String
    The name of the Secret Parameter.
    sortField String
    The field used to sort the query results. Valid values: Name, CreatedDate.
    sortOrder String
    The order in which the entries are sorted. Default value: Descending. Valid values: Ascending, Descending.
    tags Map<String>
    A mapping of tags to assign to the resource.
    withDecryption Boolean
    Specifies whether to decrypt the parameter value. Default value: false. Note: with_decryption takes effect only if enable_details is set to true.

    getSecretParameters Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Ids List<string>
    Names List<string>
    A list of Secret Parameter names.
    Parameters List<Pulumi.AliCloud.Oos.Outputs.GetSecretParametersParameter>
    A list of Oos Secret Parameters. Each element contains the following attributes:
    EnableDetails bool
    NameRegex string
    OutputFile string
    ResourceGroupId string
    The ID of the Resource Group.
    SecretParameterName string
    The name of the encryption parameter.
    SortField string
    SortOrder string
    Tags Dictionary<string, string>
    The tags of the parameter.
    WithDecryption bool
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids []string
    Names []string
    A list of Secret Parameter names.
    Parameters []GetSecretParametersParameter
    A list of Oos Secret Parameters. Each element contains the following attributes:
    EnableDetails bool
    NameRegex string
    OutputFile string
    ResourceGroupId string
    The ID of the Resource Group.
    SecretParameterName string
    The name of the encryption parameter.
    SortField string
    SortOrder string
    Tags map[string]string
    The tags of the parameter.
    WithDecryption bool
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    names List<String>
    A list of Secret Parameter names.
    parameters List<GetSecretParametersParameter>
    A list of Oos Secret Parameters. Each element contains the following attributes:
    enableDetails Boolean
    nameRegex String
    outputFile String
    resourceGroupId String
    The ID of the Resource Group.
    secretParameterName String
    The name of the encryption parameter.
    sortField String
    sortOrder String
    tags Map<String,String>
    The tags of the parameter.
    withDecryption Boolean
    id string
    The provider-assigned unique ID for this managed resource.
    ids string[]
    names string[]
    A list of Secret Parameter names.
    parameters GetSecretParametersParameter[]
    A list of Oos Secret Parameters. Each element contains the following attributes:
    enableDetails boolean
    nameRegex string
    outputFile string
    resourceGroupId string
    The ID of the Resource Group.
    secretParameterName string
    The name of the encryption parameter.
    sortField string
    sortOrder string
    tags {[key: string]: string}
    The tags of the parameter.
    withDecryption boolean
    id str
    The provider-assigned unique ID for this managed resource.
    ids Sequence[str]
    names Sequence[str]
    A list of Secret Parameter names.
    parameters Sequence[GetSecretParametersParameter]
    A list of Oos Secret Parameters. Each element contains the following attributes:
    enable_details bool
    name_regex str
    output_file str
    resource_group_id str
    The ID of the Resource Group.
    secret_parameter_name str
    The name of the encryption parameter.
    sort_field str
    sort_order str
    tags Mapping[str, str]
    The tags of the parameter.
    with_decryption bool
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    names List<String>
    A list of Secret Parameter names.
    parameters List<Property Map>
    A list of Oos Secret Parameters. Each element contains the following attributes:
    enableDetails Boolean
    nameRegex String
    outputFile String
    resourceGroupId String
    The ID of the Resource Group.
    secretParameterName String
    The name of the encryption parameter.
    sortField String
    sortOrder String
    tags Map<String>
    The tags of the parameter.
    withDecryption Boolean

    Supporting Types

    GetSecretParametersParameter

    Constraints string
    The constraints of the encryption parameter. Note: constraints takes effect only if enable_details is set to true.
    CreateTime string
    The time when the encryption parameter was created.
    CreatedBy string
    The user who created the encryption parameter.
    Description string
    The description of the encryption parameter.
    Id string
    The ID of the Secret Parameter.
    KeyId string
    The ID of the key of Key Management Service (KMS) that is used for encryption.
    ParameterVersion int
    The version number of the encryption parameter.
    ResourceGroupId string
    The ID of the Resource Group.
    SecretParameterId string
    The ID of the encryption parameter.
    SecretParameterName string
    The name of the Secret Parameter.
    ShareType string
    The share type of the encryption parameter.
    Tags Dictionary<string, string>
    A mapping of tags to assign to the resource.
    Type string
    The type of the parameter.
    UpdatedBy string
    The user who updated the encryption parameter.
    UpdatedDate string
    The time when the encryption parameter was updated.
    Value string
    (Available since v1.231.0) The value of the encryption parameter. Note: value takes effect only if with_decryption is set to true.
    Constraints string
    The constraints of the encryption parameter. Note: constraints takes effect only if enable_details is set to true.
    CreateTime string
    The time when the encryption parameter was created.
    CreatedBy string
    The user who created the encryption parameter.
    Description string
    The description of the encryption parameter.
    Id string
    The ID of the Secret Parameter.
    KeyId string
    The ID of the key of Key Management Service (KMS) that is used for encryption.
    ParameterVersion int
    The version number of the encryption parameter.
    ResourceGroupId string
    The ID of the Resource Group.
    SecretParameterId string
    The ID of the encryption parameter.
    SecretParameterName string
    The name of the Secret Parameter.
    ShareType string
    The share type of the encryption parameter.
    Tags map[string]string
    A mapping of tags to assign to the resource.
    Type string
    The type of the parameter.
    UpdatedBy string
    The user who updated the encryption parameter.
    UpdatedDate string
    The time when the encryption parameter was updated.
    Value string
    (Available since v1.231.0) The value of the encryption parameter. Note: value takes effect only if with_decryption is set to true.
    constraints String
    The constraints of the encryption parameter. Note: constraints takes effect only if enable_details is set to true.
    createTime String
    The time when the encryption parameter was created.
    createdBy String
    The user who created the encryption parameter.
    description String
    The description of the encryption parameter.
    id String
    The ID of the Secret Parameter.
    keyId String
    The ID of the key of Key Management Service (KMS) that is used for encryption.
    parameterVersion Integer
    The version number of the encryption parameter.
    resourceGroupId String
    The ID of the Resource Group.
    secretParameterId String
    The ID of the encryption parameter.
    secretParameterName String
    The name of the Secret Parameter.
    shareType String
    The share type of the encryption parameter.
    tags Map<String,String>
    A mapping of tags to assign to the resource.
    type String
    The type of the parameter.
    updatedBy String
    The user who updated the encryption parameter.
    updatedDate String
    The time when the encryption parameter was updated.
    value String
    (Available since v1.231.0) The value of the encryption parameter. Note: value takes effect only if with_decryption is set to true.
    constraints string
    The constraints of the encryption parameter. Note: constraints takes effect only if enable_details is set to true.
    createTime string
    The time when the encryption parameter was created.
    createdBy string
    The user who created the encryption parameter.
    description string
    The description of the encryption parameter.
    id string
    The ID of the Secret Parameter.
    keyId string
    The ID of the key of Key Management Service (KMS) that is used for encryption.
    parameterVersion number
    The version number of the encryption parameter.
    resourceGroupId string
    The ID of the Resource Group.
    secretParameterId string
    The ID of the encryption parameter.
    secretParameterName string
    The name of the Secret Parameter.
    shareType string
    The share type of the encryption parameter.
    tags {[key: string]: string}
    A mapping of tags to assign to the resource.
    type string
    The type of the parameter.
    updatedBy string
    The user who updated the encryption parameter.
    updatedDate string
    The time when the encryption parameter was updated.
    value string
    (Available since v1.231.0) The value of the encryption parameter. Note: value takes effect only if with_decryption is set to true.
    constraints str
    The constraints of the encryption parameter. Note: constraints takes effect only if enable_details is set to true.
    create_time str
    The time when the encryption parameter was created.
    created_by str
    The user who created the encryption parameter.
    description str
    The description of the encryption parameter.
    id str
    The ID of the Secret Parameter.
    key_id str
    The ID of the key of Key Management Service (KMS) that is used for encryption.
    parameter_version int
    The version number of the encryption parameter.
    resource_group_id str
    The ID of the Resource Group.
    secret_parameter_id str
    The ID of the encryption parameter.
    secret_parameter_name str
    The name of the Secret Parameter.
    share_type str
    The share type of the encryption parameter.
    tags Mapping[str, str]
    A mapping of tags to assign to the resource.
    type str
    The type of the parameter.
    updated_by str
    The user who updated the encryption parameter.
    updated_date str
    The time when the encryption parameter was updated.
    value str
    (Available since v1.231.0) The value of the encryption parameter. Note: value takes effect only if with_decryption is set to true.
    constraints String
    The constraints of the encryption parameter. Note: constraints takes effect only if enable_details is set to true.
    createTime String
    The time when the encryption parameter was created.
    createdBy String
    The user who created the encryption parameter.
    description String
    The description of the encryption parameter.
    id String
    The ID of the Secret Parameter.
    keyId String
    The ID of the key of Key Management Service (KMS) that is used for encryption.
    parameterVersion Number
    The version number of the encryption parameter.
    resourceGroupId String
    The ID of the Resource Group.
    secretParameterId String
    The ID of the encryption parameter.
    secretParameterName String
    The name of the Secret Parameter.
    shareType String
    The share type of the encryption parameter.
    tags Map<String>
    A mapping of tags to assign to the resource.
    type String
    The type of the parameter.
    updatedBy String
    The user who updated the encryption parameter.
    updatedDate String
    The time when the encryption parameter was updated.
    value String
    (Available since v1.231.0) The value of the encryption parameter. Note: value takes effect only if with_decryption is set to true.

    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.66.0 published on Friday, Nov 15, 2024 by Pulumi