Skip to content

Commit

Permalink
Merge branch 'current' into nfiann-bigquery-cloud-config
Browse files Browse the repository at this point in the history
  • Loading branch information
mirnawong1 authored Oct 24, 2024
2 parents e843de7 + e292b7a commit d7ddac4
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 36 deletions.
26 changes: 14 additions & 12 deletions styles/custom/UIElements.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
# styles/custom/BoldUIElements.yml
extends: existence
message: "UI elements like '%s' should be bold."
level: warning
tokens:
# Match UI elements that are not bolded (i.e., not within **), but exclude those starting a sentence or following a list number
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bSave\b'
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bSave as\b'
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bCancel\b'
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bSubmit\b'
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bEdit\b'
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bAccount settings\b'
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bProject details\b'
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bProfile settings\b'
- '(?<!^)(?<![.!?]\s)(?<!\d\.\s)\bPersonal profile\b'
# Match UI elements that are not bolded (i.e., not within **)
- '(?<!\*\*)\bSave\b(?!\*\*)'
- '(?<!\*\*)\bSave as\b(?!\*\*)'
- '(?<!\*\*)\bCancel\b(?!\*\*)'
- '(?<!\*\*)\bSubmit\b(?!\*\*)'
- '(?<!\*\*)\bEdit\b(?!\*\*)'
- '(?<!\*\*)\bAccount settings\b(?!\*\*)'
- '(?<!\*\*)\bProject details\b(?!\*\*)'
- '(?<!\*\*)\bProfile settings\b(?!\*\*)'
- '(?<!\*\*)\bPersonal profile\b(?!\*\*)'
- '(?<!\*\*)\bIntegrations\b(?!\*\*)'
- '(?<!\*\*)\bNotification settings\b(?!\*\*)'

scope: raw # Ensure the rule is applied before formatting
scope:
- raw
Original file line number Diff line number Diff line change
Expand Up @@ -70,5 +70,5 @@ dbt Cloud imports everything in the collection(s) and you can continue to view t
## Refresh auto-exposures in jobs

:::info Coming soon
Soon, you’ll also be able to use auto-exposures trigger refresh of the data used in your Tableau dashboards from within dbt Cloud. Stay tuned for more on this soon!
Soon, you’ll also be able to use auto-exposures to trigger the refresh of the data used in your Tableau dashboards from within dbt Cloud. Stay tuned for more on this soon!
:::
2 changes: 1 addition & 1 deletion website/docs/docs/cloud-integrations/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Many data applications integrate with dbt Cloud, enabling you to leverage the po
<div className="grid--3-col">

<Card
title="Configure auto-exposures (beta)"
title="Configure auto-exposures (preview)"
body="Import and auto-generate exposures from dashboards to understand how models are used in downstream tools for a richer downstream lineage."
link="/docs/cloud-integrations/configure-auto-exposures"
icon="dbt-bit"/>
Expand Down
15 changes: 6 additions & 9 deletions website/docs/docs/cloud/manage-access/invite-users.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,16 @@ You must have proper permissions to invite new users:

## Invite new users

1. In your dbt Cloud account, select the gear menu in the upper right corner and then select **Account Settings**.
2. From the left sidebar, select **Users**.

<Lightbox src="/img/docs/dbt-cloud/access-control/users-screen.png" title="The user screen in the Account Settings page"/>

3. Click on **Invite Users**.
1. In your dbt Cloud account, select your account name in the bottom left corner. Then select **Account settings**.
2. Under **Settings**, select **Users**.
3. Click on **Invite users**.

<Lightbox src="/img/docs/dbt-cloud/access-control/invite-users.png" width="60%" title="The invite users pane"/>

4. In the **Email Addresses** field, enter the email addresses of the users you would like to invite separated by comma, semicolon, or a new line.
4. In the **Email Addresses** field, enter the email addresses of the users you want to invite separated by a comma, semicolon, or a new line.
5. Select the license type for the batch of users from the **License** dropdown.
6. Select the group(s) you would like the invitees to belong to.
7. Click **Send Invitations**.
6. Select the group(s) you want the invitees to belong to.
7. Click **Send invitations**.
- If the list of invitees exceeds the number of licenses your account has available, you will receive a warning when you click **Send Invitations** and the invitations will not be sent.


Expand Down
7 changes: 7 additions & 0 deletions website/docs/docs/cloud/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,13 @@ Your account will be automatically migrated on or after its scheduled date. Howe

## Recommended actions

:::info Rescheduling your migration

If you're on the dbt Cloud Enterprise tier, you can postpone your account migration by up to 45 days. To reschedule your migration, navigate to **Account Settings****Migration guide**.

For help, contact the dbt Support Team at [[email protected]](mailto:[email protected]).
:::

We highly recommended you take these actions:

- Ensure pending user invitations are accepted or note outstanding invitations. Pending user invitations might be voided during the migration. You can resend user invitations after the migration is complete.
Expand Down
3 changes: 2 additions & 1 deletion website/docs/docs/dbt-cloud-apis/service-tokens.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ You can assign service account tokens to any permission set available in dbt Clo
The following permissions can be assigned to a service account token on a Team plan. Refer to [Enterprise permissions](/docs/cloud/manage-access/enterprise-permissions) for more information about these roles.

- Account Admin &mdash; Account Admin service tokens have full `read + write` access to an account, so please use them with caution. A Team plan refers to this permission set as an "Owner role."
- Billing Admin
- Job Admin
- Job Runner
- Metadata Only
- Member
- Read-only
Expand All @@ -59,6 +59,7 @@ Refer to [Enterprise permissions](/docs/cloud/manage-access/enterprise-permissio
- Developer
- Git Admin
- Job Admin
- Job Runner
- Job Viewer
- Manage marketplace apps
- Metadata Only
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ Snowflake allows two configuration scenarios for scheduling automatic refreshes:
- **Time-based** &mdash; Provide a value of the form `<int> { seconds | minutes | hours | days }`. For example, if the dynamic table needs to be updated every 30 minutes, use `target_lag='30 minutes'`.
- **Downstream** &mdash; Applicable when the dynamic table is referenced by other dynamic tables. In this scenario, `target_lag='downstream'` allows for refreshes to be controlled at the target, instead of at each layer.

Learn more about `target_lag` in Snowflake's [docs](https://docs.snowflake.com/en/user-guide/dynamic-tables-refresh#understanding-target-lag).
Learn more about `target_lag` in Snowflake's [docs](https://docs.snowflake.com/en/user-guide/dynamic-tables-refresh#understanding-target-lag). Please note that Snowflake supports a target lag of 1 minute or longer.

<VersionBlock firstVersion="1.9">

Expand Down
11 changes: 5 additions & 6 deletions website/docs/reference/resource-properties/description.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ description: "This guide explains how to use the description key to add YAML des
{ label: 'Snapshots', value: 'snapshots', },
{ label: 'Analyses', value: 'analyses', },
{ label: 'Macros', value: 'macros', },
{ label: 'Singular data tests', value: 'singular_data_tests', },
{ label: 'Data tests', value: 'data_tests', },
]
}>
<TabItem value="models">
Expand Down Expand Up @@ -146,17 +146,17 @@ macros:

</TabItem>

<TabItem value="singular_data_tests">
<TabItem value="data_tests">

<VersionBlock firstVersion="1.9">

<File name='tests/singular/schema.yml'>
<File name='tests/schema.yml'>

```yml
version: 2

data_tests:
- name: singular_data_test_name
- name: data_test_name
description: markdown_string

```
Expand All @@ -167,13 +167,12 @@ data_tests:

<VersionBlock lastVersion="1.8">

The `description` property is available for singular data tests beginning in dbt v1.9.
The `description` property is available for generic and singular data tests beginning in dbt v1.9.

</VersionBlock>

</TabItem>


</Tabs>

## Definition
Expand Down
8 changes: 3 additions & 5 deletions website/snippets/_enterprise-permissions-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ Account roles enable you to manage the dbt Cloud account and manage the account
| Jobs | W | | W | | R |
| Metadata GraphQL API access | R | | R | | R |
| Permissions | W | | W | W | R |
| Profile | W | | W | | R |
| Projects | W | | W | R | R |
| Repositories | W | | W | | R |
| Runs | W | | W | | R |
Expand Down Expand Up @@ -75,15 +74,14 @@ The project roles enable you to work within the projects in various capacities.

|Project-level permission | Admin | Analyst | Database admin | Developer | Git Admin | Job admin | Job runner | Job viewer | Metadata <br></br> (Discovery API only) | Semantic Layer | Stakeholder | Team admin | Webhook |
|--------------------------|:-----:|:-------:|:--------------:|:---------:|:---------:|:---------:|:-----------:|:-----------:|:--------:|:--------------:|:-----------:|:----------:|:-------:|
| Environment credentials (deployment) | W | W | W | W | R | W | | | | | R | R | |
| Environment credentials (deployment) | W | W | W | W | R | W | | | | | R | R | |
| Custom env. variables | W | W | W | W | W | W | | R | | | R | W | |
| Data platform configurations | W | W | W | W | R | W | | | | | R | R | |
| Data platform configurations| W | W | W | W | R | W | | | | | R | R | |
| Develop <br />(IDE or dbt Cloud CLI) | W | W | | W | | | | | | | | | |
| Environments | W | R | R | R | R | W | | R | | | R | R | |
| Jobs | W | R | R | R | R | W | R | R | | | R | R | |
| Metadata GraphQL API access | R | R | R | R | R | R | | R | R | | R | R | |
| Permissions (Groups & Licenses) | W | | R | R | R | | | | | | | R | |
| Profile (Credentials) | W | R | | R | R | R | | | | | R | | |
| Permissions (Groups & Licenses) | W | | R | R | R | | | | | | | R | | | | | R | | |
| Projects | W | W | W | W | W | R | | R | | | R | W | |
| Repositories | W | | R | R | W | | | | | | R | R | |
| Runs | W | R | R | R | R | W | W | R | | | R | R | |
Expand Down

0 comments on commit d7ddac4

Please sign in to comment.