Skip to content

Commit

Permalink
Compiled missing docs (Snowflake-Labs#632)
Browse files Browse the repository at this point in the history
  • Loading branch information
robbruce authored and anton-chekanov committed Jan 25, 2022
1 parent bdeeb45 commit b9afbdc
Show file tree
Hide file tree
Showing 21 changed files with 1,018 additions and 0 deletions.
49 changes: 49 additions & 0 deletions docs/data-sources/external_functions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "snowflake_external_functions Data Source - terraform-provider-snowflake"
subcategory: ""
description: |-
---

# snowflake_external_functions (Data Source)



## Example Usage

```terraform
data "snowflake_external_functions" "current" {
database = "MYDB"
schema = "MYSCHEMA"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- **database** (String) The database from which to return the schemas from.
- **schema** (String) The schema from which to return the external functions from.

### Optional

- **id** (String) The ID of this resource.

### Read-Only

- **external_functions** (List of Object) The external functions in the schema (see [below for nested schema](#nestedatt--external_functions))

<a id="nestedatt--external_functions"></a>
### Nested Schema for `external_functions`

Read-Only:

- **comment** (String)
- **database** (String)
- **language** (String)
- **name** (String)
- **schema** (String)


48 changes: 48 additions & 0 deletions docs/data-sources/external_tables.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "snowflake_external_tables Data Source - terraform-provider-snowflake"
subcategory: ""
description: |-
---

# snowflake_external_tables (Data Source)



## Example Usage

```terraform
data "snowflake_external_tables" "current" {
database = "MYDB"
schema = "MYSCHEMA"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- **database** (String) The database from which to return the schemas from.
- **schema** (String) The schema from which to return the external tables from.

### Optional

- **id** (String) The ID of this resource.

### Read-Only

- **external_tables** (List of Object) The external tables in the schema (see [below for nested schema](#nestedatt--external_tables))

<a id="nestedatt--external_tables"></a>
### Nested Schema for `external_tables`

Read-Only:

- **comment** (String)
- **database** (String)
- **name** (String)
- **schema** (String)


49 changes: 49 additions & 0 deletions docs/data-sources/file_formats.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "snowflake_file_formats Data Source - terraform-provider-snowflake"
subcategory: ""
description: |-
---

# snowflake_file_formats (Data Source)



## Example Usage

```terraform
data "snowflake_file_formats" "current" {
database = "MYDB"
schema = "MYSCHEMA"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- **database** (String) The database from which to return the schemas from.
- **schema** (String) The schema from which to return the file formats from.

### Optional

- **id** (String) The ID of this resource.

### Read-Only

- **file_formats** (List of Object) The file formats in the schema (see [below for nested schema](#nestedatt--file_formats))

<a id="nestedatt--file_formats"></a>
### Nested Schema for `file_formats`

Read-Only:

- **comment** (String)
- **database** (String)
- **format_type** (String)
- **name** (String)
- **schema** (String)


49 changes: 49 additions & 0 deletions docs/data-sources/masking_policies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "snowflake_masking_policies Data Source - terraform-provider-snowflake"
subcategory: ""
description: |-
---

# snowflake_masking_policies (Data Source)



## Example Usage

```terraform
data "snowflake_masking_policies" "current" {
database = "MYDB"
schema = "MYSCHEMA"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- **database** (String) The database from which to return the schemas from.
- **schema** (String) The schema from which to return the maskingPolicies from.

### Optional

- **id** (String) The ID of this resource.

### Read-Only

- **masking_policies** (List of Object) The maskingPolicies in the schema (see [below for nested schema](#nestedatt--masking_policies))

<a id="nestedatt--masking_policies"></a>
### Nested Schema for `masking_policies`

Read-Only:

- **comment** (String)
- **database** (String)
- **kind** (String)
- **name** (String)
- **schema** (String)


48 changes: 48 additions & 0 deletions docs/data-sources/materialized_views.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "snowflake_materialized_views Data Source - terraform-provider-snowflake"
subcategory: ""
description: |-
---

# snowflake_materialized_views (Data Source)



## Example Usage

```terraform
data "snowflake_materialized_views" "current" {
database = "MYDB"
schema = "MYSCHEMA"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- **database** (String) The database from which to return the schemas from.
- **schema** (String) The schema from which to return the views from.

### Optional

- **id** (String) The ID of this resource.

### Read-Only

- **materialized_views** (List of Object) The views in the schema (see [below for nested schema](#nestedatt--materialized_views))

<a id="nestedatt--materialized_views"></a>
### Nested Schema for `materialized_views`

Read-Only:

- **comment** (String)
- **database** (String)
- **name** (String)
- **schema** (String)


49 changes: 49 additions & 0 deletions docs/data-sources/pipes.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "snowflake_pipes Data Source - terraform-provider-snowflake"
subcategory: ""
description: |-
---

# snowflake_pipes (Data Source)



## Example Usage

```terraform
data "snowflake_pipes" "current" {
database = "MYDB"
schema = "MYSCHEMA"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- **database** (String) The database from which to return the schemas from.
- **schema** (String) The schema from which to return the pipes from.

### Optional

- **id** (String) The ID of this resource.

### Read-Only

- **pipes** (List of Object) The pipes in the schema (see [below for nested schema](#nestedatt--pipes))

<a id="nestedatt--pipes"></a>
### Nested Schema for `pipes`

Read-Only:

- **comment** (String)
- **database** (String)
- **integration** (String)
- **name** (String)
- **schema** (String)


41 changes: 41 additions & 0 deletions docs/data-sources/resource_monitors.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "snowflake_resource_monitors Data Source - terraform-provider-snowflake"
subcategory: ""
description: |-
---

# snowflake_resource_monitors (Data Source)



## Example Usage

```terraform
data "snowflake_resource_monitors" "current" {
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Optional

- **id** (String) The ID of this resource.

### Read-Only

- **resource_monitors** (List of Object) The resource monitors in the database (see [below for nested schema](#nestedatt--resource_monitors))

<a id="nestedatt--resource_monitors"></a>
### Nested Schema for `resource_monitors`

Read-Only:

- **comment** (String)
- **credit_quota** (String)
- **frequency** (String)
- **name** (String)


48 changes: 48 additions & 0 deletions docs/data-sources/row_access_policies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
# generated by https://github.com/hashicorp/terraform-plugin-docs
page_title: "snowflake_row_access_policies Data Source - terraform-provider-snowflake"
subcategory: ""
description: |-
---

# snowflake_row_access_policies (Data Source)



## Example Usage

```terraform
data "snowflake_row_access_policies" "current" {
database = "MYDB"
schema = "MYSCHEMA"
}
```

<!-- schema generated by tfplugindocs -->
## Schema

### Required

- **database** (String) The database from which to return the schemas from.
- **schema** (String) The schema from which to return the row access policyfrom.

### Optional

- **id** (String) The ID of this resource.

### Read-Only

- **row_access_policies** (List of Object) The row access policy in the schema (see [below for nested schema](#nestedatt--row_access_policies))

<a id="nestedatt--row_access_policies"></a>
### Nested Schema for `row_access_policies`

Read-Only:

- **comment** (String)
- **database** (String)
- **name** (String)
- **schema** (String)


Loading

0 comments on commit b9afbdc

Please sign in to comment.