Documentation ¶
Index ¶
- Constants
- Variables
- func Bool(b bool) *bool
- func Float32(f float32) *float32
- func Float64(f float64) *float64
- func Int(i int) *int
- func Int64(i int64) *int64
- func String(s string) *string
- type ClientCredentials
- type ConductoroneAPI
- type DeviceCodeResponse
- type HTTPClient
- type SDKOption
- func WithClient(client HTTPClient) SDKOption
- func WithServerIndex(serverIndex int) SDKOption
- func WithServerURL(serverURL string) SDKOption
- func WithTemplatedServerURL(serverURL string, params map[string]string) SDKOption
- func WithTenant(input string) (SDKOption, error)
- func WithTenantDomain(tenantDomain string) SDKOption
Constants ¶
const ClientIdGolangSDK = "2RCzHlak5q7CY14SdBc8HoZEJRf"
Variables ¶
var ServerList = []string{
"https://{tenantDomain}.conductor.one",
}
ServerList contains the list of servers available to the SDK
Functions ¶
Types ¶
type ClientCredentials ¶ added in v1.1.1
type ConductoroneAPI ¶
type ConductoroneAPI struct { AppEntitlementUserBinding *appEntitlementUserBinding AppEntitlements *appEntitlements AppOwners *appOwners AppReport *appReport AppReportAction *appReportAction AppResource *appResource AppResourceOwners *appResourceOwners AppResourceSearch *appResourceSearch AppResourceType *appResourceType AppSearch *appSearch AppUsageControls *appUsageControls Apps *apps Auth *auth Directory *directory PersonalClient *personalClient Policies *policies RequestCatalogSearch *requestCatalogSearch Roles *roles Task *task TaskActions *taskActions TaskSearch *taskSearch User *user UserSearch *userSearch // contains filtered or unexported fields }
ConductoroneAPI - ConductorOne API: The ConductorOne API is a HTTP API for managing ConductorOne resources.
func New ¶
func New(opts ...SDKOption) *ConductoroneAPI
New creates a new instance of the SDK with the provided options
type DeviceCodeResponse ¶ added in v1.1.1
type HTTPClient ¶
HTTPClient provides an interface for suplying the SDK with a custom HTTP client
type SDKOption ¶
type SDKOption func(*ConductoroneAPI)
func WithClient ¶
func WithClient(client HTTPClient) SDKOption
WithClient allows the overriding of the default HTTP client used by the SDK
func WithServerIndex ¶
WithServerIndex allows the overriding of the default server by index
func WithServerURL ¶
WithServerURL allows the overriding of the default server URL
func WithTemplatedServerURL ¶
WithTemplatedServerURL allows the overriding of the default server URL with a templated URL populated with the provided parameters
func WithTenant ¶ added in v1.1.1
func WithTenantDomain ¶
WithTenantDomain allows setting the $name variable for url substitution
Source Files ¶
- appentitlements.go
- appentitlementuserbinding.go
- appowners.go
- appreport.go
- appreportaction.go
- appresource.go
- appresourceowners.go
- appresourcesearch.go
- appresourcetype.go
- apps.go
- appsearch.go
- appusagecontrols.go
- auth.go
- conductoroneapi.go
- directory.go
- extra_sdk_options.go
- login.go
- personalclient.go
- policies.go
- requestcatalogsearch.go
- roles.go
- task.go
- taskactions.go
- tasksearch.go
- user.go
- usersearch.go