operations

package
v0.4.18 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 8, 2024 License: Apache-2.0 Imports: 6 Imported by: 0

Documentation

Index

Constants

View Source
const (
	SupportedOptionServerURL            = "serverURL"
	SupportedOptionRetries              = "retries"
	SupportedOptionTimeout              = "timeout"
	SupportedOptionAcceptHeaderOverride = "acceptHeaderOverride"
	SupportedOptionURLOverride          = "urlOverride"
)

Variables

View Source
var ErrUnsupportedOption = errors.New("unsupported option")

Functions

This section is empty.

Types

type C1APIAppV1AppEntitlementOwnersAddRequest

type C1APIAppV1AppEntitlementOwnersAddRequest struct {
	AddAppEntitlementOwnerRequest *shared.AddAppEntitlementOwnerRequest `request:"mediaType=application/json"`
	AppID                         string                                `pathParam:"style=simple,explode=false,name=app_id"`
	EntitlementID                 string                                `pathParam:"style=simple,explode=false,name=entitlement_id"`
}

type C1APIAppV1AppEntitlementOwnersAddResponse

type C1APIAppV1AppEntitlementOwnersAddResponse struct {
	// Successful response
	AddAppEntitlementOwnerResponse *shared.AddAppEntitlementOwnerResponse
	ContentType                    string
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIAppV1AppEntitlementOwnersListRequest

type C1APIAppV1AppEntitlementOwnersListRequest struct {
	AppID         string   `pathParam:"style=simple,explode=false,name=app_id"`
	EntitlementID string   `pathParam:"style=simple,explode=false,name=entitlement_id"`
	PageSize      *float64 `queryParam:"style=form,explode=true,name=page_size"`
	PageToken     *string  `queryParam:"style=form,explode=true,name=page_token"`
}

type C1APIAppV1AppEntitlementOwnersListResponse

type C1APIAppV1AppEntitlementOwnersListResponse struct {
	ContentType string
	// Successful response
	ListAppEntitlementOwnersResponse *shared.ListAppEntitlementOwnersResponse
	StatusCode                       int
	RawResponse                      *http.Response
}

type C1APIAppV1AppEntitlementOwnersRemoveRequest

type C1APIAppV1AppEntitlementOwnersRemoveRequest struct {
	RemoveAppEntitlementOwnerRequest *shared.RemoveAppEntitlementOwnerRequest `request:"mediaType=application/json"`
	AppID                            string                                   `pathParam:"style=simple,explode=false,name=app_id"`
	EntitlementID                    string                                   `pathParam:"style=simple,explode=false,name=entitlement_id"`
	UserID                           string                                   `pathParam:"style=simple,explode=false,name=user_id"`
}

type C1APIAppV1AppEntitlementOwnersRemoveResponse

type C1APIAppV1AppEntitlementOwnersRemoveResponse struct {
	ContentType string
	// Successful response
	RemoveAppEntitlementOwnerResponse *shared.RemoveAppEntitlementOwnerResponse
	StatusCode                        int
	RawResponse                       *http.Response
}

type C1APIAppV1AppEntitlementOwnersSetRequest

type C1APIAppV1AppEntitlementOwnersSetRequest struct {
	SetAppEntitlementOwnersRequest *shared.SetAppEntitlementOwnersRequest `request:"mediaType=application/json"`
	AppID                          string                                 `pathParam:"style=simple,explode=false,name=app_id"`
	EntitlementID                  string                                 `pathParam:"style=simple,explode=false,name=entitlement_id"`
}

type C1APIAppV1AppEntitlementOwnersSetResponse

type C1APIAppV1AppEntitlementOwnersSetResponse struct {
	ContentType string
	// The empty response message for setting the app entitlement owners.
	SetAppEntitlementOwnersResponse *shared.SetAppEntitlementOwnersResponse
	StatusCode                      int
	RawResponse                     *http.Response
}

type C1APIAppV1AppEntitlementSearchServiceSearchResponse

type C1APIAppV1AppEntitlementSearchServiceSearchResponse struct {
	// Successful response
	AppEntitlementSearchServiceSearchResponse *shared.AppEntitlementSearchServiceSearchResponse
	ContentType                               string
	StatusCode                                int
	RawResponse                               *http.Response
}

type C1APIAppV1AppEntitlementUserBindingServiceListAppUsersForIdentityWithGrantRequest

type C1APIAppV1AppEntitlementUserBindingServiceListAppUsersForIdentityWithGrantRequest struct {
	AppEntitlementID string `pathParam:"style=simple,explode=false,name=app_entitlement_id"`
	AppID            string `pathParam:"style=simple,explode=false,name=app_id"`
	IdentityUserID   string `pathParam:"style=simple,explode=false,name=identity_user_id"`
}

type C1APIAppV1AppEntitlementUserBindingServiceListAppUsersForIdentityWithGrantResponse

type C1APIAppV1AppEntitlementUserBindingServiceListAppUsersForIdentityWithGrantResponse struct {
	ContentType string
	// Successful response
	ListAppUsersForIdentityWithGrantResponse *shared.ListAppUsersForIdentityWithGrantResponse
	StatusCode                               int
	RawResponse                              *http.Response
}

type C1APIAppV1AppEntitlementsCreateRequest added in v0.4.14

type C1APIAppV1AppEntitlementsCreateRequest struct {
	AppID                       string                              `pathParam:"style=simple,explode=false,name=app_id"`
	CreateAppEntitlementRequest *shared.CreateAppEntitlementRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppEntitlementsCreateRequest) GetAppID added in v0.4.14

func (*C1APIAppV1AppEntitlementsCreateRequest) GetCreateAppEntitlementRequest added in v0.4.14

func (o *C1APIAppV1AppEntitlementsCreateRequest) GetCreateAppEntitlementRequest() *shared.CreateAppEntitlementRequest

type C1APIAppV1AppEntitlementsCreateResponse added in v0.4.14

type C1APIAppV1AppEntitlementsCreateResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	CreateAppEntitlementResponse *shared.CreateAppEntitlementResponse
}

func (*C1APIAppV1AppEntitlementsCreateResponse) GetContentType added in v0.4.14

func (o *C1APIAppV1AppEntitlementsCreateResponse) GetContentType() string

func (*C1APIAppV1AppEntitlementsCreateResponse) GetCreateAppEntitlementResponse added in v0.4.14

func (o *C1APIAppV1AppEntitlementsCreateResponse) GetCreateAppEntitlementResponse() *shared.CreateAppEntitlementResponse

func (*C1APIAppV1AppEntitlementsCreateResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppEntitlementsCreateResponse) GetStatusCode added in v0.4.14

func (o *C1APIAppV1AppEntitlementsCreateResponse) GetStatusCode() int

type C1APIAppV1AppEntitlementsDeleteRequest added in v0.4.14

type C1APIAppV1AppEntitlementsDeleteRequest struct {
	AppID                       string                              `pathParam:"style=simple,explode=false,name=app_id"`
	ID                          string                              `pathParam:"style=simple,explode=false,name=id"`
	DeleteAppEntitlementRequest *shared.DeleteAppEntitlementRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppEntitlementsDeleteRequest) GetAppID added in v0.4.14

func (*C1APIAppV1AppEntitlementsDeleteRequest) GetDeleteAppEntitlementRequest added in v0.4.14

func (o *C1APIAppV1AppEntitlementsDeleteRequest) GetDeleteAppEntitlementRequest() *shared.DeleteAppEntitlementRequest

func (*C1APIAppV1AppEntitlementsDeleteRequest) GetID added in v0.4.14

type C1APIAppV1AppEntitlementsDeleteResponse added in v0.4.14

type C1APIAppV1AppEntitlementsDeleteResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	DeleteAppEntitlementResponse *shared.DeleteAppEntitlementResponse
}

func (*C1APIAppV1AppEntitlementsDeleteResponse) GetContentType added in v0.4.14

func (o *C1APIAppV1AppEntitlementsDeleteResponse) GetContentType() string

func (*C1APIAppV1AppEntitlementsDeleteResponse) GetDeleteAppEntitlementResponse added in v0.4.14

func (o *C1APIAppV1AppEntitlementsDeleteResponse) GetDeleteAppEntitlementResponse() *shared.DeleteAppEntitlementResponse

func (*C1APIAppV1AppEntitlementsDeleteResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppEntitlementsDeleteResponse) GetStatusCode added in v0.4.14

func (o *C1APIAppV1AppEntitlementsDeleteResponse) GetStatusCode() int

type C1APIAppV1AppEntitlementsGetRequest

type C1APIAppV1AppEntitlementsGetRequest struct {
	AppID string `pathParam:"style=simple,explode=false,name=app_id"`
	ID    string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1AppEntitlementsGetResponse

type C1APIAppV1AppEntitlementsGetResponse struct {
	ContentType string
	// Successful response
	GetAppEntitlementResponse *shared.GetAppEntitlementResponse
	StatusCode                int
	RawResponse               *http.Response
}

type C1APIAppV1AppEntitlementsListForAppResourceRequest

type C1APIAppV1AppEntitlementsListForAppResourceRequest struct {
	AppID             string `pathParam:"style=simple,explode=false,name=app_id"`
	AppResourceID     string `pathParam:"style=simple,explode=false,name=app_resource_id"`
	AppResourceTypeID string `pathParam:"style=simple,explode=false,name=app_resource_type_id"`
}

type C1APIAppV1AppEntitlementsListForAppResourceResponse

type C1APIAppV1AppEntitlementsListForAppResourceResponse struct {
	ContentType string
	// Successful response
	ListAppEntitlementsResponse *shared.ListAppEntitlementsResponse
	StatusCode                  int
	RawResponse                 *http.Response
}

type C1APIAppV1AppEntitlementsListForAppUserRequest

type C1APIAppV1AppEntitlementsListForAppUserRequest struct {
	AppID     string `pathParam:"style=simple,explode=false,name=app_id"`
	AppUserID string `pathParam:"style=simple,explode=false,name=app_user_id"`
}

type C1APIAppV1AppEntitlementsListForAppUserResponse

type C1APIAppV1AppEntitlementsListForAppUserResponse struct {
	ContentType string
	// Successful response
	ListAppEntitlementsResponse *shared.ListAppEntitlementsResponse
	StatusCode                  int
	RawResponse                 *http.Response
}

type C1APIAppV1AppEntitlementsListRequest

type C1APIAppV1AppEntitlementsListRequest struct {
	AppID string `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1AppEntitlementsListResponse

type C1APIAppV1AppEntitlementsListResponse struct {
	ContentType string
	// Successful response
	ListAppEntitlementsResponse *shared.ListAppEntitlementsResponse
	StatusCode                  int
	RawResponse                 *http.Response
}

type C1APIAppV1AppEntitlementsListUsersRequest

type C1APIAppV1AppEntitlementsListUsersRequest struct {
	AppEntitlementID string `pathParam:"style=simple,explode=false,name=app_entitlement_id"`
	AppID            string `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1AppEntitlementsListUsersResponse

type C1APIAppV1AppEntitlementsListUsersResponse struct {
	ContentType string
	// Successful response
	ListAppEntitlementUsersResponse *shared.ListAppEntitlementUsersResponse
	StatusCode                      int
	RawResponse                     *http.Response
}

type C1APIAppV1AppEntitlementsProxyCreateRequest added in v0.4.14

type C1APIAppV1AppEntitlementsProxyCreateRequest struct {
	SrcAppID                         string                                   `pathParam:"style=simple,explode=false,name=src_app_id"`
	SrcAppEntitlementID              string                                   `pathParam:"style=simple,explode=false,name=src_app_entitlement_id"`
	DstAppID                         string                                   `pathParam:"style=simple,explode=false,name=dst_app_id"`
	DstAppEntitlementID              string                                   `pathParam:"style=simple,explode=false,name=dst_app_entitlement_id"`
	CreateAppEntitlementProxyRequest *shared.CreateAppEntitlementProxyRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppEntitlementsProxyCreateRequest) GetCreateAppEntitlementProxyRequest added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyCreateRequest) GetDstAppEntitlementID added in v0.4.14

func (o *C1APIAppV1AppEntitlementsProxyCreateRequest) GetDstAppEntitlementID() string

func (*C1APIAppV1AppEntitlementsProxyCreateRequest) GetDstAppID added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyCreateRequest) GetSrcAppEntitlementID added in v0.4.14

func (o *C1APIAppV1AppEntitlementsProxyCreateRequest) GetSrcAppEntitlementID() string

func (*C1APIAppV1AppEntitlementsProxyCreateRequest) GetSrcAppID added in v0.4.14

type C1APIAppV1AppEntitlementsProxyCreateResponse added in v0.4.14

type C1APIAppV1AppEntitlementsProxyCreateResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	CreateAppEntitlementProxyResponse *shared.CreateAppEntitlementProxyResponse
}

func (*C1APIAppV1AppEntitlementsProxyCreateResponse) GetContentType added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyCreateResponse) GetCreateAppEntitlementProxyResponse added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyCreateResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyCreateResponse) GetStatusCode added in v0.4.14

type C1APIAppV1AppEntitlementsProxyDeleteRequest added in v0.4.14

type C1APIAppV1AppEntitlementsProxyDeleteRequest struct {
	SrcAppID                         string                                   `pathParam:"style=simple,explode=false,name=src_app_id"`
	SrcAppEntitlementID              string                                   `pathParam:"style=simple,explode=false,name=src_app_entitlement_id"`
	DstAppID                         string                                   `pathParam:"style=simple,explode=false,name=dst_app_id"`
	DstAppEntitlementID              string                                   `pathParam:"style=simple,explode=false,name=dst_app_entitlement_id"`
	DeleteAppEntitlementProxyRequest *shared.DeleteAppEntitlementProxyRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppEntitlementsProxyDeleteRequest) GetDeleteAppEntitlementProxyRequest added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyDeleteRequest) GetDstAppEntitlementID added in v0.4.14

func (o *C1APIAppV1AppEntitlementsProxyDeleteRequest) GetDstAppEntitlementID() string

func (*C1APIAppV1AppEntitlementsProxyDeleteRequest) GetDstAppID added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyDeleteRequest) GetSrcAppEntitlementID added in v0.4.14

func (o *C1APIAppV1AppEntitlementsProxyDeleteRequest) GetSrcAppEntitlementID() string

func (*C1APIAppV1AppEntitlementsProxyDeleteRequest) GetSrcAppID added in v0.4.14

type C1APIAppV1AppEntitlementsProxyDeleteResponse added in v0.4.14

type C1APIAppV1AppEntitlementsProxyDeleteResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	DeleteAppEntitlementProxyResponse *shared.DeleteAppEntitlementProxyResponse
}

func (*C1APIAppV1AppEntitlementsProxyDeleteResponse) GetContentType added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyDeleteResponse) GetDeleteAppEntitlementProxyResponse added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyDeleteResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyDeleteResponse) GetStatusCode added in v0.4.14

type C1APIAppV1AppEntitlementsProxyGetRequest added in v0.4.14

type C1APIAppV1AppEntitlementsProxyGetRequest struct {
	SrcAppID            string `pathParam:"style=simple,explode=false,name=src_app_id"`
	SrcAppEntitlementID string `pathParam:"style=simple,explode=false,name=src_app_entitlement_id"`
	DstAppID            string `pathParam:"style=simple,explode=false,name=dst_app_id"`
	DstAppEntitlementID string `pathParam:"style=simple,explode=false,name=dst_app_entitlement_id"`
}

func (*C1APIAppV1AppEntitlementsProxyGetRequest) GetDstAppEntitlementID added in v0.4.14

func (o *C1APIAppV1AppEntitlementsProxyGetRequest) GetDstAppEntitlementID() string

func (*C1APIAppV1AppEntitlementsProxyGetRequest) GetDstAppID added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyGetRequest) GetSrcAppEntitlementID added in v0.4.14

func (o *C1APIAppV1AppEntitlementsProxyGetRequest) GetSrcAppEntitlementID() string

func (*C1APIAppV1AppEntitlementsProxyGetRequest) GetSrcAppID added in v0.4.14

type C1APIAppV1AppEntitlementsProxyGetResponse added in v0.4.14

type C1APIAppV1AppEntitlementsProxyGetResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	GetAppEntitlementProxyResponse *shared.GetAppEntitlementProxyResponse
}

func (*C1APIAppV1AppEntitlementsProxyGetResponse) GetContentType added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyGetResponse) GetGetAppEntitlementProxyResponse added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyGetResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppEntitlementsProxyGetResponse) GetStatusCode added in v0.4.14

type C1APIAppV1AppEntitlementsUpdateRequest

type C1APIAppV1AppEntitlementsUpdateRequest struct {
	UpdateAppEntitlementRequest *shared.UpdateAppEntitlementRequest `request:"mediaType=application/json"`
	AppID                       string                              `pathParam:"style=simple,explode=false,name=app_id"`
	ID                          string                              `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1AppEntitlementsUpdateResponse

type C1APIAppV1AppEntitlementsUpdateResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	UpdateAppEntitlementResponse *shared.UpdateAppEntitlementResponse
}

type C1APIAppV1AppOwnersAddRequest

type C1APIAppV1AppOwnersAddRequest struct {
	AddAppOwnerRequest *shared.AddAppOwnerRequest `request:"mediaType=application/json"`
	AppID              string                     `pathParam:"style=simple,explode=false,name=app_id"`
	UserID             string                     `pathParam:"style=simple,explode=false,name=user_id"`
}

type C1APIAppV1AppOwnersAddResponse

type C1APIAppV1AppOwnersAddResponse struct {
	// Successful response
	AddAppOwnerResponse *shared.AddAppOwnerResponse
	ContentType         string
	StatusCode          int
	RawResponse         *http.Response
}

type C1APIAppV1AppOwnersListRequest

type C1APIAppV1AppOwnersListRequest struct {
	AppID     string   `pathParam:"style=simple,explode=false,name=app_id"`
	PageSize  *float64 `queryParam:"style=form,explode=true,name=page_size"`
	PageToken *string  `queryParam:"style=form,explode=true,name=page_token"`
}

type C1APIAppV1AppOwnersListResponse

type C1APIAppV1AppOwnersListResponse struct {
	ContentType string
	// Successful response
	ListAppOwnersResponse *shared.ListAppOwnersResponse
	StatusCode            int
	RawResponse           *http.Response
}

type C1APIAppV1AppOwnersRemoveRequest

type C1APIAppV1AppOwnersRemoveRequest struct {
	RemoveAppOwnerRequest *shared.RemoveAppOwnerRequest `request:"mediaType=application/json"`
	AppID                 string                        `pathParam:"style=simple,explode=false,name=app_id"`
	UserID                string                        `pathParam:"style=simple,explode=false,name=user_id"`
}

type C1APIAppV1AppOwnersRemoveResponse

type C1APIAppV1AppOwnersRemoveResponse struct {
	ContentType string
	// Successful response
	RemoveAppOwnerResponse *shared.RemoveAppOwnerResponse
	StatusCode             int
	RawResponse            *http.Response
}

type C1APIAppV1AppOwnersSetRequest

type C1APIAppV1AppOwnersSetRequest struct {
	SetAppOwnersRequest *shared.SetAppOwnersRequest `request:"mediaType=application/json"`
	AppID               string                      `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1AppOwnersSetResponse

type C1APIAppV1AppOwnersSetResponse struct {
	ContentType string
	// The empty response message for setting the app owners.
	SetAppOwnersResponse *shared.SetAppOwnersResponse
	StatusCode           int
	RawResponse          *http.Response
}

type C1APIAppV1AppReportActionServiceGenerateReportRequest

type C1APIAppV1AppReportActionServiceGenerateReportRequest struct {
	AppActionsServiceGenerateReportRequest *shared.AppActionsServiceGenerateReportRequest `request:"mediaType=application/json"`
	AppID                                  string                                         `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1AppReportActionServiceGenerateReportResponse

type C1APIAppV1AppReportActionServiceGenerateReportResponse struct {
	// Successful response
	AppActionsServiceGenerateReportResponse *shared.AppActionsServiceGenerateReportResponse
	ContentType                             string
	StatusCode                              int
	RawResponse                             *http.Response
}

type C1APIAppV1AppReportServiceListRequest

type C1APIAppV1AppReportServiceListRequest struct {
	AppID string `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1AppReportServiceListResponse

type C1APIAppV1AppReportServiceListResponse struct {
	// Successful response
	AppReportServiceListResponse *shared.AppReportServiceListResponse
	ContentType                  string
	StatusCode                   int
	RawResponse                  *http.Response
}

type C1APIAppV1AppResourceOwnersListRequest

type C1APIAppV1AppResourceOwnersListRequest struct {
	AppID          string `pathParam:"style=simple,explode=false,name=app_id"`
	ResourceID     string `pathParam:"style=simple,explode=false,name=resource_id"`
	ResourceTypeID string `pathParam:"style=simple,explode=false,name=resource_type_id"`
}

type C1APIAppV1AppResourceOwnersListResponse

type C1APIAppV1AppResourceOwnersListResponse struct {
	ContentType string
	// Successful response
	ListAppResourceOwnersResponse *shared.ListAppResourceOwnersResponse
	StatusCode                    int
	RawResponse                   *http.Response
}

type C1APIAppV1AppResourceSearchSearchAppResourceTypesResponse

type C1APIAppV1AppResourceSearchSearchAppResourceTypesResponse struct {
	ContentType string
	// Successful response
	SearchAppResourceTypesResponse *shared.SearchAppResourceTypesResponse
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceRequest added in v0.4.14

type C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceRequest struct {
	AppID                                   string                                          `pathParam:"style=simple,explode=false,name=app_id"`
	AppResourceTypeID                       string                                          `pathParam:"style=simple,explode=false,name=app_resource_type_id"`
	CreateManuallyManagedAppResourceRequest *shared.CreateManuallyManagedAppResourceRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceRequest) GetAppID added in v0.4.14

func (*C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceRequest) GetAppResourceTypeID added in v0.4.14

func (*C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceRequest) GetCreateManuallyManagedAppResourceRequest added in v0.4.14

type C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceResponse added in v0.4.14

type C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	CreateManuallyManagedAppResourceResponse *shared.CreateManuallyManagedAppResourceResponse
}

func (*C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceResponse) GetContentType added in v0.4.14

func (*C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceResponse) GetCreateManuallyManagedAppResourceResponse added in v0.4.14

func (*C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppResourceServiceCreateManuallyManagedAppResourceResponse) GetStatusCode added in v0.4.14

type C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceRequest added in v0.4.14

type C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceRequest struct {
	AppID                                   string                                          `pathParam:"style=simple,explode=false,name=app_id"`
	AppResourceTypeID                       string                                          `pathParam:"style=simple,explode=false,name=app_resource_type_id"`
	ID                                      string                                          `pathParam:"style=simple,explode=false,name=id"`
	DeleteManuallyManagedAppResourceRequest *shared.DeleteManuallyManagedAppResourceRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceRequest) GetAppID added in v0.4.14

func (*C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceRequest) GetAppResourceTypeID added in v0.4.14

func (*C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceRequest) GetDeleteManuallyManagedAppResourceRequest added in v0.4.14

func (*C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceRequest) GetID added in v0.4.14

type C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceResponse added in v0.4.14

type C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	DeleteManuallyManagedAppResourceResponse *shared.DeleteManuallyManagedAppResourceResponse
}

func (*C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceResponse) GetContentType added in v0.4.14

func (*C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceResponse) GetDeleteManuallyManagedAppResourceResponse added in v0.4.14

func (*C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppResourceServiceDeleteManuallyManagedAppResourceResponse) GetStatusCode added in v0.4.14

type C1APIAppV1AppResourceServiceGetRequest

type C1APIAppV1AppResourceServiceGetRequest struct {
	AppID             string `pathParam:"style=simple,explode=false,name=app_id"`
	AppResourceTypeID string `pathParam:"style=simple,explode=false,name=app_resource_type_id"`
	ID                string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1AppResourceServiceGetResponse

type C1APIAppV1AppResourceServiceGetResponse struct {
	// Successful response
	AppResourceServiceGetResponse *shared.AppResourceServiceGetResponse
	ContentType                   string
	StatusCode                    int
	RawResponse                   *http.Response
}

type C1APIAppV1AppResourceServiceListRequest

type C1APIAppV1AppResourceServiceListRequest struct {
	AppID             string `pathParam:"style=simple,explode=false,name=app_id"`
	AppResourceTypeID string `pathParam:"style=simple,explode=false,name=app_resource_type_id"`
}

type C1APIAppV1AppResourceServiceListResponse

type C1APIAppV1AppResourceServiceListResponse struct {
	// Successful response
	AppResourceServiceListResponse *shared.AppResourceServiceListResponse
	ContentType                    string
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIAppV1AppResourceServiceUpdateRequest added in v0.4.14

type C1APIAppV1AppResourceServiceUpdateRequest struct {
	AppID                           string                                  `pathParam:"style=simple,explode=false,name=app_id"`
	AppResourceTypeID               string                                  `pathParam:"style=simple,explode=false,name=app_resource_type_id"`
	ID                              string                                  `pathParam:"style=simple,explode=false,name=id"`
	AppResourceServiceUpdateRequest *shared.AppResourceServiceUpdateRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppResourceServiceUpdateRequest) GetAppID added in v0.4.14

func (*C1APIAppV1AppResourceServiceUpdateRequest) GetAppResourceServiceUpdateRequest added in v0.4.14

func (o *C1APIAppV1AppResourceServiceUpdateRequest) GetAppResourceServiceUpdateRequest() *shared.AppResourceServiceUpdateRequest

func (*C1APIAppV1AppResourceServiceUpdateRequest) GetAppResourceTypeID added in v0.4.14

func (o *C1APIAppV1AppResourceServiceUpdateRequest) GetAppResourceTypeID() string

func (*C1APIAppV1AppResourceServiceUpdateRequest) GetID added in v0.4.14

type C1APIAppV1AppResourceServiceUpdateResponse added in v0.4.14

type C1APIAppV1AppResourceServiceUpdateResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	AppResourceServiceUpdateResponse *shared.AppResourceServiceUpdateResponse
}

func (*C1APIAppV1AppResourceServiceUpdateResponse) GetAppResourceServiceUpdateResponse added in v0.4.14

func (*C1APIAppV1AppResourceServiceUpdateResponse) GetContentType added in v0.4.14

func (*C1APIAppV1AppResourceServiceUpdateResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppResourceServiceUpdateResponse) GetStatusCode added in v0.4.14

type C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeRequest added in v0.4.14

type C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeRequest struct {
	AppID                                    string                                           `pathParam:"style=simple,explode=false,name=app_id"`
	CreateManuallyManagedResourceTypeRequest *shared.CreateManuallyManagedResourceTypeRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeRequest) GetAppID added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeRequest) GetCreateManuallyManagedResourceTypeRequest added in v0.4.14

type C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeResponse added in v0.4.14

type C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	CreateManuallyManagedResourceTypeResponse *shared.CreateManuallyManagedResourceTypeResponse
}

func (*C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeResponse) GetContentType added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeResponse) GetCreateManuallyManagedResourceTypeResponse added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceCreateManuallyManagedResourceTypeResponse) GetStatusCode added in v0.4.14

type C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeRequest added in v0.4.14

type C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeRequest struct {
	AppID                                    string                                           `pathParam:"style=simple,explode=false,name=app_id"`
	ID                                       string                                           `pathParam:"style=simple,explode=false,name=id"`
	DeleteManuallyManagedResourceTypeRequest *shared.DeleteManuallyManagedResourceTypeRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeRequest) GetAppID added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeRequest) GetDeleteManuallyManagedResourceTypeRequest added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeRequest) GetID added in v0.4.14

type C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeResponse added in v0.4.14

type C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	DeleteManuallyManagedResourceTypeResponse *shared.DeleteManuallyManagedResourceTypeResponse
}

func (*C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeResponse) GetContentType added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeResponse) GetDeleteManuallyManagedResourceTypeResponse added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceDeleteManuallyManagedResourceTypeResponse) GetStatusCode added in v0.4.14

type C1APIAppV1AppResourceTypeServiceGetRequest

type C1APIAppV1AppResourceTypeServiceGetRequest struct {
	AppID string `pathParam:"style=simple,explode=false,name=app_id"`
	ID    string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1AppResourceTypeServiceGetResponse

type C1APIAppV1AppResourceTypeServiceGetResponse struct {
	// Successful response
	AppResourceTypeServiceGetResponse *shared.AppResourceTypeServiceGetResponse
	ContentType                       string
	StatusCode                        int
	RawResponse                       *http.Response
}

type C1APIAppV1AppResourceTypeServiceListRequest

type C1APIAppV1AppResourceTypeServiceListRequest struct {
	AppID string `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1AppResourceTypeServiceListResponse

type C1APIAppV1AppResourceTypeServiceListResponse struct {
	// Successful response
	AppResourceTypeServiceListResponse *shared.AppResourceTypeServiceListResponse
	ContentType                        string
	StatusCode                         int
	RawResponse                        *http.Response
}

type C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeRequest added in v0.4.14

type C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeRequest struct {
	AppID                                    string                                           `pathParam:"style=simple,explode=false,name=app_id"`
	ID                                       string                                           `pathParam:"style=simple,explode=false,name=id"`
	UpdateManuallyManagedResourceTypeRequest *shared.UpdateManuallyManagedResourceTypeRequest `request:"mediaType=application/json"`
}

func (*C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeRequest) GetAppID added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeRequest) GetID added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeRequest) GetUpdateManuallyManagedResourceTypeRequest added in v0.4.14

type C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeResponse added in v0.4.14

type C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	UpdateManuallyManagedResourceTypeResponse *shared.UpdateManuallyManagedResourceTypeResponse
}

func (*C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeResponse) GetContentType added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeResponse) GetRawResponse added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeResponse) GetStatusCode added in v0.4.14

func (*C1APIAppV1AppResourceTypeServiceUpdateManuallyManagedResourceTypeResponse) GetUpdateManuallyManagedResourceTypeResponse added in v0.4.14

type C1APIAppV1AppSearchSearchResponse

type C1APIAppV1AppSearchSearchResponse struct {
	ContentType string
	// Successful response
	SearchAppsResponse *shared.SearchAppsResponse
	StatusCode         int
	RawResponse        *http.Response
}

type C1APIAppV1AppUsageControlsServiceGetRequest

type C1APIAppV1AppUsageControlsServiceGetRequest struct {
	AppID string `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1AppUsageControlsServiceGetResponse

type C1APIAppV1AppUsageControlsServiceGetResponse struct {
	ContentType string
	// Successful response
	GetAppUsageControlsResponse *shared.GetAppUsageControlsResponse
	StatusCode                  int
	RawResponse                 *http.Response
}

type C1APIAppV1AppUsageControlsServiceUpdateRequest

type C1APIAppV1AppUsageControlsServiceUpdateRequest struct {
	UpdateAppUsageControlsRequest *shared.UpdateAppUsageControlsRequest `request:"mediaType=application/json"`
	AppID                         string                                `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1AppUsageControlsServiceUpdateResponse

type C1APIAppV1AppUsageControlsServiceUpdateResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	UpdateAppUsageControlsResponse *shared.UpdateAppUsageControlsResponse
}

type C1APIAppV1AppsCreateResponse

type C1APIAppV1AppsCreateResponse struct {
	ContentType string
	// Successful response
	CreateAppResponse *shared.CreateAppResponse
	StatusCode        int
	RawResponse       *http.Response
}

type C1APIAppV1AppsDeleteRequest

type C1APIAppV1AppsDeleteRequest struct {
	DeleteAppRequest *shared.DeleteAppRequest `request:"mediaType=application/json"`
	ID               string                   `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1AppsDeleteResponse

type C1APIAppV1AppsDeleteResponse struct {
	ContentType string
	// Successful response
	DeleteAppResponse *shared.DeleteAppResponse
	StatusCode        int
	RawResponse       *http.Response
}

type C1APIAppV1AppsGetRequest

type C1APIAppV1AppsGetRequest struct {
	ID string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1AppsGetResponse

type C1APIAppV1AppsGetResponse struct {
	ContentType string
	// Successful response
	GetAppResponse *shared.GetAppResponse
	StatusCode     int
	RawResponse    *http.Response
}

type C1APIAppV1AppsListResponse

type C1APIAppV1AppsListResponse struct {
	ContentType string
	// Successful response
	ListAppsResponse *shared.ListAppsResponse
	StatusCode       int
	RawResponse      *http.Response
}

type C1APIAppV1AppsUpdateRequest

type C1APIAppV1AppsUpdateRequest struct {
	UpdateAppRequest *shared.UpdateAppRequest `request:"mediaType=application/json"`
	ID               string                   `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1AppsUpdateResponse

type C1APIAppV1AppsUpdateResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	UpdateAppResponse *shared.UpdateAppResponse
}

type C1APIAppV1ConnectorServiceCreateDelegatedRequest

type C1APIAppV1ConnectorServiceCreateDelegatedRequest struct {
	ConnectorServiceCreateDelegatedRequest *shared.ConnectorServiceCreateDelegatedRequest `request:"mediaType=application/json"`
	AppID                                  string                                         `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1ConnectorServiceCreateDelegatedResponse

type C1APIAppV1ConnectorServiceCreateDelegatedResponse struct {
	//  The ConnectorServiceCreateResponse is the response returned from creating a connector.
	//
	ConnectorServiceCreateResponse *shared.ConnectorServiceCreateResponse
	ContentType                    string
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIAppV1ConnectorServiceCreateRequest

type C1APIAppV1ConnectorServiceCreateRequest struct {
	ConnectorServiceCreateRequest *shared.ConnectorServiceCreateRequest `request:"mediaType=application/json"`
	AppID                         string                                `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1ConnectorServiceCreateResponse

type C1APIAppV1ConnectorServiceCreateResponse struct {
	//  The ConnectorServiceCreateResponse is the response returned from creating a connector.
	//
	ConnectorServiceCreateResponse *shared.ConnectorServiceCreateResponse
	ContentType                    string
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIAppV1ConnectorServiceDeleteRequest

type C1APIAppV1ConnectorServiceDeleteRequest struct {
	ConnectorServiceDeleteRequest *shared.ConnectorServiceDeleteRequest `request:"mediaType=application/json"`
	AppID                         string                                `pathParam:"style=simple,explode=false,name=app_id"`
	ID                            string                                `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1ConnectorServiceDeleteResponse

type C1APIAppV1ConnectorServiceDeleteResponse struct {
	// Successful response
	ConnectorServiceDeleteResponse *shared.ConnectorServiceDeleteResponse
	ContentType                    string
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIAppV1ConnectorServiceGetCredentialsRequest

type C1APIAppV1ConnectorServiceGetCredentialsRequest struct {
	AppID       string `pathParam:"style=simple,explode=false,name=app_id"`
	ConnectorID string `pathParam:"style=simple,explode=false,name=connector_id"`
	ID          string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1ConnectorServiceGetCredentialsResponse

type C1APIAppV1ConnectorServiceGetCredentialsResponse struct {
	// Successful response
	ConnectorServiceGetCredentialsResponse *shared.ConnectorServiceGetCredentialsResponse
	ContentType                            string
	StatusCode                             int
	RawResponse                            *http.Response
}

type C1APIAppV1ConnectorServiceGetRequest

type C1APIAppV1ConnectorServiceGetRequest struct {
	AppID string `pathParam:"style=simple,explode=false,name=app_id"`
	ID    string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1ConnectorServiceGetResponse

type C1APIAppV1ConnectorServiceGetResponse struct {
	// Successful response
	ConnectorServiceGetResponse *shared.ConnectorServiceGetResponse
	ContentType                 string
	StatusCode                  int
	RawResponse                 *http.Response
}

type C1APIAppV1ConnectorServiceListRequest

type C1APIAppV1ConnectorServiceListRequest struct {
	AppID string `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIAppV1ConnectorServiceListResponse

type C1APIAppV1ConnectorServiceListResponse struct {
	// Successful response
	ConnectorServiceListResponse *shared.ConnectorServiceListResponse
	ContentType                  string
	StatusCode                   int
	RawResponse                  *http.Response
}

type C1APIAppV1ConnectorServiceRevokeCredentialRequest

type C1APIAppV1ConnectorServiceRevokeCredentialRequest struct {
	ConnectorServiceRevokeCredentialRequest *shared.ConnectorServiceRevokeCredentialRequest `request:"mediaType=application/json"`
	AppID                                   string                                          `pathParam:"style=simple,explode=false,name=app_id"`
	ConnectorID                             string                                          `pathParam:"style=simple,explode=false,name=connector_id"`
	ID                                      string                                          `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1ConnectorServiceRevokeCredentialResponse

type C1APIAppV1ConnectorServiceRevokeCredentialResponse struct {
	// Successful response
	ConnectorServiceRevokeCredentialResponse *shared.ConnectorServiceRevokeCredentialResponse
	ContentType                              string
	StatusCode                               int
	RawResponse                              *http.Response
}

type C1APIAppV1ConnectorServiceRotateCredentialRequest

type C1APIAppV1ConnectorServiceRotateCredentialRequest struct {
	ConnectorServiceRotateCredentialRequest *shared.ConnectorServiceRotateCredentialRequest `request:"mediaType=application/json"`
	AppID                                   string                                          `pathParam:"style=simple,explode=false,name=app_id"`
	ConnectorID                             string                                          `pathParam:"style=simple,explode=false,name=connector_id"`
}

type C1APIAppV1ConnectorServiceRotateCredentialResponse

type C1APIAppV1ConnectorServiceRotateCredentialResponse struct {
	// Successful response
	ConnectorServiceRotateCredentialResponse *shared.ConnectorServiceRotateCredentialResponse
	ContentType                              string
	StatusCode                               int
	RawResponse                              *http.Response
}

type C1APIAppV1ConnectorServiceUpdateDelegatedRequest

type C1APIAppV1ConnectorServiceUpdateDelegatedRequest struct {
	ConnectorServiceUpdateDelegatedRequest *shared.ConnectorServiceUpdateDelegatedRequest `request:"mediaType=application/json"`
	ConnectorAppID                         string                                         `pathParam:"style=simple,explode=false,name=connector_app_id"`
	ConnectorID                            string                                         `pathParam:"style=simple,explode=false,name=connector_id"`
}

type C1APIAppV1ConnectorServiceUpdateDelegatedResponse

type C1APIAppV1ConnectorServiceUpdateDelegatedResponse struct {
	// Successful response
	ConnectorServiceUpdateResponse *shared.ConnectorServiceUpdateResponse
	ContentType                    string
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIAppV1ConnectorServiceUpdateRequest

type C1APIAppV1ConnectorServiceUpdateRequest struct {
	ConnectorServiceUpdateRequest *shared.ConnectorServiceUpdateRequest `request:"mediaType=application/json"`
	AppID                         string                                `pathParam:"style=simple,explode=false,name=app_id"`
	ID                            string                                `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAppV1ConnectorServiceUpdateResponse

type C1APIAppV1ConnectorServiceUpdateResponse struct {
	// Successful response
	ConnectorServiceUpdateResponse *shared.ConnectorServiceUpdateResponse
	ContentType                    string
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIAttributeV1AttributeSearchSearchAttributeValuesResponse

type C1APIAttributeV1AttributeSearchSearchAttributeValuesResponse struct {
	ContentType string
	// Successful response
	SearchAttributeValuesResponse *shared.SearchAttributeValuesResponse
	StatusCode                    int
	RawResponse                   *http.Response
}

type C1APIAttributeV1AttributesCreateAttributeValueResponse

type C1APIAttributeV1AttributesCreateAttributeValueResponse struct {
	ContentType string
	// Successful response
	CreateAttributeValueResponse *shared.CreateAttributeValueResponse
	StatusCode                   int
	RawResponse                  *http.Response
}

type C1APIAttributeV1AttributesDeleteAttributeValueRequest

type C1APIAttributeV1AttributesDeleteAttributeValueRequest struct {
	DeleteAttributeValueRequest *shared.DeleteAttributeValueRequest `request:"mediaType=application/json"`
	ID                          string                              `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAttributeV1AttributesDeleteAttributeValueResponse

type C1APIAttributeV1AttributesDeleteAttributeValueResponse struct {
	ContentType string
	// Successful response
	DeleteAttributeValueResponse *shared.DeleteAttributeValueResponse
	StatusCode                   int
	RawResponse                  *http.Response
}

type C1APIAttributeV1AttributesGetAttributeValueRequest

type C1APIAttributeV1AttributesGetAttributeValueRequest struct {
	ID string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIAttributeV1AttributesGetAttributeValueResponse

type C1APIAttributeV1AttributesGetAttributeValueResponse struct {
	ContentType string
	// Successful response
	GetAttributeValueResponse *shared.GetAttributeValueResponse
	StatusCode                int
	RawResponse               *http.Response
}

type C1APIAttributeV1AttributesListAttributeTypesRequest

type C1APIAttributeV1AttributesListAttributeTypesRequest struct {
	PageSize  *float64 `queryParam:"style=form,explode=true,name=page_size"`
	PageToken *string  `queryParam:"style=form,explode=true,name=page_token"`
}

type C1APIAttributeV1AttributesListAttributeTypesResponse

type C1APIAttributeV1AttributesListAttributeTypesResponse struct {
	ContentType string
	// Successful response
	ListAttributeTypesResponse *shared.ListAttributeTypesResponse
	StatusCode                 int
	RawResponse                *http.Response
}

type C1APIAttributeV1AttributesListAttributeValuesRequest

type C1APIAttributeV1AttributesListAttributeValuesRequest struct {
	PageSize  *float64 `queryParam:"style=form,explode=true,name=page_size"`
	PageToken *string  `queryParam:"style=form,explode=true,name=page_token"`
}

type C1APIAttributeV1AttributesListAttributeValuesResponse

type C1APIAttributeV1AttributesListAttributeValuesResponse struct {
	ContentType string
	// Successful response
	ListAttributeValuesResponse *shared.ListAttributeValuesResponse
	StatusCode                  int
	RawResponse                 *http.Response
}

type C1APIAuthV1AuthIntrospectResponse

type C1APIAuthV1AuthIntrospectResponse struct {
	ContentType string
	// Successful response
	IntrospectResponse *shared.IntrospectResponse
	StatusCode         int
	RawResponse        *http.Response
}

type C1APIDirectoryV1DirectoryServiceCreateResponse

type C1APIDirectoryV1DirectoryServiceCreateResponse struct {
	ContentType string
	// Successful response
	DirectoryServiceCreateResponse *shared.DirectoryServiceCreateResponse
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIDirectoryV1DirectoryServiceDeleteRequest

type C1APIDirectoryV1DirectoryServiceDeleteRequest struct {
	DirectoryServiceDeleteRequest *shared.DirectoryServiceDeleteRequest `request:"mediaType=application/json"`
	AppID                         string                                `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIDirectoryV1DirectoryServiceDeleteResponse

type C1APIDirectoryV1DirectoryServiceDeleteResponse struct {
	ContentType string
	// Successful response
	DirectoryServiceDeleteResponse *shared.DirectoryServiceDeleteResponse
	StatusCode                     int
	RawResponse                    *http.Response
}

type C1APIDirectoryV1DirectoryServiceGetRequest

type C1APIDirectoryV1DirectoryServiceGetRequest struct {
	AppID string `pathParam:"style=simple,explode=false,name=app_id"`
}

type C1APIDirectoryV1DirectoryServiceGetResponse

type C1APIDirectoryV1DirectoryServiceGetResponse struct {
	ContentType string
	// Successful response
	DirectoryServiceGetResponse *shared.DirectoryServiceGetResponse
	StatusCode                  int
	RawResponse                 *http.Response
}

type C1APIDirectoryV1DirectoryServiceListResponse

type C1APIDirectoryV1DirectoryServiceListResponse struct {
	ContentType string
	// Successful response
	DirectoryServiceListResponse *shared.DirectoryServiceListResponse
	StatusCode                   int
	RawResponse                  *http.Response
}

type C1APIIamV1PersonalClientServiceCreateResponse

type C1APIIamV1PersonalClientServiceCreateResponse struct {
	ContentType string
	// Successful response
	PersonalClientServiceCreateResponse *shared.PersonalClientServiceCreateResponse
	StatusCode                          int
	RawResponse                         *http.Response
}

type C1APIIamV1RolesGetRequest

type C1APIIamV1RolesGetRequest struct {
	RoleID string `pathParam:"style=simple,explode=false,name=role_id"`
}

type C1APIIamV1RolesGetResponse

type C1APIIamV1RolesGetResponse struct {
	ContentType string
	// Successful response
	GetRolesResponse *shared.GetRolesResponse
	StatusCode       int
	RawResponse      *http.Response
}

type C1APIIamV1RolesListResponse

type C1APIIamV1RolesListResponse struct {
	ContentType string
	// Successful response
	ListRolesResponse *shared.ListRolesResponse
	StatusCode        int
	RawResponse       *http.Response
}

type C1APIIamV1RolesUpdateRequest

type C1APIIamV1RolesUpdateRequest struct {
	UpdateRoleRequest *shared.UpdateRoleRequest `request:"mediaType=application/json"`
	RoleID            string                    `pathParam:"style=simple,explode=false,name=role_id"`
}

type C1APIIamV1RolesUpdateResponse

type C1APIIamV1RolesUpdateResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	UpdateRolesResponse *shared.UpdateRolesResponse
}

type C1APIPolicyV1PoliciesCreateResponse

type C1APIPolicyV1PoliciesCreateResponse struct {
	ContentType string
	// Successful response
	CreatePolicyResponse *shared.CreatePolicyResponse
	StatusCode           int
	RawResponse          *http.Response
}

type C1APIPolicyV1PoliciesDeleteRequest

type C1APIPolicyV1PoliciesDeleteRequest struct {
	DeletePolicyRequest *shared.DeletePolicyRequest `request:"mediaType=application/json"`
	ID                  string                      `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIPolicyV1PoliciesDeleteResponse

type C1APIPolicyV1PoliciesDeleteResponse struct {
	ContentType string
	// Successful response
	DeletePolicyResponse *shared.DeletePolicyResponse
	StatusCode           int
	RawResponse          *http.Response
}

type C1APIPolicyV1PoliciesGetRequest

type C1APIPolicyV1PoliciesGetRequest struct {
	ID string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIPolicyV1PoliciesGetResponse

type C1APIPolicyV1PoliciesGetResponse struct {
	ContentType string
	// Successful response
	GetPolicyResponse *shared.GetPolicyResponse
	StatusCode        int
	RawResponse       *http.Response
}

type C1APIPolicyV1PoliciesListResponse

type C1APIPolicyV1PoliciesListResponse struct {
	ContentType string
	// Successful response
	ListPolicyResponse *shared.ListPolicyResponse
	StatusCode         int
	RawResponse        *http.Response
}

type C1APIPolicyV1PoliciesUpdateRequest

type C1APIPolicyV1PoliciesUpdateRequest struct {
	UpdatePolicyRequest *shared.UpdatePolicyRequest `request:"mediaType=application/json"`
	ID                  string                      `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIPolicyV1PoliciesUpdateResponse

type C1APIPolicyV1PoliciesUpdateResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	UpdatePolicyResponse *shared.UpdatePolicyResponse
}

type C1APIPolicyV1PolicySearchSearchResponse

type C1APIPolicyV1PolicySearchSearchResponse struct {
	ContentType string
	// Successful response
	ListPolicyResponse *shared.ListPolicyResponse
	StatusCode         int
	RawResponse        *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceAddAccessEntitlementsRequest

type C1APIRequestcatalogV1RequestCatalogManagementServiceAddAccessEntitlementsRequest struct {
	RequestCatalogManagementServiceAddAccessEntitlementsRequest *shared.RequestCatalogManagementServiceAddAccessEntitlementsRequest `request:"mediaType=application/json"`
	CatalogID                                                   string                                                              `pathParam:"style=simple,explode=false,name=catalog_id"`
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceAddAccessEntitlementsResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceAddAccessEntitlementsResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceAddAccessEntitlementsResponse *shared.RequestCatalogManagementServiceAddAccessEntitlementsResponse
	StatusCode                                                   int
	RawResponse                                                  *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceAddAppEntitlementsRequest

type C1APIRequestcatalogV1RequestCatalogManagementServiceAddAppEntitlementsRequest struct {
	RequestCatalogManagementServiceAddAppEntitlementsRequest *shared.RequestCatalogManagementServiceAddAppEntitlementsRequest `request:"mediaType=application/json"`
	CatalogID                                                string                                                           `pathParam:"style=simple,explode=false,name=catalog_id"`
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceAddAppEntitlementsResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceAddAppEntitlementsResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceAddAppEntitlementsResponse *shared.RequestCatalogManagementServiceAddAppEntitlementsResponse
	StatusCode                                                int
	RawResponse                                               *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceCreateResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceCreateResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceGetResponse *shared.RequestCatalogManagementServiceGetResponse
	StatusCode                                 int
	RawResponse                                *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceDeleteRequest

type C1APIRequestcatalogV1RequestCatalogManagementServiceDeleteRequest struct {
	RequestCatalogManagementServiceDeleteRequest *shared.RequestCatalogManagementServiceDeleteRequest `request:"mediaType=application/json"`
	ID                                           string                                               `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceDeleteResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceDeleteResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceDeleteResponse *shared.RequestCatalogManagementServiceDeleteResponse
	StatusCode                                    int
	RawResponse                                   *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceGetRequest

type C1APIRequestcatalogV1RequestCatalogManagementServiceGetRequest struct {
	ID string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceGetResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceGetResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceGetResponse *shared.RequestCatalogManagementServiceGetResponse
	StatusCode                                 int
	RawResponse                                *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceListEntitlementsForAccessRequest

type C1APIRequestcatalogV1RequestCatalogManagementServiceListEntitlementsForAccessRequest struct {
	CatalogID string `pathParam:"style=simple,explode=false,name=catalog_id"`
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceListEntitlementsForAccessResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceListEntitlementsForAccessResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceListEntitlementsForAccessResponse *shared.RequestCatalogManagementServiceListEntitlementsForAccessResponse
	StatusCode                                                       int
	RawResponse                                                      *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceListEntitlementsPerCatalogRequest

type C1APIRequestcatalogV1RequestCatalogManagementServiceListEntitlementsPerCatalogRequest struct {
	CatalogID string `pathParam:"style=simple,explode=false,name=catalog_id"`
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceListEntitlementsPerCatalogResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceListEntitlementsPerCatalogResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceListEntitlementsPerCatalogResponse *shared.RequestCatalogManagementServiceListEntitlementsPerCatalogResponse
	StatusCode                                                        int
	RawResponse                                                       *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceRemoveAccessEntitlementsRequest

type C1APIRequestcatalogV1RequestCatalogManagementServiceRemoveAccessEntitlementsRequest struct {
	RequestCatalogManagementServiceRemoveAccessEntitlementsRequest *shared.RequestCatalogManagementServiceRemoveAccessEntitlementsRequest `request:"mediaType=application/json"`
	CatalogID                                                      string                                                                 `pathParam:"style=simple,explode=false,name=catalog_id"`
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceRemoveAccessEntitlementsResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceRemoveAccessEntitlementsResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceRemoveAccessEntitlementsResponse *shared.RequestCatalogManagementServiceRemoveAccessEntitlementsResponse
	StatusCode                                                      int
	RawResponse                                                     *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceRemoveAppEntitlementsRequest

type C1APIRequestcatalogV1RequestCatalogManagementServiceRemoveAppEntitlementsRequest struct {
	RequestCatalogManagementServiceRemoveAppEntitlementsRequest *shared.RequestCatalogManagementServiceRemoveAppEntitlementsRequest `request:"mediaType=application/json"`
	CatalogID                                                   string                                                              `pathParam:"style=simple,explode=false,name=catalog_id"`
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceRemoveAppEntitlementsResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceRemoveAppEntitlementsResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceRemoveAppEntitlementsResponse *shared.RequestCatalogManagementServiceRemoveAppEntitlementsResponse
	StatusCode                                                   int
	RawResponse                                                  *http.Response
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceUpdateRequest

type C1APIRequestcatalogV1RequestCatalogManagementServiceUpdateRequest struct {
	RequestCatalogManagementServiceUpdateRequest *shared.RequestCatalogManagementServiceUpdateRequest `request:"mediaType=application/json"`
	ID                                           string                                               `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIRequestcatalogV1RequestCatalogManagementServiceUpdateResponse

type C1APIRequestcatalogV1RequestCatalogManagementServiceUpdateResponse struct {
	ContentType string
	// Successful response
	RequestCatalogManagementServiceGetResponse *shared.RequestCatalogManagementServiceGetResponse
	StatusCode                                 int
	RawResponse                                *http.Response
}

type C1APIRequestcatalogV1RequestCatalogSearchServiceSearchEntitlementsResponse

type C1APIRequestcatalogV1RequestCatalogSearchServiceSearchEntitlementsResponse struct {
	ContentType string
	// Successful response
	RequestCatalogSearchServiceSearchEntitlementsResponse *shared.RequestCatalogSearchServiceSearchEntitlementsResponse
	StatusCode                                            int
	RawResponse                                           *http.Response
}

type C1APISettingsV1AWSExternalIDSettingsGetResponse

type C1APISettingsV1AWSExternalIDSettingsGetResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// Successful response
	GetAWSExternalIDResponse *shared.GetAWSExternalIDResponse
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
}

func (*C1APISettingsV1AWSExternalIDSettingsGetResponse) GetContentType

func (*C1APISettingsV1AWSExternalIDSettingsGetResponse) GetGetAWSExternalIDResponse

func (*C1APISettingsV1AWSExternalIDSettingsGetResponse) GetRawResponse

func (*C1APISettingsV1AWSExternalIDSettingsGetResponse) GetStatusCode

type C1APITaskV1TaskActionsServiceApproveRequest

type C1APITaskV1TaskActionsServiceApproveRequest struct {
	TaskActionsServiceApproveRequest *shared.TaskActionsServiceApproveRequest `request:"mediaType=application/json"`
	TaskID                           string                                   `pathParam:"style=simple,explode=false,name=task_id"`
}

type C1APITaskV1TaskActionsServiceApproveResponse

type C1APITaskV1TaskActionsServiceApproveResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	TaskActionsServiceApproveResponse *shared.TaskActionsServiceApproveResponse
}

type C1APITaskV1TaskActionsServiceCommentRequest

type C1APITaskV1TaskActionsServiceCommentRequest struct {
	TaskActionsServiceCommentRequest *shared.TaskActionsServiceCommentRequest `request:"mediaType=application/json"`
	TaskID                           string                                   `pathParam:"style=simple,explode=false,name=task_id"`
}

type C1APITaskV1TaskActionsServiceCommentResponse

type C1APITaskV1TaskActionsServiceCommentResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	TaskActionsServiceCommentResponse *shared.TaskActionsServiceCommentResponse
}

type C1APITaskV1TaskActionsServiceDenyRequest

type C1APITaskV1TaskActionsServiceDenyRequest struct {
	TaskActionsServiceDenyRequest *shared.TaskActionsServiceDenyRequest `request:"mediaType=application/json"`
	TaskID                        string                                `pathParam:"style=simple,explode=false,name=task_id"`
}

type C1APITaskV1TaskActionsServiceDenyResponse

type C1APITaskV1TaskActionsServiceDenyResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	TaskActionsServiceDenyResponse *shared.TaskActionsServiceDenyResponse
}

type C1APITaskV1TaskSearchServiceSearchResponse

type C1APITaskV1TaskSearchServiceSearchResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	TaskSearchResponse *shared.TaskSearchResponse
}

type C1APITaskV1TaskServiceCreateGrantTaskResponse

type C1APITaskV1TaskServiceCreateGrantTaskResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	TaskServiceCreateGrantResponse *shared.TaskServiceCreateGrantResponse
}

type C1APITaskV1TaskServiceCreateRevokeTaskResponse

type C1APITaskV1TaskServiceCreateRevokeTaskResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	TaskServiceCreateRevokeResponse *shared.TaskServiceCreateRevokeResponse
}

type C1APITaskV1TaskServiceGetRequest

type C1APITaskV1TaskServiceGetRequest struct {
	ID string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APITaskV1TaskServiceGetResponse

type C1APITaskV1TaskServiceGetResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	TaskServiceGetResponse *shared.TaskServiceGetResponse
}

type C1APIUserV1UserSearchSearchResponse

type C1APIUserV1UserSearchSearchResponse struct {
	ContentType string
	// Successful response
	SearchUsersResponse *shared.SearchUsersResponse
	StatusCode          int
	RawResponse         *http.Response
}

type C1APIUserV1UserServiceGetRequest

type C1APIUserV1UserServiceGetRequest struct {
	ID string `pathParam:"style=simple,explode=false,name=id"`
}

type C1APIUserV1UserServiceGetResponse

type C1APIUserV1UserServiceGetResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	UserServiceGetResponse *shared.UserServiceGetResponse
}

type C1APIUserV1UserServiceListResponse

type C1APIUserV1UserServiceListResponse struct {
	ContentType string
	StatusCode  int
	RawResponse *http.Response
	// Successful response
	UserServiceListResponse *shared.UserServiceListResponse
}

type C1APIWebhooksV1WebhooksSearchSearchResponse

type C1APIWebhooksV1WebhooksSearchSearchResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	WebhooksSearchResponse *shared.WebhooksSearchResponse
}

func (*C1APIWebhooksV1WebhooksSearchSearchResponse) GetContentType

func (*C1APIWebhooksV1WebhooksSearchSearchResponse) GetRawResponse

func (*C1APIWebhooksV1WebhooksSearchSearchResponse) GetStatusCode

func (*C1APIWebhooksV1WebhooksSearchSearchResponse) GetWebhooksSearchResponse

type C1APIWebhooksV1WebhooksServiceCreateResponse

type C1APIWebhooksV1WebhooksServiceCreateResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	WebhooksServiceCreateResponse *shared.WebhooksServiceCreateResponse
}

func (*C1APIWebhooksV1WebhooksServiceCreateResponse) GetContentType

func (*C1APIWebhooksV1WebhooksServiceCreateResponse) GetRawResponse

func (*C1APIWebhooksV1WebhooksServiceCreateResponse) GetStatusCode

func (*C1APIWebhooksV1WebhooksServiceCreateResponse) GetWebhooksServiceCreateResponse

type C1APIWebhooksV1WebhooksServiceDeleteRequest

type C1APIWebhooksV1WebhooksServiceDeleteRequest struct {
	ID                           string                               `pathParam:"style=simple,explode=false,name=id"`
	WebhooksServiceDeleteRequest *shared.WebhooksServiceDeleteRequest `request:"mediaType=application/json"`
}

func (*C1APIWebhooksV1WebhooksServiceDeleteRequest) GetID

func (*C1APIWebhooksV1WebhooksServiceDeleteRequest) GetWebhooksServiceDeleteRequest

type C1APIWebhooksV1WebhooksServiceDeleteResponse

type C1APIWebhooksV1WebhooksServiceDeleteResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Empty response body. Status code indicates success.
	WebhooksServiceDeleteResponse *shared.WebhooksServiceDeleteResponse
}

func (*C1APIWebhooksV1WebhooksServiceDeleteResponse) GetContentType

func (*C1APIWebhooksV1WebhooksServiceDeleteResponse) GetRawResponse

func (*C1APIWebhooksV1WebhooksServiceDeleteResponse) GetStatusCode

func (*C1APIWebhooksV1WebhooksServiceDeleteResponse) GetWebhooksServiceDeleteResponse

type C1APIWebhooksV1WebhooksServiceGetRequest

type C1APIWebhooksV1WebhooksServiceGetRequest struct {
	ID string `pathParam:"style=simple,explode=false,name=id"`
}

func (*C1APIWebhooksV1WebhooksServiceGetRequest) GetID

type C1APIWebhooksV1WebhooksServiceGetResponse

type C1APIWebhooksV1WebhooksServiceGetResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	WebhooksServiceGetResponse *shared.WebhooksServiceGetResponse
}

func (*C1APIWebhooksV1WebhooksServiceGetResponse) GetContentType

func (*C1APIWebhooksV1WebhooksServiceGetResponse) GetRawResponse

func (*C1APIWebhooksV1WebhooksServiceGetResponse) GetStatusCode

func (*C1APIWebhooksV1WebhooksServiceGetResponse) GetWebhooksServiceGetResponse

type C1APIWebhooksV1WebhooksServiceListRequest

type C1APIWebhooksV1WebhooksServiceListRequest struct {
	PageSize  *int    `queryParam:"style=form,explode=true,name=page_size"`
	PageToken *string `queryParam:"style=form,explode=true,name=page_token"`
}

func (*C1APIWebhooksV1WebhooksServiceListRequest) GetPageSize

func (*C1APIWebhooksV1WebhooksServiceListRequest) GetPageToken

type C1APIWebhooksV1WebhooksServiceListResponse

type C1APIWebhooksV1WebhooksServiceListResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	WebhooksServiceListResponse *shared.WebhooksServiceListResponse
}

func (*C1APIWebhooksV1WebhooksServiceListResponse) GetContentType

func (*C1APIWebhooksV1WebhooksServiceListResponse) GetRawResponse

func (*C1APIWebhooksV1WebhooksServiceListResponse) GetStatusCode

func (*C1APIWebhooksV1WebhooksServiceListResponse) GetWebhooksServiceListResponse

type C1APIWebhooksV1WebhooksServiceUpdateRequest

type C1APIWebhooksV1WebhooksServiceUpdateRequest struct {
	ID                           string                               `pathParam:"style=simple,explode=false,name=id"`
	WebhooksServiceUpdateRequest *shared.WebhooksServiceUpdateRequest `request:"mediaType=application/json"`
}

func (*C1APIWebhooksV1WebhooksServiceUpdateRequest) GetID

func (*C1APIWebhooksV1WebhooksServiceUpdateRequest) GetWebhooksServiceUpdateRequest

type C1APIWebhooksV1WebhooksServiceUpdateResponse

type C1APIWebhooksV1WebhooksServiceUpdateResponse struct {
	// HTTP response content type for this operation
	ContentType string
	// HTTP response status code for this operation
	StatusCode int
	// Raw HTTP response; suitable for custom response parsing
	RawResponse *http.Response
	// Successful response
	WebhooksServiceUpdateResponse *shared.WebhooksServiceUpdateResponse
}

func (*C1APIWebhooksV1WebhooksServiceUpdateResponse) GetContentType

func (*C1APIWebhooksV1WebhooksServiceUpdateResponse) GetRawResponse

func (*C1APIWebhooksV1WebhooksServiceUpdateResponse) GetStatusCode

func (*C1APIWebhooksV1WebhooksServiceUpdateResponse) GetWebhooksServiceUpdateResponse

type Option added in v0.4.14

type Option func(*Options, ...string) error

func WithOperationTimeout added in v0.4.14

func WithOperationTimeout(timeout time.Duration) Option

WithOperationTimeout allows setting the request timeout applied for an operation.

func WithRetries added in v0.4.14

func WithRetries(config retry.Config) Option

WithRetries allows customizing the default retry configuration.

func WithServerURL added in v0.4.14

func WithServerURL(serverURL string) Option

WithServerURL allows providing an alternative server URL.

func WithTemplatedServerURL added in v0.4.14

func WithTemplatedServerURL(serverURL string, params map[string]string) Option

WithTemplatedServerURL allows providing an alternative server URL with templated parameters.

func WithURLOverride added in v0.4.14

func WithURLOverride(urlOverride string) Option

WithURLOverride allows overriding the URL.

type Options added in v0.4.14

type Options struct {
	ServerURL   *string
	Retries     *retry.Config
	Timeout     *time.Duration
	URLOverride *string
}

Source Files

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL