You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: cmd/tfplugindocs/testdata/scripts/provider-build/generate/null_provider_success.txtar
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -234,12 +234,12 @@ class MyConvertedCode(TerraformStack):
234
234
### Optional
235
235
236
236
- `has_computed_default` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
237
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
237
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
238
238
239
239
### Read-Only
240
240
241
241
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
242
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
242
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
243
243
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
244
244
245
245
@@ -344,7 +344,7 @@ class MyConvertedCode(TerraformStack):
344
344
345
345
### Optional
346
346
347
-
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
347
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
348
348
349
349
### Read-Only
350
350
@@ -462,12 +462,12 @@ class MyConvertedCode extends TerraformStack {
462
462
### Optional
463
463
464
464
- `hasComputedDefault` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
465
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
465
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
466
466
467
467
### Read-Only
468
468
469
469
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
470
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
470
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
471
471
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
472
472
473
473
@@ -582,7 +582,7 @@ class MyConvertedCode extends TerraformStack {
582
582
583
583
### Optional
584
584
585
-
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
585
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
586
586
587
587
### Read-Only
588
588
@@ -669,12 +669,12 @@ output "all_server_ips" {
669
669
### Optional
670
670
671
671
- `has_computed_default` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
672
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
672
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
673
673
674
674
### Read-Only
675
675
676
676
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
677
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
677
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
678
678
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
766
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
Copy file name to clipboardExpand all lines: cmd/tfplugindocs/testdata/scripts/schema-json/generate/framework_provider_success_all_framework_types.txtar
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -81,23 +81,23 @@ example resource
81
81
- `bool_attribute` (Boolean) example bool attribute
82
82
- `float64_attribute` (Number) example float64 attribute
83
83
- `int64_attribute` (Number) example int64 attribute
84
-
- `list_attribute` (List of String) example list attribute
84
+
- `list_attribute` (List of Strings) example list attribute
85
85
- `list_nested_block` (Block List) example list nested block (see [below for nested schema](#nestedblock--list_nested_block))
86
86
- `list_nested_block_sensitive_nested_attribute` (Block List) (see [below for nested schema](#nestedblock--list_nested_block_sensitive_nested_attribute))
87
-
- `map_attribute` (Map of String) example map attribute
87
+
- `map_attribute` (Map of Strings) example map attribute
88
88
- `number_attribute` (Number) example number attribute
89
89
- `object_attribute` (Object) example object attribute (see [below for nested schema](#nestedatt--object_attribute))
90
90
- `object_attribute_with_nested_object_attribute` (Object) example object attribute with nested object attribute (see [below for nested schema](#nestedatt--object_attribute_with_nested_object_attribute))
91
91
- `sensitive_bool_attribute` (Boolean, Sensitive) example sensitive bool attribute
92
92
- `sensitive_float64_attribute` (Number, Sensitive) example sensitive float64 attribute
93
93
- `sensitive_int64_attribute` (Number, Sensitive) example sensitive int64 attribute
94
-
- `sensitive_list_attribute` (List of String, Sensitive) example sensitive list attribute
95
-
- `sensitive_map_attribute` (Map of String, Sensitive) example sensitive map attribute
94
+
- `sensitive_list_attribute` (List of Strings, Sensitive) example sensitive list attribute
95
+
- `sensitive_map_attribute` (Map of Strings, Sensitive) example sensitive map attribute
96
96
- `sensitive_number_attribute` (Number, Sensitive) example sensitive number attribute
97
97
- `sensitive_object_attribute` (Object, Sensitive) example sensitive object attribute (see [below for nested schema](#nestedatt--sensitive_object_attribute))
98
-
- `sensitive_set_attribute` (Set of String, Sensitive) example sensitive set attribute
98
+
- `sensitive_set_attribute` (Set of Strings, Sensitive) example sensitive set attribute
99
99
- `sensitive_string_attribute` (String, Sensitive) example sensitive string attribute
100
-
- `set_attribute` (Set of String) example set attribute
100
+
- `set_attribute` (Set of Strings) example set attribute
101
101
- `set_nested_block` (Block Set) example set nested block (see [below for nested schema](#nestedblock--set_nested_block))
102
102
- `single_nested_block` (Block, Optional) example single nested block (see [below for nested schema](#nestedblock--single_nested_block))
103
103
- `single_nested_block_sensitive_nested_attribute` (Block, Optional) example sensitive single nested block (see [below for nested schema](#nestedblock--single_nested_block_sensitive_nested_attribute))
Copy file name to clipboardExpand all lines: cmd/tfplugindocs/testdata/scripts/schema-json/generate/null_provider_success.txtar
+9-9Lines changed: 9 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -209,12 +209,12 @@ class MyConvertedCode(TerraformStack):
209
209
### Optional
210
210
211
211
- `has_computed_default` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
212
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
212
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
213
213
214
214
### Read-Only
215
215
216
216
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
217
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
217
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
218
218
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
219
219
220
220
@@ -319,7 +319,7 @@ class MyConvertedCode(TerraformStack):
319
319
320
320
### Optional
321
321
322
-
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
322
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
323
323
324
324
### Read-Only
325
325
@@ -437,12 +437,12 @@ class MyConvertedCode extends TerraformStack {
437
437
### Optional
438
438
439
439
- `hasComputedDefault` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
440
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
440
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
441
441
442
442
### Read-Only
443
443
444
444
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
445
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
445
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
446
446
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
447
447
448
448
@@ -557,7 +557,7 @@ class MyConvertedCode extends TerraformStack {
557
557
558
558
### Optional
559
559
560
-
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
560
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
561
561
562
562
### Read-Only
563
563
@@ -644,12 +644,12 @@ output "all_server_ips" {
644
644
### Optional
645
645
646
646
- `has_computed_default` (String) If set, its literal value will be stored and returned. If not, its value defaults to `"default"`. This argument exists primarily for testing and has little practical use.
647
-
- `inputs` (Map of String) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
647
+
- `inputs` (Map of Strings) A map of arbitrary strings that is copied into the `outputs` attribute, and accessible directly for interpolation.
648
648
649
649
### Read-Only
650
650
651
651
- `id` (String, Deprecated) This attribute is only present for some legacy compatibility issues and should not be used. It will be removed in a future version.
652
-
- `outputs` (Map of String) After the data source is "read", a copy of the `inputs` map.
652
+
- `outputs` (Map of Strings) After the data source is "read", a copy of the `inputs` map.
653
653
- `random` (String) A random value. This is primarily for testing and has little practical use; prefer the [hashicorp/random provider](https://registry.terraform.io/providers/hashicorp/random) for more practical random number use-cases.
- `triggers` (Map of String) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
741
+
- `triggers` (Map of Strings) A map of arbitrary strings that, when changed, will force the null resource to be replaced, re-running any associated provisioners.
Copy file name to clipboardExpand all lines: internal/schemamd/testdata/framework_types.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,23 +13,23 @@
13
13
-`bool_attribute` (Boolean) example bool attribute
14
14
-`float64_attribute` (Number) example float64 attribute
15
15
-`int64_attribute` (Number) example int64 attribute
16
-
-`list_attribute` (List of String) example list attribute
16
+
-`list_attribute` (List of Strings) example list attribute
17
17
-`list_nested_block` (Block List) example list nested block (see [below for nested schema](#nestedblock--list_nested_block))
18
18
-`list_nested_block_sensitive_nested_attribute` (Block List) (see [below for nested schema](#nestedblock--list_nested_block_sensitive_nested_attribute))
19
-
-`map_attribute` (Map of String) example map attribute
19
+
-`map_attribute` (Map of Strings) example map attribute
20
20
-`number_attribute` (Number) example number attribute
21
21
-`object_attribute` (Object) example object attribute (see [below for nested schema](#nestedatt--object_attribute))
22
22
-`object_attribute_with_nested_object_attribute` (Object) example object attribute with nested object attribute (see [below for nested schema](#nestedatt--object_attribute_with_nested_object_attribute))
23
23
-`sensitive_bool_attribute` (Boolean, Sensitive) example sensitive bool attribute
24
24
-`sensitive_float64_attribute` (Number, Sensitive) example sensitive float64 attribute
25
25
-`sensitive_int64_attribute` (Number, Sensitive) example sensitive int64 attribute
26
-
-`sensitive_list_attribute` (List of String, Sensitive) example sensitive list attribute
27
-
-`sensitive_map_attribute` (Map of String, Sensitive) example sensitive map attribute
26
+
-`sensitive_list_attribute` (List of Strings, Sensitive) example sensitive list attribute
27
+
-`sensitive_map_attribute` (Map of Strings, Sensitive) example sensitive map attribute
28
28
-`sensitive_number_attribute` (Number, Sensitive) example sensitive number attribute
29
29
-`sensitive_object_attribute` (Object, Sensitive) example sensitive object attribute (see [below for nested schema](#nestedatt--sensitive_object_attribute))
30
-
-`sensitive_set_attribute` (Set of String, Sensitive) example sensitive set attribute
30
+
-`sensitive_set_attribute` (Set of Strings, Sensitive) example sensitive set attribute
31
31
-`sensitive_string_attribute` (String, Sensitive) example sensitive string attribute
32
-
-`set_attribute` (Set of String) example set attribute
32
+
-`set_attribute` (Set of Strings) example set attribute
33
33
-`set_nested_block` (Block Set) example set nested block (see [below for nested schema](#nestedblock--set_nested_block))
34
34
-`single_nested_block` (Block, Optional) example single nested block (see [below for nested schema](#nestedblock--single_nested_block))
35
35
-`single_nested_block_sensitive_nested_attribute` (Block, Optional) example sensitive single nested block (see [below for nested schema](#nestedblock--single_nested_block_sensitive_nested_attribute))
0 commit comments