ALTER SERVICE ACCOUNT SET
Updates the configuration of the specified service account. For more information, see Service accounts.Syntax
Parameters
Connection Preferences
TheCONNECTION_PREFERENCE parameter determines how a service account accesses Firebolt:
PUBLIC_ONLY: Allows access only through the public internet.PRIVATE_ONLY: Allows access only through AWS PrivateLink.PREFER_PUBLIC(Default): Prefers the public internet but calls that do reach Firebolt via AWS PrivateLink won’t be explicitly rejected.PREFER_PRIVATE: Prefers AWS PrivateLink but calls that do reach firebolt via the public internet won’t be explicitly rejected.
Example
The following code example assigns the network policymy_network_policy to the serviceaccount1 service account:
ALTER SERVICE ACCOUNT RENAME TO
Renames a service account.Syntax
Parameters
Example
The following command will rename the service account “machine_user” to “ai_agent”.ALTER SERVICE ACCOUNT OWNER TO
Changes the owner of a service account. You can view the current owner in theservice_account_owner column of the information_schema.service_accounts view.
For more information, see ownership.