Documentation
¶
Overview ¶
nolint: lll Package workspaces exports types, functions, subpackages for provisioning workspaces resources.
> This provider is a derived work of the [Terraform Provider](https://github.com/terraform-providers/terraform-provider-aws) > distributed under [MPL 2.0](https://www.mozilla.org/en-US/MPL/2.0/). If you encounter a bug or missing feature, > first check the [`pulumi/pulumi-aws` repo](https://github.com/pulumi/pulumi-aws/issues); however, if that doesn't turn up anything, > please consult the source [`terraform-providers/terraform-provider-aws` repo](https://github.com/terraform-providers/terraform-provider-aws/issues).
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GetBundleArgs ¶
type GetBundleArgs struct {
// The ID of the bundle.
BundleId interface{}
}
A collection of arguments for invoking getBundle.
type GetBundleResult ¶
type GetBundleResult struct { BundleId interface{} // The compute type. See supported fields below. ComputeTypes interface{} // The description of the bundle. Description interface{} // The name of the compute type. Name interface{} // The owner of the bundle. Owner interface{} // The root volume. See supported fields below. RootStorages interface{} // The user storage. See supported fields below. UserStorages interface{} // id is the provider-assigned unique ID for this managed resource. Id interface{} }
A collection of values returned by getBundle.
func LookupBundle ¶
func LookupBundle(ctx *pulumi.Context, args *GetBundleArgs) (*GetBundleResult, error)
Use this data source to get information about a Workspaces Bundle.
> This content is derived from https://github.com/terraform-providers/terraform-provider-aws/blob/master/website/docs/d/workspaces_bundle.html.markdown.