1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. cloudcontrol
  5. getResourceTypes
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

alicloud.cloudcontrol.getResourceTypes

Explore with Pulumi AI

alicloud logo
Alibaba Cloud v3.75.0 published on Friday, Mar 7, 2025 by Pulumi

    This data source provides Cloud Control Resource Type available to the user.What is Resource Type

    NOTE: Available since v1.241.0.

    Example 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 = alicloud.cloudcontrol.getResourceTypes({
        product: "VPC",
        ids: ["VSwitch"],
    });
    
    import pulumi
    import pulumi_alicloud as alicloud
    
    config = pulumi.Config()
    name = config.get("name")
    if name is None:
        name = "terraform-example"
    default = alicloud.cloudcontrol.get_resource_types(product="VPC",
        ids=["VSwitch"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/cloudcontrol"
    	"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 := cloudcontrol.GetResourceTypes(ctx, &cloudcontrol.GetResourceTypesArgs{
    			Product: "VPC",
    			Ids: []string{
    				"VSwitch",
    			},
    		}, 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 = AliCloud.CloudControl.GetResourceTypes.Invoke(new()
        {
            Product = "VPC",
            Ids = new[]
            {
                "VSwitch",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.alicloud.cloudcontrol.CloudcontrolFunctions;
    import com.pulumi.alicloud.cloudcontrol.inputs.GetResourceTypesArgs;
    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");
            final var default = CloudcontrolFunctions.getResourceTypes(GetResourceTypesArgs.builder()
                .product("VPC")
                .ids("VSwitch")
                .build());
    
        }
    }
    
    configuration:
      name:
        type: string
        default: terraform-example
    variables:
      default:
        fn::invoke:
          function: alicloud:cloudcontrol:getResourceTypes
          arguments:
            product: VPC
            ids:
              - VSwitch
    

    Using getResourceTypes

    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 getResourceTypes(args: GetResourceTypesArgs, opts?: InvokeOptions): Promise<GetResourceTypesResult>
    function getResourceTypesOutput(args: GetResourceTypesOutputArgs, opts?: InvokeOptions): Output<GetResourceTypesResult>
    def get_resource_types(ids: Optional[Sequence[str]] = None,
                           output_file: Optional[str] = None,
                           product: Optional[str] = None,
                           opts: Optional[InvokeOptions] = None) -> GetResourceTypesResult
    def get_resource_types_output(ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                           output_file: Optional[pulumi.Input[str]] = None,
                           product: Optional[pulumi.Input[str]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetResourceTypesResult]
    func GetResourceTypes(ctx *Context, args *GetResourceTypesArgs, opts ...InvokeOption) (*GetResourceTypesResult, error)
    func GetResourceTypesOutput(ctx *Context, args *GetResourceTypesOutputArgs, opts ...InvokeOption) GetResourceTypesResultOutput

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

    public static class GetResourceTypes 
    {
        public static Task<GetResourceTypesResult> InvokeAsync(GetResourceTypesArgs args, InvokeOptions? opts = null)
        public static Output<GetResourceTypesResult> Invoke(GetResourceTypesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetResourceTypesResult> getResourceTypes(GetResourceTypesArgs args, InvokeOptions options)
    public static Output<GetResourceTypesResult> getResourceTypes(GetResourceTypesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: alicloud:cloudcontrol/getResourceTypes:getResourceTypes
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Product string
    Product Code.
    Ids List<string>
    A list of Resource Type IDs.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    Product string
    Product Code.
    Ids []string
    A list of Resource Type IDs.
    OutputFile string
    File name where to save data source results (after running pulumi preview).
    product String
    Product Code.
    ids List<String>
    A list of Resource Type IDs.
    outputFile String
    File name where to save data source results (after running pulumi preview).
    product string
    Product Code.
    ids string[]
    A list of Resource Type IDs.
    outputFile string
    File name where to save data source results (after running pulumi preview).
    product str
    Product Code.
    ids Sequence[str]
    A list of Resource Type IDs.
    output_file str
    File name where to save data source results (after running pulumi preview).
    product String
    Product Code.
    ids List<String>
    A list of Resource Type IDs.
    outputFile String
    File name where to save data source results (after running pulumi preview).

    getResourceTypes Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    Ids List<string>
    A list of Resource Type IDs.
    Product string
    Product Code.
    Types List<Pulumi.AliCloud.CloudControl.Outputs.GetResourceTypesType>
    A list of Resource Type Entries. Each element contains the following attributes:
    OutputFile string
    Id string
    The provider-assigned unique ID for this managed resource.
    Ids []string
    A list of Resource Type IDs.
    Product string
    Product Code.
    Types []GetResourceTypesType
    A list of Resource Type Entries. Each element contains the following attributes:
    OutputFile string
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    A list of Resource Type IDs.
    product String
    Product Code.
    types List<GetResourceTypesType>
    A list of Resource Type Entries. Each element contains the following attributes:
    outputFile String
    id string
    The provider-assigned unique ID for this managed resource.
    ids string[]
    A list of Resource Type IDs.
    product string
    Product Code.
    types GetResourceTypesType[]
    A list of Resource Type Entries. Each element contains the following attributes:
    outputFile string
    id str
    The provider-assigned unique ID for this managed resource.
    ids Sequence[str]
    A list of Resource Type IDs.
    product str
    Product Code.
    types Sequence[GetResourceTypesType]
    A list of Resource Type Entries. Each element contains the following attributes:
    output_file str
    id String
    The provider-assigned unique ID for this managed resource.
    ids List<String>
    A list of Resource Type IDs.
    product String
    Product Code.
    types List<Property Map>
    A list of Resource Type Entries. Each element contains the following attributes:
    outputFile String

    Supporting Types

    GetResourceTypesType

    CreateOnlyProperties List<string>
    Create an operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the creation operation.
    DeleteOnlyProperties List<string>
    Delete operation private parameter collection. The attribute is not returned in the resource query operation, but the parameter is required in the delete operation.
    FilterProperties List<string>
    A collection of attributes that can be used as the filter parameter during the list operation.
    GetOnlyProperties List<string>
    Query operation private parameter collection. The attribute is not returned in the resource query operation, but the input parameter is required in the query operation.
    GetResponseProperties List<string>
    The collection of properties returned by the query.
    Handlers Pulumi.AliCloud.CloudControl.Inputs.GetResourceTypesTypeHandlers
    Supported resource operation information (including RAM permissions).
    Id string
    The ID of the resource supplied above.
    Infos List<Pulumi.AliCloud.CloudControl.Inputs.GetResourceTypesTypeInfo>
    Basic information about the resource type.
    ListOnlyProperties List<string>
    Enumerate the operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters that need to be passed in the enumeration operation.
    ListResponseProperties List<string>
    Enumerates the returned property collection.
    PrimaryIdentifier string
    Resource ID
    Product string
    Product Code.
    Properties string
    Resource attribute definition, where key is the attribute name and value is the attribute details.
    PublicProperties List<string>
    A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
    ReadOnlyProperties List<string>
    A set of read-only parameters. It is returned only in the list or get Operation. It is not used as an input parameter during creation and change.
    Requireds List<string>
    Resource creation required parameter collection.
    ResourceType string
    The resource type.
    SensitiveInfoProperties List<string>
    A collection of sensitive attributes, such as passwords.
    UpdateOnlyProperties List<string>
    Update operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the update operation.
    UpdateTypeProperties List<string>
    A collection of properties that can be modified.
    CreateOnlyProperties []string
    Create an operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the creation operation.
    DeleteOnlyProperties []string
    Delete operation private parameter collection. The attribute is not returned in the resource query operation, but the parameter is required in the delete operation.
    FilterProperties []string
    A collection of attributes that can be used as the filter parameter during the list operation.
    GetOnlyProperties []string
    Query operation private parameter collection. The attribute is not returned in the resource query operation, but the input parameter is required in the query operation.
    GetResponseProperties []string
    The collection of properties returned by the query.
    Handlers GetResourceTypesTypeHandlers
    Supported resource operation information (including RAM permissions).
    Id string
    The ID of the resource supplied above.
    Infos []GetResourceTypesTypeInfo
    Basic information about the resource type.
    ListOnlyProperties []string
    Enumerate the operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters that need to be passed in the enumeration operation.
    ListResponseProperties []string
    Enumerates the returned property collection.
    PrimaryIdentifier string
    Resource ID
    Product string
    Product Code.
    Properties string
    Resource attribute definition, where key is the attribute name and value is the attribute details.
    PublicProperties []string
    A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
    ReadOnlyProperties []string
    A set of read-only parameters. It is returned only in the list or get Operation. It is not used as an input parameter during creation and change.
    Requireds []string
    Resource creation required parameter collection.
    ResourceType string
    The resource type.
    SensitiveInfoProperties []string
    A collection of sensitive attributes, such as passwords.
    UpdateOnlyProperties []string
    Update operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the update operation.
    UpdateTypeProperties []string
    A collection of properties that can be modified.
    createOnlyProperties List<String>
    Create an operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the creation operation.
    deleteOnlyProperties List<String>
    Delete operation private parameter collection. The attribute is not returned in the resource query operation, but the parameter is required in the delete operation.
    filterProperties List<String>
    A collection of attributes that can be used as the filter parameter during the list operation.
    getOnlyProperties List<String>
    Query operation private parameter collection. The attribute is not returned in the resource query operation, but the input parameter is required in the query operation.
    getResponseProperties List<String>
    The collection of properties returned by the query.
    handlers GetResourceTypesTypeHandlers
    Supported resource operation information (including RAM permissions).
    id String
    The ID of the resource supplied above.
    infos List<GetResourceTypesTypeInfo>
    Basic information about the resource type.
    listOnlyProperties List<String>
    Enumerate the operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters that need to be passed in the enumeration operation.
    listResponseProperties List<String>
    Enumerates the returned property collection.
    primaryIdentifier String
    Resource ID
    product String
    Product Code.
    properties String
    Resource attribute definition, where key is the attribute name and value is the attribute details.
    publicProperties List<String>
    A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
    readOnlyProperties List<String>
    A set of read-only parameters. It is returned only in the list or get Operation. It is not used as an input parameter during creation and change.
    requireds List<String>
    Resource creation required parameter collection.
    resourceType String
    The resource type.
    sensitiveInfoProperties List<String>
    A collection of sensitive attributes, such as passwords.
    updateOnlyProperties List<String>
    Update operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the update operation.
    updateTypeProperties List<String>
    A collection of properties that can be modified.
    createOnlyProperties string[]
    Create an operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the creation operation.
    deleteOnlyProperties string[]
    Delete operation private parameter collection. The attribute is not returned in the resource query operation, but the parameter is required in the delete operation.
    filterProperties string[]
    A collection of attributes that can be used as the filter parameter during the list operation.
    getOnlyProperties string[]
    Query operation private parameter collection. The attribute is not returned in the resource query operation, but the input parameter is required in the query operation.
    getResponseProperties string[]
    The collection of properties returned by the query.
    handlers GetResourceTypesTypeHandlers
    Supported resource operation information (including RAM permissions).
    id string
    The ID of the resource supplied above.
    infos GetResourceTypesTypeInfo[]
    Basic information about the resource type.
    listOnlyProperties string[]
    Enumerate the operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters that need to be passed in the enumeration operation.
    listResponseProperties string[]
    Enumerates the returned property collection.
    primaryIdentifier string
    Resource ID
    product string
    Product Code.
    properties string
    Resource attribute definition, where key is the attribute name and value is the attribute details.
    publicProperties string[]
    A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
    readOnlyProperties string[]
    A set of read-only parameters. It is returned only in the list or get Operation. It is not used as an input parameter during creation and change.
    requireds string[]
    Resource creation required parameter collection.
    resourceType string
    The resource type.
    sensitiveInfoProperties string[]
    A collection of sensitive attributes, such as passwords.
    updateOnlyProperties string[]
    Update operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the update operation.
    updateTypeProperties string[]
    A collection of properties that can be modified.
    create_only_properties Sequence[str]
    Create an operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the creation operation.
    delete_only_properties Sequence[str]
    Delete operation private parameter collection. The attribute is not returned in the resource query operation, but the parameter is required in the delete operation.
    filter_properties Sequence[str]
    A collection of attributes that can be used as the filter parameter during the list operation.
    get_only_properties Sequence[str]
    Query operation private parameter collection. The attribute is not returned in the resource query operation, but the input parameter is required in the query operation.
    get_response_properties Sequence[str]
    The collection of properties returned by the query.
    handlers GetResourceTypesTypeHandlers
    Supported resource operation information (including RAM permissions).
    id str
    The ID of the resource supplied above.
    infos Sequence[GetResourceTypesTypeInfo]
    Basic information about the resource type.
    list_only_properties Sequence[str]
    Enumerate the operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters that need to be passed in the enumeration operation.
    list_response_properties Sequence[str]
    Enumerates the returned property collection.
    primary_identifier str
    Resource ID
    product str
    Product Code.
    properties str
    Resource attribute definition, where key is the attribute name and value is the attribute details.
    public_properties Sequence[str]
    A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
    read_only_properties Sequence[str]
    A set of read-only parameters. It is returned only in the list or get Operation. It is not used as an input parameter during creation and change.
    requireds Sequence[str]
    Resource creation required parameter collection.
    resource_type str
    The resource type.
    sensitive_info_properties Sequence[str]
    A collection of sensitive attributes, such as passwords.
    update_only_properties Sequence[str]
    Update operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the update operation.
    update_type_properties Sequence[str]
    A collection of properties that can be modified.
    createOnlyProperties List<String>
    Create an operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the creation operation.
    deleteOnlyProperties List<String>
    Delete operation private parameter collection. The attribute is not returned in the resource query operation, but the parameter is required in the delete operation.
    filterProperties List<String>
    A collection of attributes that can be used as the filter parameter during the list operation.
    getOnlyProperties List<String>
    Query operation private parameter collection. The attribute is not returned in the resource query operation, but the input parameter is required in the query operation.
    getResponseProperties List<String>
    The collection of properties returned by the query.
    handlers Property Map
    Supported resource operation information (including RAM permissions).
    id String
    The ID of the resource supplied above.
    infos List<Property Map>
    Basic information about the resource type.
    listOnlyProperties List<String>
    Enumerate the operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters that need to be passed in the enumeration operation.
    listResponseProperties List<String>
    Enumerates the returned property collection.
    primaryIdentifier String
    Resource ID
    product String
    Product Code.
    properties String
    Resource attribute definition, where key is the attribute name and value is the attribute details.
    publicProperties List<String>
    A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
    readOnlyProperties List<String>
    A set of read-only parameters. It is returned only in the list or get Operation. It is not used as an input parameter during creation and change.
    requireds List<String>
    Resource creation required parameter collection.
    resourceType String
    The resource type.
    sensitiveInfoProperties List<String>
    A collection of sensitive attributes, such as passwords.
    updateOnlyProperties List<String>
    Update operation private parameter collection. The attributes are not returned in the resource query operation, but the parameters are required in the update operation.
    updateTypeProperties List<String>
    A collection of properties that can be modified.

    GetResourceTypesTypeHandlers

    Creates []GetResourceTypesTypeHandlersCreate
    Create operation association information.
    Deletes []GetResourceTypesTypeHandlersDelete
    Delete operation association information.
    Gets []GetResourceTypesTypeHandlersGet
    Query operation association information.
    Lists []GetResourceTypesTypeHandlersList
    List operation association information.
    Updates []GetResourceTypesTypeHandlersUpdate
    Update operation association information.
    creates List<GetResourceTypesTypeHandlersCreate>
    Create operation association information.
    deletes List<GetResourceTypesTypeHandlersDelete>
    Delete operation association information.
    gets List<GetResourceTypesTypeHandlersGet>
    Query operation association information.
    lists List<GetResourceTypesTypeHandlersList>
    List operation association information.
    updates List<GetResourceTypesTypeHandlersUpdate>
    Update operation association information.
    creates GetResourceTypesTypeHandlersCreate[]
    Create operation association information.
    deletes GetResourceTypesTypeHandlersDelete[]
    Delete operation association information.
    gets GetResourceTypesTypeHandlersGet[]
    Query operation association information.
    lists GetResourceTypesTypeHandlersList[]
    List operation association information.
    updates GetResourceTypesTypeHandlersUpdate[]
    Update operation association information.
    creates Sequence[GetResourceTypesTypeHandlersCreate]
    Create operation association information.
    deletes Sequence[GetResourceTypesTypeHandlersDelete]
    Delete operation association information.
    gets Sequence[GetResourceTypesTypeHandlersGet]
    Query operation association information.
    lists Sequence[GetResourceTypesTypeHandlersList]
    List operation association information.
    updates Sequence[GetResourceTypesTypeHandlersUpdate]
    Update operation association information.
    creates List<Property Map>
    Create operation association information.
    deletes List<Property Map>
    Delete operation association information.
    gets List<Property Map>
    Query operation association information.
    lists List<Property Map>
    List operation association information.
    updates List<Property Map>
    Update operation association information.

    GetResourceTypesTypeHandlersCreate

    Permissions List<string>
    The collection of required RAM permission information.
    Permissions []string
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.
    permissions string[]
    The collection of required RAM permission information.
    permissions Sequence[str]
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.

    GetResourceTypesTypeHandlersDelete

    Permissions List<string>
    The collection of required RAM permission information.
    Permissions []string
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.
    permissions string[]
    The collection of required RAM permission information.
    permissions Sequence[str]
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.

    GetResourceTypesTypeHandlersGet

    Permissions List<string>
    The collection of required RAM permission information.
    Permissions []string
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.
    permissions string[]
    The collection of required RAM permission information.
    permissions Sequence[str]
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.

    GetResourceTypesTypeHandlersList

    Permissions List<string>
    The collection of required RAM permission information.
    Permissions []string
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.
    permissions string[]
    The collection of required RAM permission information.
    permissions Sequence[str]
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.

    GetResourceTypesTypeHandlersUpdate

    Permissions List<string>
    The collection of required RAM permission information.
    Permissions []string
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.
    permissions string[]
    The collection of required RAM permission information.
    permissions Sequence[str]
    The collection of required RAM permission information.
    permissions List<String>
    The collection of required RAM permission information.

    GetResourceTypesTypeInfo

    ChargeType string
    Payment formpaid (paid)(free).
    DeliveryScope string
    Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
    Description string
    Resource type description.
    Title string
    The resource type name.
    ChargeType string
    Payment formpaid (paid)(free).
    DeliveryScope string
    Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
    Description string
    Resource type description.
    Title string
    The resource type name.
    chargeType String
    Payment formpaid (paid)(free).
    deliveryScope String
    Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
    description String
    Resource type description.
    title String
    The resource type name.
    chargeType string
    Payment formpaid (paid)(free).
    deliveryScope string
    Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
    description string
    Resource type description.
    title string
    The resource type name.
    charge_type str
    Payment formpaid (paid)(free).
    delivery_scope str
    Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
    description str
    Resource type description.
    title str
    The resource type name.
    chargeType String
    Payment formpaid (paid)(free).
    deliveryScope String
    Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
    description String
    Resource type description.
    title String
    The resource type name.

    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.75.0 published on Friday, Mar 7, 2025 by Pulumi