generated from hashicorp/terraform-provider-scaffolding-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
1d76791
commit bc98b24
Showing
21 changed files
with
193 additions
and
503 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "jiraassets_object_schema Data Source - terraform-provider-jira-assets" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# jiraassets_object_schema (Data Source) | ||
|
||
|
||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Read-Only | ||
|
||
- `can_manage` (Boolean) | ||
- `created` (String) | ||
- `description` (String) | ||
- `global_id` (String) | ||
- `id` (String) The ID of this resource. | ||
- `id_as_int` (Number) | ||
- `name` (String) | ||
- `object_count` (Number) | ||
- `object_schema_key` (String) | ||
- `object_type_count` (Number) | ||
- `status` (String) | ||
- `updated` (String) | ||
- `workspace_id` (String) |
This file was deleted.
Oops, something went wrong.
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,44 @@ | ||
--- | ||
# generated by https://github.com/hashicorp/terraform-plugin-docs | ||
page_title: "jiraassets_object Resource - terraform-provider-jira-assets" | ||
subcategory: "" | ||
description: |- | ||
--- | ||
|
||
# jiraassets_object (Resource) | ||
|
||
|
||
|
||
|
||
|
||
<!-- schema generated by tfplugindocs --> | ||
## Schema | ||
|
||
### Required | ||
|
||
- `attributes` (Attributes Set) (see [below for nested schema](#nestedatt--attributes)) | ||
- `type_id` (String) | ||
|
||
### Optional | ||
|
||
- `avatar_uuid` (String) | ||
- `has_avatar` (Boolean) | ||
|
||
### Read-Only | ||
|
||
- `created` (String) | ||
- `global_id` (String) | ||
- `id` (String) The ID of this resource. | ||
- `label` (String) | ||
- `object_key` (String) | ||
- `updated` (String) | ||
- `workspace_id` (String) | ||
|
||
<a id="nestedatt--attributes"></a> | ||
### Nested Schema for `attributes` | ||
|
||
Required: | ||
|
||
- `attr_type_id` (String) | ||
- `attr_value` (String) |
This file was deleted.
Oops, something went wrong.
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,4 @@ | ||
data "object_schema" "example" { | ||
object_type = "example" | ||
object_id = "example" | ||
} |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
provider "scaffolding" { | ||
# example configuration here | ||
provider "jiraassets" { | ||
workspace_id = "" | ||
user = "" | ||
password = "" | ||
} |
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,10 @@ | ||
resource "jiraassets_object" "example_object_1" { | ||
object_type = "example" | ||
object_id = "example" | ||
attributes = [ | ||
{ | ||
attr_type_id = "" | ||
attr_value = "" | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.