mirror of https://github.com/databricks/cli.git
24 lines
1.5 KiB
Go
24 lines
1.5 KiB
Go
|
// Generated from Databricks Terraform provider schema. DO NOT EDIT.
|
||
|
|
||
|
package schema
|
||
|
|
||
|
type ResourceCustomAppIntegrationTokenAccessPolicy struct {
|
||
|
AccessTokenTtlInMinutes int `json:"access_token_ttl_in_minutes,omitempty"`
|
||
|
RefreshTokenTtlInMinutes int `json:"refresh_token_ttl_in_minutes,omitempty"`
|
||
|
}
|
||
|
|
||
|
type ResourceCustomAppIntegration struct {
|
||
|
ClientId string `json:"client_id,omitempty"`
|
||
|
ClientSecret string `json:"client_secret,omitempty"`
|
||
|
Confidential bool `json:"confidential,omitempty"`
|
||
|
CreateTime string `json:"create_time,omitempty"`
|
||
|
CreatedBy int `json:"created_by,omitempty"`
|
||
|
CreatorUsername string `json:"creator_username,omitempty"`
|
||
|
Id string `json:"id,omitempty"`
|
||
|
IntegrationId string `json:"integration_id,omitempty"`
|
||
|
Name string `json:"name,omitempty"`
|
||
|
RedirectUrls []string `json:"redirect_urls,omitempty"`
|
||
|
Scopes []string `json:"scopes,omitempty"`
|
||
|
TokenAccessPolicy *ResourceCustomAppIntegrationTokenAccessPolicy `json:"token_access_policy,omitempty"`
|
||
|
}
|