1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. cloudcontrol
  5. getResourceTypes
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.cloudcontrol.getResourceTypes

Explore with Pulumi AI

Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 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"],
});
Copy
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"])
Copy
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
	})
}
Copy
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",
        },
    });

});
Copy
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());

    }
}
Copy
configuration:
  name:
    type: string
    default: terraform-example
variables:
  default:
    fn::invoke:
      function: alicloud:cloudcontrol:getResourceTypes
      arguments:
        product: VPC
        ids:
          - VSwitch
Copy

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>
Copy
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]
Copy
func GetResourceTypes(ctx *Context, args *GetResourceTypesArgs, opts ...InvokeOption) (*GetResourceTypesResult, error)
func GetResourceTypesOutput(ctx *Context, args *GetResourceTypesOutputArgs, opts ...InvokeOption) GetResourceTypesResultOutput
Copy

> 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)
}
Copy
public static CompletableFuture<GetResourceTypesResult> getResourceTypes(GetResourceTypesArgs args, InvokeOptions options)
public static Output<GetResourceTypesResult> getResourceTypes(GetResourceTypesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: alicloud:cloudcontrol/getResourceTypes:getResourceTypes
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Product
This property is required.
Changes to this property will trigger replacement.
string
Product Code.
Ids Changes to this property will trigger replacement. List<string>
A list of Resource Type IDs.
OutputFile Changes to this property will trigger replacement. string
File name where to save data source results (after running pulumi preview).
Product
This property is required.
Changes to this property will trigger replacement.
string
Product Code.
Ids Changes to this property will trigger replacement. []string
A list of Resource Type IDs.
OutputFile Changes to this property will trigger replacement. string
File name where to save data source results (after running pulumi preview).
product
This property is required.
Changes to this property will trigger replacement.
String
Product Code.
ids Changes to this property will trigger replacement. List<String>
A list of Resource Type IDs.
outputFile Changes to this property will trigger replacement. String
File name where to save data source results (after running pulumi preview).
product
This property is required.
Changes to this property will trigger replacement.
string
Product Code.
ids Changes to this property will trigger replacement. string[]
A list of Resource Type IDs.
outputFile Changes to this property will trigger replacement. string
File name where to save data source results (after running pulumi preview).
product
This property is required.
Changes to this property will trigger replacement.
str
Product Code.
ids Changes to this property will trigger replacement. Sequence[str]
A list of Resource Type IDs.
output_file Changes to this property will trigger replacement. str
File name where to save data source results (after running pulumi preview).
product
This property is required.
Changes to this property will trigger replacement.
String
Product Code.
ids Changes to this property will trigger replacement. List<String>
A list of Resource Type IDs.
outputFile Changes to this property will trigger replacement. 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 This property is required. 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 This property is required. 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 This property is required. List<string>
A collection of attributes that can be used as the filter parameter during the list operation.
GetOnlyProperties This property is required. 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 This property is required. List<string>
The collection of properties returned by the query.
Handlers This property is required. Pulumi.AliCloud.CloudControl.Inputs.GetResourceTypesTypeHandlers
Supported resource operation information (including RAM permissions).
Id This property is required. string
The ID of the resource supplied above.
Infos This property is required. List<Pulumi.AliCloud.CloudControl.Inputs.GetResourceTypesTypeInfo>
Basic information about the resource type.
ListOnlyProperties This property is required. 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 This property is required. List<string>
Enumerates the returned property collection.
PrimaryIdentifier This property is required. string
Resource ID
Product This property is required. string
Product Code.
Properties This property is required. string
Resource attribute definition, where key is the attribute name and value is the attribute details.
PublicProperties This property is required. List<string>
A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
ReadOnlyProperties This property is required. 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 This property is required. List<string>
Resource creation required parameter collection.
ResourceType This property is required. string
The resource type.
SensitiveInfoProperties This property is required. List<string>
A collection of sensitive attributes, such as passwords.
UpdateOnlyProperties This property is required. 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 This property is required. List<string>
A collection of properties that can be modified.
CreateOnlyProperties This property is required. []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 This property is required. []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 This property is required. []string
A collection of attributes that can be used as the filter parameter during the list operation.
GetOnlyProperties This property is required. []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 This property is required. []string
The collection of properties returned by the query.
Handlers This property is required. GetResourceTypesTypeHandlers
Supported resource operation information (including RAM permissions).
Id This property is required. string
The ID of the resource supplied above.
Infos This property is required. []GetResourceTypesTypeInfo
Basic information about the resource type.
ListOnlyProperties This property is required. []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 This property is required. []string
Enumerates the returned property collection.
PrimaryIdentifier This property is required. string
Resource ID
Product This property is required. string
Product Code.
Properties This property is required. string
Resource attribute definition, where key is the attribute name and value is the attribute details.
PublicProperties This property is required. []string
A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
ReadOnlyProperties This property is required. []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 This property is required. []string
Resource creation required parameter collection.
ResourceType This property is required. string
The resource type.
SensitiveInfoProperties This property is required. []string
A collection of sensitive attributes, such as passwords.
UpdateOnlyProperties This property is required. []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 This property is required. []string
A collection of properties that can be modified.
createOnlyProperties This property is required. 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 This property is required. 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 This property is required. List<String>
A collection of attributes that can be used as the filter parameter during the list operation.
getOnlyProperties This property is required. 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 This property is required. List<String>
The collection of properties returned by the query.
handlers This property is required. GetResourceTypesTypeHandlers
Supported resource operation information (including RAM permissions).
id This property is required. String
The ID of the resource supplied above.
infos This property is required. List<GetResourceTypesTypeInfo>
Basic information about the resource type.
listOnlyProperties This property is required. 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 This property is required. List<String>
Enumerates the returned property collection.
primaryIdentifier This property is required. String
Resource ID
product This property is required. String
Product Code.
properties This property is required. String
Resource attribute definition, where key is the attribute name and value is the attribute details.
publicProperties This property is required. List<String>
A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
readOnlyProperties This property is required. 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 This property is required. List<String>
Resource creation required parameter collection.
resourceType This property is required. String
The resource type.
sensitiveInfoProperties This property is required. List<String>
A collection of sensitive attributes, such as passwords.
updateOnlyProperties This property is required. 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 This property is required. List<String>
A collection of properties that can be modified.
createOnlyProperties This property is required. 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 This property is required. 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 This property is required. string[]
A collection of attributes that can be used as the filter parameter during the list operation.
getOnlyProperties This property is required. 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 This property is required. string[]
The collection of properties returned by the query.
handlers This property is required. GetResourceTypesTypeHandlers
Supported resource operation information (including RAM permissions).
id This property is required. string
The ID of the resource supplied above.
infos This property is required. GetResourceTypesTypeInfo[]
Basic information about the resource type.
listOnlyProperties This property is required. 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 This property is required. string[]
Enumerates the returned property collection.
primaryIdentifier This property is required. string
Resource ID
product This property is required. string
Product Code.
properties This property is required. string
Resource attribute definition, where key is the attribute name and value is the attribute details.
publicProperties This property is required. string[]
A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
readOnlyProperties This property is required. 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 This property is required. string[]
Resource creation required parameter collection.
resourceType This property is required. string
The resource type.
sensitiveInfoProperties This property is required. string[]
A collection of sensitive attributes, such as passwords.
updateOnlyProperties This property is required. 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 This property is required. string[]
A collection of properties that can be modified.
create_only_properties This property is required. 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 This property is required. 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 This property is required. Sequence[str]
A collection of attributes that can be used as the filter parameter during the list operation.
get_only_properties This property is required. 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 This property is required. Sequence[str]
The collection of properties returned by the query.
handlers This property is required. GetResourceTypesTypeHandlers
Supported resource operation information (including RAM permissions).
id This property is required. str
The ID of the resource supplied above.
infos This property is required. Sequence[GetResourceTypesTypeInfo]
Basic information about the resource type.
list_only_properties This property is required. 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 This property is required. Sequence[str]
Enumerates the returned property collection.
primary_identifier This property is required. str
Resource ID
product This property is required. str
Product Code.
properties This property is required. str
Resource attribute definition, where key is the attribute name and value is the attribute details.
public_properties This property is required. Sequence[str]
A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
read_only_properties This property is required. 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 This property is required. Sequence[str]
Resource creation required parameter collection.
resource_type This property is required. str
The resource type.
sensitive_info_properties This property is required. Sequence[str]
A collection of sensitive attributes, such as passwords.
update_only_properties This property is required. 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 This property is required. Sequence[str]
A collection of properties that can be modified.
createOnlyProperties This property is required. 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 This property is required. 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 This property is required. List<String>
A collection of attributes that can be used as the filter parameter during the list operation.
getOnlyProperties This property is required. 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 This property is required. List<String>
The collection of properties returned by the query.
handlers This property is required. Property Map
Supported resource operation information (including RAM permissions).
id This property is required. String
The ID of the resource supplied above.
infos This property is required. List<Property Map>
Basic information about the resource type.
listOnlyProperties This property is required. 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 This property is required. List<String>
Enumerates the returned property collection.
primaryIdentifier This property is required. String
Resource ID
product This property is required. String
Product Code.
properties This property is required. String
Resource attribute definition, where key is the attribute name and value is the attribute details.
publicProperties This property is required. List<String>
A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
readOnlyProperties This property is required. 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 This property is required. List<String>
Resource creation required parameter collection.
resourceType This property is required. String
The resource type.
sensitiveInfoProperties This property is required. List<String>
A collection of sensitive attributes, such as passwords.
updateOnlyProperties This property is required. 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 This property is required. List<String>
A collection of properties that can be modified.

GetResourceTypesTypeHandlers

Creates This property is required. List<Pulumi.AliCloud.CloudControl.Inputs.GetResourceTypesTypeHandlersCreate>
Create operation association information.
Deletes This property is required. List<Pulumi.AliCloud.CloudControl.Inputs.GetResourceTypesTypeHandlersDelete>
Delete operation association information.
Gets This property is required. List<Pulumi.AliCloud.CloudControl.Inputs.GetResourceTypesTypeHandlersGet>
Query operation association information.
Lists This property is required. List<Pulumi.AliCloud.CloudControl.Inputs.GetResourceTypesTypeHandlersList>
List operation association information.
Updates This property is required. List<Pulumi.AliCloud.CloudControl.Inputs.GetResourceTypesTypeHandlersUpdate>
Update operation association information.
Creates This property is required. []GetResourceTypesTypeHandlersCreate
Create operation association information.
Deletes This property is required. []GetResourceTypesTypeHandlersDelete
Delete operation association information.
Gets This property is required. []GetResourceTypesTypeHandlersGet
Query operation association information.
Lists This property is required. []GetResourceTypesTypeHandlersList
List operation association information.
Updates This property is required. []GetResourceTypesTypeHandlersUpdate
Update operation association information.
creates This property is required. List<GetResourceTypesTypeHandlersCreate>
Create operation association information.
deletes This property is required. List<GetResourceTypesTypeHandlersDelete>
Delete operation association information.
gets This property is required. List<GetResourceTypesTypeHandlersGet>
Query operation association information.
lists This property is required. List<GetResourceTypesTypeHandlersList>
List operation association information.
updates This property is required. List<GetResourceTypesTypeHandlersUpdate>
Update operation association information.
creates This property is required. GetResourceTypesTypeHandlersCreate[]
Create operation association information.
deletes This property is required. GetResourceTypesTypeHandlersDelete[]
Delete operation association information.
gets This property is required. GetResourceTypesTypeHandlersGet[]
Query operation association information.
lists This property is required. GetResourceTypesTypeHandlersList[]
List operation association information.
updates This property is required. GetResourceTypesTypeHandlersUpdate[]
Update operation association information.
creates This property is required. Sequence[GetResourceTypesTypeHandlersCreate]
Create operation association information.
deletes This property is required. Sequence[GetResourceTypesTypeHandlersDelete]
Delete operation association information.
gets This property is required. Sequence[GetResourceTypesTypeHandlersGet]
Query operation association information.
lists This property is required. Sequence[GetResourceTypesTypeHandlersList]
List operation association information.
updates This property is required. Sequence[GetResourceTypesTypeHandlersUpdate]
Update operation association information.
creates This property is required. List<Property Map>
Create operation association information.
deletes This property is required. List<Property Map>
Delete operation association information.
gets This property is required. List<Property Map>
Query operation association information.
lists This property is required. List<Property Map>
List operation association information.
updates This property is required. List<Property Map>
Update operation association information.

GetResourceTypesTypeHandlersCreate

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

GetResourceTypesTypeHandlersDelete

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

GetResourceTypesTypeHandlersGet

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

GetResourceTypesTypeHandlersList

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

GetResourceTypesTypeHandlersUpdate

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

GetResourceTypesTypeInfo

ChargeType This property is required. string
Payment formpaid (paid)(free).
DeliveryScope This property is required. string
Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
Description This property is required. string
Resource type description.
Title This property is required. string
The resource type name.
ChargeType This property is required. string
Payment formpaid (paid)(free).
DeliveryScope This property is required. string
Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
Description This property is required. string
Resource type description.
Title This property is required. string
The resource type name.
chargeType This property is required. String
Payment formpaid (paid)(free).
deliveryScope This property is required. String
Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
description This property is required. String
Resource type description.
title This property is required. String
The resource type name.
chargeType This property is required. string
Payment formpaid (paid)(free).
deliveryScope This property is required. string
Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
description This property is required. string
Resource type description.
title This property is required. string
The resource type name.
charge_type This property is required. str
Payment formpaid (paid)(free).
delivery_scope This property is required. str
Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
description This property is required. str
Resource type description.
title This property is required. str
The resource type name.
chargeType This property is required. String
Payment formpaid (paid)(free).
deliveryScope This property is required. String
Delivery Levelcenter (centralized deployment level)region (regional deployment level)zone (Availability zone deployment level).
description This property is required. String
Resource type description.
title This property is required. 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.
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi