Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

IBM SCC SI - Docs Correction #3342

Merged
merged 4 commits into from
Nov 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion website/docs/d/scc_si_notes.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Provides a read-only data source for scc_si_notes. You can then reference the fi

```hcl
data "ibm_scc_si_notes" "notes" {
page_size = 3
provider_id = "tf-test"
}
```

Expand All @@ -23,6 +23,7 @@ data "ibm_scc_si_notes" "notes" {
Review the argument reference that you can specify for your data source.

* `account_id` - (Optional, String) Account ID is optional, if not provided value will be inferred from the token retrieved from the IBM Cloud API key.
* `provider_id` - (Required, Forces new resource, String) Part of the parent. This field contains the provider ID. For example: providers/{provider_id}.
* `pages_size` - (Optional, String) Number of notes to return in the list.
* `page_token` - (Optional, String) Token to provide to skip to a particular spot in the list.

Expand Down
2 changes: 1 addition & 1 deletion website/docs/d/scc_si_occurrences.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Provides a read-only data source for scc_si_occurences. You can then reference t

```hcl
data "ibm_scc_si_occurences" "scc_si_occurences" {
page_size = 3
provider_id = "tf-test"
}
```

Expand Down
2 changes: 1 addition & 1 deletion website/docs/r/scc_si_note.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -191,5 +191,5 @@ The `note_id` property can be formed from `account_id`, `provider_id`, and `note

# Syntax
```
$ terraform import ibm_scc_si_note.scc_si_note <provider_id>/<note_id>
$ terraform import ibm_scc_si_note.scc_si_note <account_id>/<provider_id>/<note_id>
```
16 changes: 8 additions & 8 deletions website/docs/r/scc_si_occurrence.html.markdown
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
---
layout: "ibm"
subcategory: "Security and Compliance Center"
page_title: "IBM : ibm_scc_si_occurence"
page_title: "IBM : ibm_scc_si_occurrence"
description: |-
Manages scc_si_occurence.
Manages scc_si_occurrence.
---

# ibm_scc_si_occurence
# ibm_scc_si_occurrence

Provides a resource for scc_si_occurence. This allows scc_si_occurence to be created, updated and deleted.
Provides a resource for scc_si_occurrence. This allows scc_si_occurrence to be created, updated and deleted.

## Example Usage

Expand Down Expand Up @@ -94,7 +94,7 @@ Nested scheme for **finding**:
* `url` - (Optional, String) The URL associated to this next steps.
* `severity` - (Optional, String) Note provider-assigned severity/impact ranking- LOW&#58; Low Impact- MEDIUM&#58; Medium Impact- HIGH&#58; High Impact- CRITICAL&#58; Critical Impact.
* Constraints: Allowable values are: `LOW`, `MEDIUM`, `HIGH`, `CRITICAL`.
* `kind` - (Required, String) The type of note. Use this field to filter notes and occurences by kind. - FINDING&#58; The note and occurrence represent a finding. - KPI&#58; The note and occurrence represent a KPI value. - CARD&#58; The note represents a card showing findings and related metric values. - CARD_CONFIGURED&#58; The note represents a card configured for a user account. - SECTION&#58; The note represents a section in a dashboard.
* `kind` - (Required, String) The type of note. Use this field to filter notes and occurrences by kind. - FINDING&#58; The note and occurrence represent a finding. - KPI&#58; The note and occurrence represent a KPI value. - CARD&#58; The note represents a card showing findings and related metric values. - CARD_CONFIGURED&#58; The note represents a card configured for a user account. - SECTION&#58; The note represents a section in a dashboard.
* Constraints: Allowable values are: `FINDING`, `KPI`, `CARD`, `CARD_CONFIGURED`, `SECTION`.
* `kpi` - (Optional, List) Kpi provides details about a KPI occurrence.
Nested scheme for **kpi**:
Expand All @@ -112,13 +112,13 @@ Nested scheme for **kpi**:

In addition to all argument references listed, you can access the following attribute references after your resource is created.

* `id` - The unique identifier of the scc_si_occurence.
* `id` - The unique identifier of the scc_si_occurrence.
* `create_time` - (Optional, String) Output only. The time this `Occurrence` was created.
* `update_time` - (Optional, String) Output only. The time this `Occurrence` was last updated.

## Import

You can import the `ibm_scc_si_occurence` resource by using `id`.
You can import the `ibm_scc_si_occurrence` resource by using `id`.
The `id` property can be formed from `provider_id`, and `occurrence_id` in the following format:

```
Expand All @@ -130,5 +130,5 @@ The `id` property can be formed from `provider_id`, and `occurrence_id` in the f

# Syntax
```
$ terraform import ibm_scc_si_occurence.scc_si_occurence <provider_id>/<occurrence_id>
$ terraform import ibm_scc_si_occurrence.scc_si_occurrence <account_id>/<provider_id>/<occurrence_id>
```