Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi
alicloud.cloudcontrol.getResourceTypes
Explore with Pulumi AI
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
This property is required. Changes to this property will trigger replacement.
- Product Code.
- Ids
Changes to this property will trigger replacement.
- A list of Resource Type IDs.
- Output
File Changes to this property will trigger replacement.
- File name where to save data source results (after running
pulumi preview
).
- Product
This property is required. Changes to this property will trigger replacement.
- Product Code.
- Ids
Changes to this property will trigger replacement.
- A list of Resource Type IDs.
- Output
File Changes to this property will trigger replacement.
- File name where to save data source results (after running
pulumi preview
).
- product
This property is required. Changes to this property will trigger replacement.
- Product Code.
- ids
Changes to this property will trigger replacement.
- A list of Resource Type IDs.
- output
File Changes to this property will trigger replacement.
- File name where to save data source results (after running
pulumi preview
).
- product
This property is required. Changes to this property will trigger replacement.
- Product Code.
- ids
Changes to this property will trigger replacement.
- A list of Resource Type IDs.
- output
File Changes to this property will trigger replacement.
- File name where to save data source results (after running
pulumi preview
).
- product
This property is required. Changes to this property will trigger replacement.
- Product Code.
- ids
Changes to this property will trigger replacement.
- A list of Resource Type IDs.
- output_
file Changes to this property will trigger replacement.
- File name where to save data source results (after running
pulumi preview
).
- product
This property is required. Changes to this property will trigger replacement.
- Product Code.
- ids
Changes to this property will trigger replacement.
- A list of Resource Type IDs.
- output
File Changes to this property will trigger replacement.
- 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.
Ali Cloud. Cloud Control. Outputs. Get Resource Types Type> - A list of Resource Type Entries. Each element contains the following attributes:
- Output
File 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
[]Get
Resource Types Type - A list of Resource Type Entries. Each element contains the following attributes:
- Output
File 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<Get
Resource Types Type> - A list of Resource Type Entries. Each element contains the following attributes:
- output
File 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
Get
Resource Types Type[] - A list of Resource Type Entries. Each element contains the following attributes:
- output
File 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[Get
Resource Types Type] - 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:
- output
File String
Supporting Types
GetResourceTypesType
- Create
Only Properties 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.
- Delete
Only Properties 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.
- Filter
Properties This property is required. List<string> - A collection of attributes that can be used as the filter parameter during the list operation.
- Get
Only Properties 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.
- Get
Response Properties This property is required. List<string> - The collection of properties returned by the query.
- Handlers
This property is required. Pulumi.Ali Cloud. Cloud Control. Inputs. Get Resource Types Type Handlers - 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.Ali Cloud. Cloud Control. Inputs. Get Resource Types Type Info> - Basic information about the resource type.
- List
Only Properties 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.
- List
Response Properties This property is required. List<string> - Enumerates the returned property collection.
- Primary
Identifier 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.
- Public
Properties This property is required. List<string> - A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
- Read
Only Properties 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.
- Resource
Type This property is required. string - The resource type.
- Sensitive
Info Properties This property is required. List<string> - A collection of sensitive attributes, such as passwords.
- Update
Only Properties 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.
- Update
Type Properties This property is required. List<string> - A collection of properties that can be modified.
- Create
Only Properties 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.
- Delete
Only Properties 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.
- Filter
Properties This property is required. []string - A collection of attributes that can be used as the filter parameter during the list operation.
- Get
Only Properties 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.
- Get
Response Properties This property is required. []string - The collection of properties returned by the query.
- Handlers
This property is required. GetResource Types Type Handlers - 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. []GetResource Types Type Info - Basic information about the resource type.
- List
Only Properties 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.
- List
Response Properties This property is required. []string - Enumerates the returned property collection.
- Primary
Identifier 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.
- Public
Properties This property is required. []string - A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
- Read
Only Properties 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.
- Resource
Type This property is required. string - The resource type.
- Sensitive
Info Properties This property is required. []string - A collection of sensitive attributes, such as passwords.
- Update
Only Properties 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.
- Update
Type Properties This property is required. []string - A collection of properties that can be modified.
- create
Only Properties 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.
- delete
Only Properties 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.
- filter
Properties This property is required. List<String> - A collection of attributes that can be used as the filter parameter during the list operation.
- get
Only Properties 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.
- get
Response Properties This property is required. List<String> - The collection of properties returned by the query.
- handlers
This property is required. GetResource Types Type Handlers - 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<GetResource Types Type Info> - Basic information about the resource type.
- list
Only Properties 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.
- list
Response Properties This property is required. List<String> - Enumerates the returned property collection.
- primary
Identifier 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.
- public
Properties This property is required. List<String> - A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
- read
Only Properties 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.
- resource
Type This property is required. String - The resource type.
- sensitive
Info Properties This property is required. List<String> - A collection of sensitive attributes, such as passwords.
- update
Only Properties 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.
- update
Type Properties This property is required. List<String> - A collection of properties that can be modified.
- create
Only Properties 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.
- delete
Only Properties 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.
- filter
Properties This property is required. string[] - A collection of attributes that can be used as the filter parameter during the list operation.
- get
Only Properties 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.
- get
Response Properties This property is required. string[] - The collection of properties returned by the query.
- handlers
This property is required. GetResource Types Type Handlers - 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. GetResource Types Type Info[] - Basic information about the resource type.
- list
Only Properties 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.
- list
Response Properties This property is required. string[] - Enumerates the returned property collection.
- primary
Identifier 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.
- public
Properties This property is required. string[] - A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
- read
Only Properties 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.
- resource
Type This property is required. string - The resource type.
- sensitive
Info Properties This property is required. string[] - A collection of sensitive attributes, such as passwords.
- update
Only Properties 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.
- update
Type Properties 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. GetResource Types Type Handlers - 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[GetResource Types Type Info] - 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.
- create
Only Properties 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.
- delete
Only Properties 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.
- filter
Properties This property is required. List<String> - A collection of attributes that can be used as the filter parameter during the list operation.
- get
Only Properties 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.
- get
Response Properties 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.
- list
Only Properties 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.
- list
Response Properties This property is required. List<String> - Enumerates the returned property collection.
- primary
Identifier 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.
- public
Properties This property is required. List<String> - A collection of public attributes, which are the basic attributes of the resource. Non-Operation private parameters.
- read
Only Properties 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.
- resource
Type This property is required. String - The resource type.
- sensitive
Info Properties This property is required. List<String> - A collection of sensitive attributes, such as passwords.
- update
Only Properties 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.
- update
Type Properties This property is required. List<String> - A collection of properties that can be modified.
GetResourceTypesTypeHandlers
- Creates
This property is required. List<Pulumi.Ali Cloud. Cloud Control. Inputs. Get Resource Types Type Handlers Create> - Create operation association information.
- Deletes
This property is required. List<Pulumi.Ali Cloud. Cloud Control. Inputs. Get Resource Types Type Handlers Delete> - Delete operation association information.
- Gets
This property is required. List<Pulumi.Ali Cloud. Cloud Control. Inputs. Get Resource Types Type Handlers Get> - Query operation association information.
- Lists
This property is required. List<Pulumi.Ali Cloud. Cloud Control. Inputs. Get Resource Types Type Handlers List> - List operation association information.
- Updates
This property is required. List<Pulumi.Ali Cloud. Cloud Control. Inputs. Get Resource Types Type Handlers Update> - Update operation association information.
- Creates
This property is required. []GetResource Types Type Handlers Create - Create operation association information.
- Deletes
This property is required. []GetResource Types Type Handlers Delete - Delete operation association information.
- Gets
This property is required. []GetResource Types Type Handlers Get - Query operation association information.
- Lists
This property is required. []GetResource Types Type Handlers List - List operation association information.
- Updates
This property is required. []GetResource Types Type Handlers Update - Update operation association information.
- creates
This property is required. List<GetResource Types Type Handlers Create> - Create operation association information.
- deletes
This property is required. List<GetResource Types Type Handlers Delete> - Delete operation association information.
- gets
This property is required. List<GetResource Types Type Handlers Get> - Query operation association information.
- lists
This property is required. List<GetResource Types Type Handlers List> - List operation association information.
- updates
This property is required. List<GetResource Types Type Handlers Update> - Update operation association information.
- creates
This property is required. GetResource Types Type Handlers Create[] - Create operation association information.
- deletes
This property is required. GetResource Types Type Handlers Delete[] - Delete operation association information.
- gets
This property is required. GetResource Types Type Handlers Get[] - Query operation association information.
- lists
This property is required. GetResource Types Type Handlers List[] - List operation association information.
- updates
This property is required. GetResource Types Type Handlers Update[] - Update operation association information.
- creates
This property is required. Sequence[GetResource Types Type Handlers Create] - Create operation association information.
- deletes
This property is required. Sequence[GetResource Types Type Handlers Delete] - Delete operation association information.
- gets
This property is required. Sequence[GetResource Types Type Handlers Get] - Query operation association information.
- lists
This property is required. Sequence[GetResource Types Type Handlers List] - List operation association information.
- updates
This property is required. Sequence[GetResource Types Type Handlers Update] - 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
- Charge
Type This property is required. string - Payment formpaid (paid)(free).
- Delivery
Scope 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. string - Payment formpaid (paid)(free).
- Delivery
Scope 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. String - Payment formpaid (paid)(free).
- delivery
Scope 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. string - Payment formpaid (paid)(free).
- delivery
Scope 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.
- charge
Type This property is required. String - Payment formpaid (paid)(free).
- delivery
Scope 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.