-
Notifications
You must be signed in to change notification settings - Fork 112
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dainius Serplis <[email protected]>
- Loading branch information
Showing
6 changed files
with
72 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
layout: "vcd" | ||
page_title: "VMware Cloud Director: vcd_tm_region_zone" | ||
sidebar_current: "docs-vcd-datasource-tm-region-zone" | ||
description: |- | ||
Provides a data source to read Tenant Manager Region Zone that can be used when creating VDC. | ||
--- | ||
|
||
# vcd\_tm\_region\_zone | ||
|
||
Provides a data source to read Tenant Manager Region Zone that can be used when creating VDC. | ||
|
||
## Example Usage | ||
|
||
```hcl | ||
data "vcd_tm_region_zone" "my" { | ||
region_id = vcd_tm_region.region.id | ||
name = "my-zone" | ||
} | ||
``` | ||
|
||
## Argument Reference | ||
|
||
The following arguments are supported: | ||
|
||
* `region_id` - (Required) Parent Region ID | ||
* `name` - (Required) Name of Region Zone | ||
|
||
## Attribute Reference | ||
|
||
* `cpu_limit_mhz` - Total amount of reserved and unreserved CPU resources allocated in MHz | ||
* `cpu_reservation_mhz` - Total amount of CPU resources reserved in MHz | ||
* `cpu_reservation_used_mhz` - The amount of CPU resources used in MHz. For Tenants, this value | ||
represents the total given to all of a Tenant's Namespaces. For Providers, this value represents | ||
the total given to all Tenants | ||
* `memory_limit_mib` - Total amount of reserved and unreserved memory resources allocated in MiB | ||
* `memory_reservation_used_mib` - Total amount of reserved memory resources used in MiB. For | ||
Tenants, this value represents the total given to all of a Tenant's Namespaces. For Providers, | ||
this value represents the total given to all Tenants | ||
* `memory_reservation_mib` - Total amount of reserved and unreserved memory resources used in MiB. | ||
For Tenants, this value represents the total given to all of a Tenant's Namespaces. For Providers, | ||
this value represents the total given to all Tenants |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters