okta_support
Creates, updates, deletes, gets or lists an okta_support resource.
Overview
| Name | okta_support |
| Type | Resource |
| Id | okta.org.okta_support |
Fields
The following fields are returned by SELECT queries:
SELECT not supported for this resource, use SHOW METHODS to view available operations for the resource.
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
grant_okta_support | insert | subdomain | Grants Okta Support temporary access to your org as an administrator for eight hours > Note: This resource is deprecated. Use the Update an Okta Support case resource to grant Okta Support access for a support case. > For the corresponding Okta Admin Console feature, see Give access to Okta Support. | |
revoke_okta_support | delete | subdomain | Revokes Okta Support access to your org > Note: This resource is deprecated. Use the Update an Okta Support case resource to revoke Okta Support access for a support case. > For the corresponding Okta Admin Console feature, see Give access to Okta Support. | |
extend_okta_support | exec | subdomain | Extends the length of time that Okta Support can access your org by 24 hours. This means that 24 hours are added to the remaining access time. > Note: This resource is deprecated. Use the Update an Okta Support case resource to extend Okta Support access for a support case. > For the corresponding Okta Admin Console feature, see Give access to Okta Support. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
subdomain | string | The domain of your organization. This can be a provided subdomain of an official okta domain (okta.com, oktapreview.com, etc) or one of your configured custom domains. (default: my-org) |
INSERT examples
- grant_okta_support
- Manifest
Grants Okta Support temporary access to your org as an administrator for eight hours
> Note: This resource is deprecated. Use the Update an Okta Support case resource to grant Okta Support access for a support case.
> For the corresponding Okta Admin Console feature, see Give access to Okta Support.
INSERT INTO okta.org.okta_support (
subdomain
)
SELECT
'{{ subdomain }}'
;
# Description fields are for documentation purposes
- name: okta_support
props:
- name: subdomain
value: string
description: Required parameter for the okta_support resource.
DELETE examples
- revoke_okta_support
Revokes Okta Support access to your org
> Note: This resource is deprecated. Use the Update an Okta Support case resource to revoke Okta Support access for a support case.
> For the corresponding Okta Admin Console feature, see Give access to Okta Support.
DELETE FROM okta.org.okta_support
WHERE subdomain = '{{ subdomain }}' --required
;
Lifecycle Methods
- extend_okta_support
Extends the length of time that Okta Support can access your org by 24 hours. This means that 24 hours are added to the remaining access time.
> Note: This resource is deprecated. Use the Update an Okta Support case resource to extend Okta Support access for a support case.
> For the corresponding Okta Admin Console feature, see Give access to Okta Support.
EXEC okta.org.okta_support.extend_okta_support
@subdomain='{{ subdomain }}' --required
;