-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
604 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "netapp-ontap_volume_efficiency_policies Data Source - terraform-provider-netapp-ontap" | ||
subcategory: "Storage" | ||
description: |- | ||
VolumeEfficiencyPolicies data source | ||
--- | ||
|
||
# netapp-ontap_volume_efficiency_policies (Data Source) | ||
|
||
VolumeEfficiencyPolicies data source | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "netapp-ontap_volume_efficiency_policies" "volume_efficiency_policies" { | ||
# required to know which system to interface with | ||
cx_profile_name = "cluster1" | ||
filter = { | ||
svm = "terraform" | ||
} | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `cx_profile_name` (String) Connection profile name | ||
|
||
### Optional | ||
|
||
- `filter` (Attributes) (see [below for nested schema](#nestedatt--filter)) | ||
|
||
### Read-Only | ||
|
||
- `volume_efficiency_policies` (Attributes List) (see [below for nested schema](#nestedatt--volume_efficiency_policies)) | ||
|
||
<a id="nestedatt--filter"></a> | ||
### Nested Schema for `filter` | ||
|
||
Optional: | ||
|
||
- `name` (String) VolumeEfficiencyPolicy name | ||
- `svm_name` (String) VolumeEfficiencyPolicy svm name | ||
|
||
|
||
<a id="nestedatt--volume_efficiency_policies"></a> | ||
### Nested Schema for `volume_efficiency_policies` | ||
|
||
Required: | ||
|
||
- `cx_profile_name` (String) Connection profile name | ||
- `name` (String) VolumeEfficiencyPolicy name | ||
- `svm` (Attributes) SVM details for StorageVolumeEfficiencyPolicies (see [below for nested schema](#nestedatt--volume_efficiency_policies--svm)) | ||
|
||
Read-Only: | ||
|
||
- `comment` (String) StorageVolumeEfficiencyPolicies duration | ||
- `duration` (Number) StorageVolumeEfficiencyPolicies duration | ||
- `enabled` (Boolean) StorageVolumeEfficiencyPolicies duration | ||
- `id` (String) StorageVolumeEfficiencyPolicies UUID | ||
- `qos_policy` (String) StorageVolumeEfficiencyPolicies duration | ||
- `schedule` (Attributes) schedule details for StorageVolumeEfficiencyPolicies (see [below for nested schema](#nestedatt--volume_efficiency_policies--schedule)) | ||
- `start_threshold_percent` (Number) StorageVolumeEfficiencyPolicies duration | ||
- `type` (String) StorageVolumeEfficiencyPolicies type | ||
|
||
<a id="nestedatt--volume_efficiency_policies--svm"></a> | ||
### Nested Schema for `volume_efficiency_policies.svm` | ||
|
||
Required: | ||
|
||
- `name` (String) name of the SVM | ||
|
||
|
||
<a id="nestedatt--volume_efficiency_policies--schedule"></a> | ||
### Nested Schema for `volume_efficiency_policies.schedule` | ||
|
||
Read-Only: | ||
|
||
- `name` (String) name of the schedule |
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,59 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "netapp-ontap_volume_efficiency_policy Data Source - terraform-provider-netapp-ontap" | ||
subcategory: "Storage" | ||
description: |- | ||
VolumeEfficiencyPolicy data source | ||
--- | ||
|
||
# netapp-ontap_volume_efficiency_policy (Data Source) | ||
|
||
VolumeEfficiencyPolicy data source | ||
|
||
## Example Usage | ||
|
||
```terraform | ||
data "netapp-ontap_volume_efficiency_policy" "volume_efficiency_policy" { | ||
# required to know which system to interface with | ||
cx_profile_name = "cluster1" | ||
name = "test" | ||
svm = { | ||
name = "terraform" | ||
} | ||
} | ||
``` | ||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `cx_profile_name` (String) Connection profile name | ||
- `name` (String) VolumeEfficiencyPolicy name | ||
- `svm` (Attributes) SVM details for StorageVolumeEfficiencyPolicies (see [below for nested schema](#nestedatt--svm)) | ||
|
||
### Read-Only | ||
|
||
- `comment` (String) StorageVolumeEfficiencyPolicies duration | ||
- `duration` (Number) StorageVolumeEfficiencyPolicies duration | ||
- `enabled` (Boolean) StorageVolumeEfficiencyPolicies duration | ||
- `id` (String) StorageVolumeEfficiencyPolicies UUID | ||
- `qos_policy` (String) StorageVolumeEfficiencyPolicies duration | ||
- `schedule` (Attributes) schedule details for StorageVolumeEfficiencyPolicies (see [below for nested schema](#nestedatt--schedule)) | ||
- `start_threshold_percent` (Number) StorageVolumeEfficiencyPolicies duration | ||
- `type` (String) StorageVolumeEfficiencyPolicies type | ||
|
||
<a id="nestedatt--svm"></a> | ||
### Nested Schema for `svm` | ||
|
||
Required: | ||
|
||
- `name` (String) name of the SVM | ||
|
||
|
||
<a id="nestedatt--schedule"></a> | ||
### Nested Schema for `schedule` | ||
|
||
Read-Only: | ||
|
||
- `name` (String) name of the schedule |
7 changes: 7 additions & 0 deletions
7
examples/data-sources/netapp-ontap_volume_efficiency_policies/data-source.tf
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,7 @@ | ||
data "netapp-ontap_volume_efficiency_policies" "volume_efficiency_policies" { | ||
# required to know which system to interface with | ||
cx_profile_name = "cluster1" | ||
filter = { | ||
svm = "terraform" | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
examples/data-sources/netapp-ontap_volume_efficiency_policies/provider.tf
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 @@ | ||
../../provider/provider.tf |
1 change: 1 addition & 0 deletions
1
examples/data-sources/netapp-ontap_volume_efficiency_policies/terraform.tfvars
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 @@ | ||
../../provider/terraform.tfvars |
1 change: 1 addition & 0 deletions
1
examples/data-sources/netapp-ontap_volume_efficiency_policies/variables.tf
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 @@ | ||
../../provider/variables.tf |
8 changes: 8 additions & 0 deletions
8
examples/data-sources/netapp-ontap_volume_efficiency_policy/data-source.tf
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,8 @@ | ||
data "netapp-ontap_volume_efficiency_policy" "volume_efficiency_policy" { | ||
# required to know which system to interface with | ||
cx_profile_name = "cluster1" | ||
name = "test" | ||
svm = { | ||
name = "terraform" | ||
} | ||
} |
1 change: 1 addition & 0 deletions
1
examples/data-sources/netapp-ontap_volume_efficiency_policy/provider.tf
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 @@ | ||
../../provider/provider.tf |
1 change: 1 addition & 0 deletions
1
examples/data-sources/netapp-ontap_volume_efficiency_policy/terraform.tfvars
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 @@ | ||
../../provider/terraform.tfvars |
1 change: 1 addition & 0 deletions
1
examples/data-sources/netapp-ontap_volume_efficiency_policy/variables.tf
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 @@ | ||
../../provider/variables.tf |
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
Oops, something went wrong.