Skip to content

Commit 4020a2b

Browse files
change children attribute type from Attributes Set to Attributes List on all relevant resources (#137)
1 parent 973a564 commit 4020a2b

File tree

63 files changed

+132
-120
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+132
-120
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## 0.2.9 (unreleased)
2+
3+
- Change `children` attribute type from `Attributes Set` to `Attributes List` on all relevant resources
4+
15
## 0.2.8
26

37
- Add `ise_endpoint_custom_attribute` resource and data source

docs/data-sources/device_admin_authentication_rule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ data "ise_device_admin_authentication_rule" "example" {
3333

3434
### Read-Only
3535

36-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
36+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
3737
- `condition_attribute_name` (String) Dictionary attribute name
3838
- `condition_attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
3939
- `condition_dictionary_name` (String) Dictionary name
@@ -57,7 +57,7 @@ Read-Only:
5757

5858
- `attribute_name` (String) Dictionary attribute name
5959
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
60-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
60+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
6161
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
6262
- `dictionary_name` (String) Dictionary name
6363
- `dictionary_value` (String) Dictionary value

docs/data-sources/device_admin_authorization_exception_rule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ data "ise_device_admin_authorization_exception_rule" "example" {
3333

3434
### Read-Only
3535

36-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
36+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
3737
- `command_sets` (Set of String) Command sets enforce the specified list of commands that can be executed by a device administrator
3838
- `condition_attribute_name` (String) Dictionary attribute name
3939
- `condition_attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
@@ -55,7 +55,7 @@ Read-Only:
5555

5656
- `attribute_name` (String) Dictionary attribute name
5757
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
58-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
58+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
5959
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
6060
- `dictionary_name` (String) Dictionary name
6161
- `dictionary_value` (String) Dictionary value

docs/data-sources/device_admin_authorization_global_exception_rule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ data "ise_device_admin_authorization_global_exception_rule" "example" {
2828

2929
### Read-Only
3030

31-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
31+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
3232
- `command_sets` (Set of String) Command sets enforce the specified list of commands that can be executed by a device administrator
3333
- `condition_attribute_name` (String) Dictionary attribute name
3434
- `condition_attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
@@ -49,7 +49,7 @@ Read-Only:
4949

5050
- `attribute_name` (String) Dictionary attribute name
5151
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
52-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
52+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
5353
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
5454
- `dictionary_name` (String) Dictionary name
5555
- `dictionary_value` (String) Dictionary value

docs/data-sources/device_admin_authorization_rule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ data "ise_device_admin_authorization_rule" "example" {
3333

3434
### Read-Only
3535

36-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
36+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
3737
- `command_sets` (Set of String) Command sets enforce the specified list of commands that can be executed by a device administrator
3838
- `condition_attribute_name` (String) Dictionary attribute name
3939
- `condition_attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
@@ -55,7 +55,7 @@ Read-Only:
5555

5656
- `attribute_name` (String) Dictionary attribute name
5757
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
58-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
58+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
5959
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
6060
- `dictionary_name` (String) Dictionary name
6161
- `dictionary_value` (String) Dictionary value

docs/data-sources/device_admin_condition.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ data "ise_device_admin_condition" "example" {
3030

3131
- `attribute_name` (String) Dictionary attribute name
3232
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
33-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `LibraryConditionAndBlock` or `LibraryConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
33+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `LibraryConditionAndBlock` or `LibraryConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
3434
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
3535
- `description` (String) Condition description
3636
- `dictionary_name` (String) Dictionary name
@@ -45,7 +45,7 @@ Read-Only:
4545

4646
- `attribute_name` (String) Dictionary attribute name
4747
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
48-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
48+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
4949
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
5050
- `description` (String) Condition description
5151
- `dictionary_name` (String) Dictionary name

docs/data-sources/device_admin_policy_set.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ data "ise_device_admin_policy_set" "example" {
2828

2929
### Read-Only
3030

31-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
31+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
3232
- `condition_attribute_name` (String) Dictionary attribute name
3333
- `condition_attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
3434
- `condition_dictionary_name` (String) Dictionary name
@@ -51,7 +51,7 @@ Read-Only:
5151

5252
- `attribute_name` (String) Dictionary attribute name
5353
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
54-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
54+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
5555
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
5656
- `dictionary_name` (String) Dictionary name
5757
- `dictionary_value` (String) Dictionary value

docs/data-sources/network_access_authentication_rule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ data "ise_network_access_authentication_rule" "example" {
3333

3434
### Read-Only
3535

36-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
36+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
3737
- `condition_attribute_name` (String) Dictionary attribute name
3838
- `condition_attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
3939
- `condition_dictionary_name` (String) Dictionary name
@@ -57,7 +57,7 @@ Read-Only:
5757

5858
- `attribute_name` (String) Dictionary attribute name
5959
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
60-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
60+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
6161
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
6262
- `dictionary_name` (String) Dictionary name
6363
- `dictionary_value` (String) Dictionary value

docs/data-sources/network_access_authorization_exception_rule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ data "ise_network_access_authorization_exception_rule" "example" {
3333

3434
### Read-Only
3535

36-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
36+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
3737
- `condition_attribute_name` (String) Dictionary attribute name
3838
- `condition_attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
3939
- `condition_dictionary_name` (String) Dictionary name
@@ -55,7 +55,7 @@ Read-Only:
5555

5656
- `attribute_name` (String) Dictionary attribute name
5757
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
58-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
58+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
5959
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
6060
- `dictionary_name` (String) Dictionary name
6161
- `dictionary_value` (String) Dictionary value

docs/data-sources/network_access_authorization_global_exception_rule.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ data "ise_network_access_authorization_global_exception_rule" "example" {
2828

2929
### Read-Only
3030

31-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
31+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children))
3232
- `condition_attribute_name` (String) Dictionary attribute name
3333
- `condition_attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
3434
- `condition_dictionary_name` (String) Dictionary name
@@ -49,7 +49,7 @@ Read-Only:
4949

5050
- `attribute_name` (String) Dictionary attribute name
5151
- `attribute_value` (String) Attribute value for condition. Value type is specified in dictionary object.
52-
- `children` (Attributes List) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
52+
- `children` (Attributes Set) List of child conditions. `condition_type` must be one of `ConditionAndBlock` or `ConditionOrBlock`. (see [below for nested schema](#nestedatt--children--children))
5353
- `condition_type` (String) Indicates whether the record is the condition itself or a logical aggregation. Logical aggreation indicates that additional conditions are present under the children attribute.
5454
- `dictionary_name` (String) Dictionary name
5555
- `dictionary_value` (String) Dictionary value

0 commit comments

Comments
 (0)