Skip to content

Commit

Permalink
Merge pull request #16 from matino/gh-pages
Browse files Browse the repository at this point in the history
fix(examples): replace "my_account" name with "dev"
  • Loading branch information
arushi-firebolt authored Jan 2, 2024
2 parents 0796478 + 50b732c commit f73807a
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
6 changes: 3 additions & 3 deletions docs/Guides/managing-your-organization/managing-accounts.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Creating an account requires the org_admin role.
To create an account using SQL, use the [`CREATE ACCOUNT`](../../sql_reference/commands/data-definition/create-account.md) statement. For example:

```sql
CREATE ACCOUNT my_account WITH REGION = 'us-east-1';
CREATE ACCOUNT dev WITH REGION = 'us-east-1';
```

### UI
Expand Down Expand Up @@ -53,7 +53,7 @@ Editing an account requires the account_admin or org_admin role.
To edit an existing account using SQL, use the [`ALTER ACCOUNT`](../../sql_reference/commands/data-definition/alter-account.md) statement. For example:

```sql
ALTER ACCOUNT my_account RENAME TO my_dev_account;
ALTER ACCOUNT dev RENAME TO staging;
```

### UI
Expand All @@ -76,7 +76,7 @@ Deleting an account requires the account_admin or org_admin role.
To delete an existing account using SQL, use the [`DROP ACCOUNT`](../../sql_reference/commands/data-definition/drop-account.md) statement. For example:

```sql
DROP ACCOUNT my_account;
DROP ACCOUNT dev;
```

### UI
Expand Down
4 changes: 2 additions & 2 deletions docs/Guides/query-data/using-the-api.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ curl http://api.app.firebolt.io/web/v3/account/<account name>/engineUrl
-H 'Authorization: Bearer <access token>'
```

**Example:** `https://api.app.firebolt.io/web/v3/account/my_account/engineUrl`
**Example:** `https://api.app.firebolt.io/web/v3/account/my-account/engineUrl`

**Response**

Expand All @@ -89,7 +89,7 @@ curl http://api.app.firebolt.io/web/v3/account/<account name>/resolve \
-H 'Authorization: Bearer <access token>'
```

**Example:** `https://api.app.firebolt.io/web/v3/account/my_account/resolve`
**Example:** `https://api.app.firebolt.io/web/v3/account/my-account/resolve`

**Response**

Expand Down
6 changes: 3 additions & 3 deletions docs/sql_reference/commands/access-control/grant.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ GRANT USAGE ON DATABASE my_db TO user_role;

## Example 2

The following command will grant USAGE permissions on all databases in the account "my_account" to the role "user_role".
The following command will grant USAGE permissions on all databases in the account "dev" to the role "user_role".

```sql
GRANT USAGE ANY DATABASE ON ACCOUNT my_account TO user_role;
```
GRANT USAGE ANY DATABASE ON ACCOUNT dev TO user_role;
```
6 changes: 3 additions & 3 deletions docs/sql_reference/commands/access-control/revoke.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ REVOKE MODIFY ON DATABASE my_db FROM user_role;

## Example 2

The following command will revoke USAGE permissions on all databases in the account "my_account" from the role "user_role".
The following command will revoke USAGE permissions on all databases in the account "dev" from the role "user_role".

```sql
REVOKE USAGE ANY DATABASE ON ACCOUNT my_account FROM user_role;
```
REVOKE USAGE ANY DATABASE ON ACCOUNT dev FROM user_role;
```
4 changes: 2 additions & 2 deletions docs/sql_reference/commands/data-definition/alter-account.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ ALTER ACCOUNT <account_name> RENAME TO <new_account_name>;

## Example

The following command will rename the "my_account" account to "my_dev_account".
The following command will rename the "dev" account to "staging".

```sql
ALTER ACCOUNT my_account RENAME TO my_dev_account;
ALTER ACCOUNT dev RENAME TO staging;
```
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@ CREATE ACCOUNT [IF NOT EXISTS] <account_name>
The following command will create an account in the US East (N. Virginia) region.

```sql
CREATE ACCOUNT my_account WITH REGION = “us-east-1
CREATE ACCOUNT dev WITH REGION = “us-east-1
```
4 changes: 2 additions & 2 deletions docs/sql_reference/commands/data-definition/drop-account.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ All engines in your accounts must be in a stopped state before running the `DROP

## Example

The following command will delete the "my_account" account.
The following command will delete the "dev" account.

```sql
DROP ACCOUNT my_account
DROP ACCOUNT dev
```

0 comments on commit f73807a

Please sign in to comment.