Versions in this module Expand all Collapse all v0 v0.2.0 Aug 28, 2026 Changes in this version + func NewConnectedAppRevokeRequest(server string, id string) (*http.Request, error) + func NewConnectedAppsListRequest(server string) (*http.Request, error) + func NewOauthConsentDecideRequest(server string, id string, body OauthConsentDecideJSONRequestBody) (*http.Request, error) + func NewOauthConsentDecideRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewOauthConsentGetRequest(server string, id string) (*http.Request, error) type Client + func (c *Client) ConnectedAppRevoke(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ConnectedAppsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OauthConsentDecide(ctx context.Context, id string, body OauthConsentDecideJSONRequestBody, ...) (*http.Response, error) + func (c *Client) OauthConsentDecideWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) OauthConsentGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + type ClientBody struct + Id string + LogoUri *string + Name string + Uri *string + Verified bool type ClientInterface + ConnectedAppRevoke func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ConnectedAppsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + OauthConsentDecide func(ctx context.Context, id string, body OauthConsentDecideJSONRequestBody, ...) (*http.Response, error) + OauthConsentDecideWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + OauthConsentGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) type ClientWithResponses + func (c *ClientWithResponses) ConnectedAppRevokeWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ConnectedAppRevokeResponse, error) + func (c *ClientWithResponses) ConnectedAppsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*ConnectedAppsListResponse, error) + func (c *ClientWithResponses) OauthConsentDecideWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*OauthConsentDecideResponse, error) + func (c *ClientWithResponses) OauthConsentDecideWithResponse(ctx context.Context, id string, body OauthConsentDecideJSONRequestBody, ...) (*OauthConsentDecideResponse, error) + func (c *ClientWithResponses) OauthConsentGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OauthConsentGetResponse, error) type ClientWithResponsesInterface + ConnectedAppRevokeWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ConnectedAppRevokeResponse, error) + ConnectedAppsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*ConnectedAppsListResponse, error) + OauthConsentDecideWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*OauthConsentDecideResponse, error) + OauthConsentDecideWithResponse func(ctx context.Context, id string, body OauthConsentDecideJSONRequestBody, ...) (*OauthConsentDecideResponse, error) + OauthConsentGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OauthConsentGetResponse, error) + type ConnectedAppRevokeResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseConnectedAppRevokeResponse(rsp *http.Response) (*ConnectedAppRevokeResponse, error) + func (r ConnectedAppRevokeResponse) ContentType() string + func (r ConnectedAppRevokeResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ConnectedAppRevokeResponse) GetBody() []byte + func (r ConnectedAppRevokeResponse) Status() string + func (r ConnectedAppRevokeResponse) StatusCode() int + type ConnectedAppsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *GrantsOutputBody + func ParseConnectedAppsListResponse(rsp *http.Response) (*ConnectedAppsListResponse, error) + func (r ConnectedAppsListResponse) ContentType() string + func (r ConnectedAppsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ConnectedAppsListResponse) GetBody() []byte + func (r ConnectedAppsListResponse) GetJSON200() *GrantsOutputBody + func (r ConnectedAppsListResponse) Status() string + func (r ConnectedAppsListResponse) StatusCode() int + type ConsentBody struct + Client ClientBody + ExpiresAt time.Time + Organizations *[]OrganizationBody + RequestId string + Resource *string + Schema *string + Scopes *[]string + type DecisionInputBody struct + Approve bool + OrganizationId *string + Schema *string + Scopes *[]string + type DecisionOutputBody struct + RedirectTo string + Schema *string + type GrantBody struct + Client ClientBody + CreatedAt time.Time + Id string + LastUsedAt *time.Time + OrganizationId string + OrganizationName string + Scopes *[]string + type GrantsOutputBody struct + Grants *[]GrantBody + Schema *string + type OauthConsentDecideJSONRequestBody = DecisionInputBody + type OauthConsentDecideResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DecisionOutputBody + func ParseOauthConsentDecideResponse(rsp *http.Response) (*OauthConsentDecideResponse, error) + func (r OauthConsentDecideResponse) ContentType() string + func (r OauthConsentDecideResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OauthConsentDecideResponse) GetBody() []byte + func (r OauthConsentDecideResponse) GetJSON200() *DecisionOutputBody + func (r OauthConsentDecideResponse) Status() string + func (r OauthConsentDecideResponse) StatusCode() int + type OauthConsentGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ConsentBody + func ParseOauthConsentGetResponse(rsp *http.Response) (*OauthConsentGetResponse, error) + func (r OauthConsentGetResponse) ContentType() string + func (r OauthConsentGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OauthConsentGetResponse) GetBody() []byte + func (r OauthConsentGetResponse) GetJSON200() *ConsentBody + func (r OauthConsentGetResponse) Status() string + func (r OauthConsentGetResponse) StatusCode() int + type OrganizationBody struct + Id string + IsActive bool + Name string v0.1.0 Aug 27, 2026 Changes in this version + func NewAccountBillingProfileGetRequest(server string) (*http.Request, error) + func NewAccountBillingProfileSaveRequest(server string, body AccountBillingProfileSaveJSONRequestBody) (*http.Request, error) + func NewAccountBillingProfileSaveRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountChangePasswordRequest(server string, body AccountChangePasswordJSONRequestBody) (*http.Request, error) + func NewAccountChangePasswordRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountDeletionCancelRequest(server string) (*http.Request, error) + func NewAccountDeletionGetRequest(server string) (*http.Request, error) + func NewAccountDeletionRequestRequest(server string, body AccountDeletionRequestJSONRequestBody) (*http.Request, error) + func NewAccountDeletionRequestRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountEmailChangeStartRequest(server string, body AccountEmailChangeStartJSONRequestBody) (*http.Request, error) + func NewAccountEmailChangeStartRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountExportRequest(server string) (*http.Request, error) + func NewAccountFeaturesRequest(server string) (*http.Request, error) + func NewAccountGetRequest(server string) (*http.Request, error) + func NewAccountIdentitiesListRequest(server string) (*http.Request, error) + func NewAccountIdentityUnlinkRequest(server string, provider AccountIdentityUnlinkParamsProvider) (*http.Request, error) + func NewAccountLimitsRequest(server string) (*http.Request, error) + func NewAccountPhoneDeleteRequest(server string) (*http.Request, error) + func NewAccountPhoneGetRequest(server string) (*http.Request, error) + func NewAccountPhoneResendRequest(server string) (*http.Request, error) + func NewAccountPhoneStartRequest(server string, body AccountPhoneStartJSONRequestBody) (*http.Request, error) + func NewAccountPhoneStartRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountPhoneVerifyRequest(server string, body AccountPhoneVerifyJSONRequestBody) (*http.Request, error) + func NewAccountPhoneVerifyRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountSupportAccessRequest(server string) (*http.Request, error) + func NewAccountTotpConfirmRequest(server string, body AccountTotpConfirmJSONRequestBody) (*http.Request, error) + func NewAccountTotpConfirmRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountTotpDisableRequest(server string, body AccountTotpDisableJSONRequestBody) (*http.Request, error) + func NewAccountTotpDisableRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountTotpRecoveryCodesRequest(server string, body AccountTotpRecoveryCodesJSONRequestBody) (*http.Request, error) + func NewAccountTotpRecoveryCodesRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountTotpSetupRequest(server string, body AccountTotpSetupJSONRequestBody) (*http.Request, error) + func NewAccountTotpSetupRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAccountTotpStatusRequest(server string) (*http.Request, error) + func NewAccountUpdateRequest(server string, body AccountUpdateJSONRequestBody) (*http.Request, error) + func NewAccountUpdateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAnnouncementBannerDismissRequest(server string, id string) (*http.Request, error) + func NewAnnouncementBannerGetRequest(server string) (*http.Request, error) + func NewAnnouncementsGetRequest(server string, id string) (*http.Request, error) + func NewAnnouncementsListRequest(server string) (*http.Request, error) + func NewApiTokenCreateRequest(server string, body ApiTokenCreateJSONRequestBody) (*http.Request, error) + func NewApiTokenCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewApiTokenRevokeRequest(server string, id string) (*http.Request, error) + func NewApiTokensListRequest(server string) (*http.Request, error) + func NewAppActionRequest(server string, code string, body AppActionJSONRequestBody) (*http.Request, error) + func NewAppActionRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppAttachmentCreateRequest(server string, appCode string, body AppAttachmentCreateJSONRequestBody) (*http.Request, error) + func NewAppAttachmentCreateRequestWithBody(server string, appCode string, contentType string, body io.Reader) (*http.Request, error) + func NewAppAttachmentDeleteRequest(server string, appCode string, attachmentID string) (*http.Request, error) + func NewAppAttachmentVerifyRequest(server string, appCode string, attachmentID string) (*http.Request, error) + func NewAppAttachmentsListRequest(server string, appCode string) (*http.Request, error) + func NewAppAutoDeploySetRequest(server string, code string, body AppAutoDeploySetJSONRequestBody) (*http.Request, error) + func NewAppAutoDeploySetRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppBuildCancelRequest(server string, code string, id string) (*http.Request, error) + func NewAppBuildCreateRequest(server string, code string, body AppBuildCreateJSONRequestBody) (*http.Request, error) + func NewAppBuildCreateRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppBuildGetRequest(server string, code string, id string) (*http.Request, error) + func NewAppBuildsListRequest(server string, code string) (*http.Request, error) + func NewAppCreateRequest(server string, params *AppCreateParams, body AppCreateJSONRequestBody) (*http.Request, error) + func NewAppCreateRequestWithBody(server string, params *AppCreateParams, contentType string, body io.Reader) (*http.Request, error) + func NewAppDeleteRequest(server string, code string) (*http.Request, error) + func NewAppDetectBuildRequest(server string, params *AppDetectBuildParams) (*http.Request, error) + func NewAppDomainAddRequest(server string, code string, body AppDomainAddJSONRequestBody) (*http.Request, error) + func NewAppDomainAddRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppDomainDeleteRequest(server string, code string, domainID string) (*http.Request, error) + func NewAppDomainVerifyRequest(server string, code string, domainID string) (*http.Request, error) + func NewAppDomainsListRequest(server string, code string) (*http.Request, error) + func NewAppEnvGetRequest(server string, code string) (*http.Request, error) + func NewAppEnvSetRequest(server string, code string, body AppEnvSetJSONRequestBody) (*http.Request, error) + func NewAppEnvSetRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppEventsListRequest(server string, code string, params *AppEventsListParams) (*http.Request, error) + func NewAppExecStartRequest(server string, code string, body AppExecStartJSONRequestBody) (*http.Request, error) + func NewAppExecStartRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppGetRequest(server string, code string) (*http.Request, error) + func NewAppLogsGetRequest(server string, code string, id string) (*http.Request, error) + func NewAppLogsRequestRequest(server string, code string, body AppLogsRequestJSONRequestBody) (*http.Request, error) + func NewAppLogsRequestRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppMetricsRequest(server string, code string, params *AppMetricsParams) (*http.Request, error) + func NewAppPlansListRequest(server string) (*http.Request, error) + func NewAppPresetsListRequest(server string) (*http.Request, error) + func NewAppProjectSetRequest(server string, code string, body AppProjectSetJSONRequestBody) (*http.Request, error) + func NewAppProjectSetRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppReleasesListRequest(server string, code string) (*http.Request, error) + func NewAppResizeRequest(server string, code string, body AppResizeJSONRequestBody) (*http.Request, error) + func NewAppResizeRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppRollbackRequest(server string, code string, body AppRollbackJSONRequestBody) (*http.Request, error) + func NewAppRollbackRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppScaleRequest(server string, code string, body AppScaleJSONRequestBody) (*http.Request, error) + func NewAppScaleRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppSourceSetRequest(server string, code string, body AppSourceSetJSONRequestBody) (*http.Request, error) + func NewAppSourceSetRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppTagsSetRequest(server string, code string, body AppTagsSetJSONRequestBody) (*http.Request, error) + func NewAppTagsSetRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppUpdateRequest(server string, code string, body AppUpdateJSONRequestBody) (*http.Request, error) + func NewAppUpdateRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewAppsListRequest(server string, params *AppsListParams) (*http.Request, error) + func NewAuthConfirmEmailChangeRequest(server string, body AuthConfirmEmailChangeJSONRequestBody) (*http.Request, error) + func NewAuthConfirmEmailChangeRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAuthImpersonateRequest(server string, body AuthImpersonateJSONRequestBody) (*http.Request, error) + func NewAuthImpersonateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAuthLoginRequest(server string, body AuthLoginJSONRequestBody) (*http.Request, error) + func NewAuthLoginRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAuthLogoutRequest(server string) (*http.Request, error) + func NewAuthMfaVerifyRequest(server string, params *AuthMfaVerifyParams, body AuthMfaVerifyJSONRequestBody) (*http.Request, error) + func NewAuthMfaVerifyRequestWithBody(server string, params *AuthMfaVerifyParams, contentType string, body io.Reader) (*http.Request, error) + func NewAuthOauthCallbackRequest(server string, provider AuthOauthCallbackParamsProvider, ...) (*http.Request, error) + func NewAuthOauthProvidersRequest(server string) (*http.Request, error) + func NewAuthOauthStartRequest(server string, provider AuthOauthStartParamsProvider, ...) (*http.Request, error) + func NewAuthPasswordResetRequest(server string, body AuthPasswordResetJSONRequestBody) (*http.Request, error) + func NewAuthPasswordResetRequestRequest(server string, body AuthPasswordResetRequestJSONRequestBody) (*http.Request, error) + func NewAuthPasswordResetRequestRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAuthPasswordResetRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAuthPolicyRequest(server string) (*http.Request, error) + func NewAuthRegisterRequest(server string, body AuthRegisterJSONRequestBody) (*http.Request, error) + func NewAuthRegisterRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAuthSessionRevokeRequest(server string, id string) (*http.Request, error) + func NewAuthSessionsListRequest(server string) (*http.Request, error) + func NewAuthVerifyEmailRequest(server string, body AuthVerifyEmailJSONRequestBody) (*http.Request, error) + func NewAuthVerifyEmailRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewAuthVerifyEmailResendRequest(server string, body AuthVerifyEmailResendJSONRequestBody) (*http.Request, error) + func NewAuthVerifyEmailResendRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabaseAlertDeleteRequest(server string, databaseId string, metric DatabaseAlertDeleteParamsMetric) (*http.Request, error) + func NewDatabaseAlertSaveRequest(server string, databaseId string, body DatabaseAlertSaveJSONRequestBody) (*http.Request, error) + func NewDatabaseAlertSaveRequestWithBody(server string, databaseId string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabaseAlertsListRequest(server string, databaseId string) (*http.Request, error) + func NewDatabaseBackupCreateRequest(server string, databaseID string) (*http.Request, error) + func NewDatabaseBackupsListRequest(server string, databaseID string) (*http.Request, error) + func NewDatabaseConnectionGetRequest(server string, databaseID string) (*http.Request, error) + func NewDatabaseCreateRequest(server string, params *DatabaseCreateParams, ...) (*http.Request, error) + func NewDatabaseCreateRequestWithBody(server string, params *DatabaseCreateParams, contentType string, ...) (*http.Request, error) + func NewDatabaseDbCreateRequest(server string, databaseID string, body DatabaseDbCreateJSONRequestBody) (*http.Request, error) + func NewDatabaseDbCreateRequestWithBody(server string, databaseID string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabaseDeleteRequest(server string, databaseID string) (*http.Request, error) + func NewDatabaseGetRequest(server string, databaseID string) (*http.Request, error) + func NewDatabaseMetricsListRequest(server string, databaseId string, params *DatabaseMetricsListParams) (*http.Request, error) + func NewDatabaseOptionsListRequest(server string) (*http.Request, error) + func NewDatabaseProjectSetRequest(server string, databaseID string, body DatabaseProjectSetJSONRequestBody) (*http.Request, error) + func NewDatabaseProjectSetRequestWithBody(server string, databaseID string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabasePublicAccessSetRequest(server string, databaseID string, body DatabasePublicAccessSetJSONRequestBody) (*http.Request, error) + func NewDatabasePublicAccessSetRequestWithBody(server string, databaseID string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabaseResizeRequest(server string, databaseId string, body DatabaseResizeJSONRequestBody) (*http.Request, error) + func NewDatabaseResizeRequestWithBody(server string, databaseId string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabaseRestoreCreateRequest(server string, databaseID string, body DatabaseRestoreCreateJSONRequestBody) (*http.Request, error) + func NewDatabaseRestoreCreateRequestWithBody(server string, databaseID string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabaseTagsSetRequest(server string, databaseID string, body DatabaseTagsSetJSONRequestBody) (*http.Request, error) + func NewDatabaseTagsSetRequestWithBody(server string, databaseID string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabaseTrustedSourcesSetRequest(server string, databaseID string, ...) (*http.Request, error) + func NewDatabaseTrustedSourcesSetRequestWithBody(server string, databaseID string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabaseUserCreateRequest(server string, databaseID string, body DatabaseUserCreateJSONRequestBody) (*http.Request, error) + func NewDatabaseUserCreateRequestWithBody(server string, databaseID string, contentType string, body io.Reader) (*http.Request, error) + func NewDatabaseUserDeleteRequest(server string, databaseID string, userID string) (*http.Request, error) + func NewDatabaseUserPasswordResetRequest(server string, databaseID string, userID string) (*http.Request, error) + func NewDatabasesListRequest(server string, params *DatabasesListParams) (*http.Request, error) + func NewDnsRecordCreateRequest(server string, id string, params *DnsRecordCreateParams, ...) (*http.Request, error) + func NewDnsRecordCreateRequestWithBody(server string, id string, params *DnsRecordCreateParams, contentType string, ...) (*http.Request, error) + func NewDnsRecordDeleteRequest(server string, id string, recordId string) (*http.Request, error) + func NewDnsRecordUpdateRequest(server string, id string, recordId string, body DnsRecordUpdateJSONRequestBody) (*http.Request, error) + func NewDnsRecordUpdateRequestWithBody(server string, id string, recordId string, contentType string, body io.Reader) (*http.Request, error) + func NewDnsZoneCreateRequest(server string, params *DnsZoneCreateParams, body DnsZoneCreateJSONRequestBody) (*http.Request, error) + func NewDnsZoneCreateRequestWithBody(server string, params *DnsZoneCreateParams, contentType string, body io.Reader) (*http.Request, error) + func NewDnsZoneDeleteRequest(server string, id string) (*http.Request, error) + func NewDnsZoneGetRequest(server string, id string) (*http.Request, error) + func NewDnsZoneProjectSetRequest(server string, id string, body DnsZoneProjectSetJSONRequestBody) (*http.Request, error) + func NewDnsZoneProjectSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDnsZoneTagsSetRequest(server string, id string, body DnsZoneTagsSetJSONRequestBody) (*http.Request, error) + func NewDnsZoneTagsSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDnsZonesListRequest(server string, params *DnsZonesListParams) (*http.Request, error) + func NewDomainAutoRenewSetRequest(server string, id string, body DomainAutoRenewSetJSONRequestBody) (*http.Request, error) + func NewDomainAutoRenewSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainContactCreateRequest(server string, body DomainContactCreateJSONRequestBody) (*http.Request, error) + func NewDomainContactCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainContactDeleteRequest(server string, id string) (*http.Request, error) + func NewDomainContactSuggestRequest(server string) (*http.Request, error) + func NewDomainContactUpdateRequest(server string, id string, body DomainContactUpdateJSONRequestBody) (*http.Request, error) + func NewDomainContactUpdateRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainContactsListRequest(server string) (*http.Request, error) + func NewDomainGetRequest(server string, id string) (*http.Request, error) + func NewDomainLockSetRequest(server string, id string, body DomainLockSetJSONRequestBody) (*http.Request, error) + func NewDomainLockSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainNameserversSetRequest(server string, id string, body DomainNameserversSetJSONRequestBody) (*http.Request, error) + func NewDomainNameserversSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainPrivacySetRequest(server string, id string, body DomainPrivacySetJSONRequestBody) (*http.Request, error) + func NewDomainPrivacySetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainProjectSetRequest(server string, id string, body DomainProjectSetJSONRequestBody) (*http.Request, error) + func NewDomainProjectSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainRegisterRequest(server string, params *DomainRegisterParams, ...) (*http.Request, error) + func NewDomainRegisterRequestWithBody(server string, params *DomainRegisterParams, contentType string, ...) (*http.Request, error) + func NewDomainRenewRequest(server string, id string, body DomainRenewJSONRequestBody) (*http.Request, error) + func NewDomainRenewRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainSearchRequest(server string, body DomainSearchJSONRequestBody) (*http.Request, error) + func NewDomainSearchRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainTagsSetRequest(server string, id string, body DomainTagsSetJSONRequestBody) (*http.Request, error) + func NewDomainTagsSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainTldsListRequest(server string) (*http.Request, error) + func NewDomainTransferRequest(server string, body DomainTransferJSONRequestBody) (*http.Request, error) + func NewDomainTransferRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewDomainsListRequest(server string, params *DomainsListParams) (*http.Request, error) + func NewFirewallCreateRequest(server string, params *FirewallCreateParams, ...) (*http.Request, error) + func NewFirewallCreateRequestWithBody(server string, params *FirewallCreateParams, contentType string, ...) (*http.Request, error) + func NewFirewallDeleteRequest(server string, id string) (*http.Request, error) + func NewFirewallGetRequest(server string, id string) (*http.Request, error) + func NewFirewallRulesReplaceRequest(server string, id string, body FirewallRulesReplaceJSONRequestBody) (*http.Request, error) + func NewFirewallRulesReplaceRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewFirewallServerAttachRequest(server string, id string, serverId string) (*http.Request, error) + func NewFirewallServerDetachRequest(server string, id string, serverId string) (*http.Request, error) + func NewFirewallUpdateRequest(server string, id string, body FirewallUpdateJSONRequestBody) (*http.Request, error) + func NewFirewallUpdateRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewFirewallsListRequest(server string, params *FirewallsListParams) (*http.Request, error) + func NewFloatingIpAttachRequest(server string, floatingIpID string, body FloatingIpAttachJSONRequestBody) (*http.Request, error) + func NewFloatingIpAttachRequestWithBody(server string, floatingIpID string, contentType string, body io.Reader) (*http.Request, error) + func NewFloatingIpCreateRequest(server string, params *FloatingIpCreateParams, ...) (*http.Request, error) + func NewFloatingIpCreateRequestWithBody(server string, params *FloatingIpCreateParams, contentType string, ...) (*http.Request, error) + func NewFloatingIpDeleteRequest(server string, floatingIpID string) (*http.Request, error) + func NewFloatingIpDetachRequest(server string, floatingIpID string) (*http.Request, error) + func NewFloatingIpGetRequest(server string, floatingIpID string) (*http.Request, error) + func NewFloatingIpsListRequest(server string) (*http.Request, error) + func NewFxRateRequest(server string) (*http.Request, error) + func NewGitConnectionDeleteRequest(server string, id string) (*http.Request, error) + func NewGitConnectionsListRequest(server string) (*http.Request, error) + func NewGitInstallCallbackRequest(server string, provider GitInstallCallbackParamsProvider, ...) (*http.Request, error) + func NewGitInstallSetupRequest(server string, provider GitInstallSetupParamsProvider, ...) (*http.Request, error) + func NewGitInstallStartRequest(server string, provider GitInstallStartParamsProvider) (*http.Request, error) + func NewGitProvidersListRequest(server string) (*http.Request, error) + func NewGitRepositoriesListRequest(server string, id string) (*http.Request, error) + func NewImagesListRequest(server string, params *ImagesListParams) (*http.Request, error) + func NewIsoCreateRequest(server string, params *IsoCreateParams, body IsoCreateJSONRequestBody) (*http.Request, error) + func NewIsoCreateRequestWithBody(server string, params *IsoCreateParams, contentType string, body io.Reader) (*http.Request, error) + func NewIsoDeleteRequest(server string, id string) (*http.Request, error) + func NewIsoGetRequest(server string, id string) (*http.Request, error) + func NewIsoListRequest(server string) (*http.Request, error) + func NewLoadBalancerBackendsSetRequest(server string, loadBalancerID string, ...) (*http.Request, error) + func NewLoadBalancerBackendsSetRequestWithBody(server string, loadBalancerID string, contentType string, body io.Reader) (*http.Request, error) + func NewLoadBalancerCreateRequest(server string, params *LoadBalancerCreateParams, ...) (*http.Request, error) + func NewLoadBalancerCreateRequestWithBody(server string, params *LoadBalancerCreateParams, contentType string, ...) (*http.Request, error) + func NewLoadBalancerDeleteRequest(server string, loadBalancerID string) (*http.Request, error) + func NewLoadBalancerGetRequest(server string, loadBalancerID string) (*http.Request, error) + func NewLoadBalancerProjectSetRequest(server string, loadBalancerID string, ...) (*http.Request, error) + func NewLoadBalancerProjectSetRequestWithBody(server string, loadBalancerID string, contentType string, body io.Reader) (*http.Request, error) + func NewLoadBalancerRulesReplaceRequest(server string, loadBalancerID string, ...) (*http.Request, error) + func NewLoadBalancerRulesReplaceRequestWithBody(server string, loadBalancerID string, contentType string, body io.Reader) (*http.Request, error) + func NewLoadBalancerTagsSetRequest(server string, loadBalancerID string, body LoadBalancerTagsSetJSONRequestBody) (*http.Request, error) + func NewLoadBalancerTagsSetRequestWithBody(server string, loadBalancerID string, contentType string, body io.Reader) (*http.Request, error) + func NewLoadBalancersListRequest(server string, params *LoadBalancersListParams) (*http.Request, error) + func NewNetworkCreateRequest(server string, params *NetworkCreateParams, body NetworkCreateJSONRequestBody) (*http.Request, error) + func NewNetworkCreateRequestWithBody(server string, params *NetworkCreateParams, contentType string, body io.Reader) (*http.Request, error) + func NewNetworkDeleteRequest(server string, id string) (*http.Request, error) + func NewNetworkGetRequest(server string, id string) (*http.Request, error) + func NewNetworkProjectSetRequest(server string, id string, body NetworkProjectSetJSONRequestBody) (*http.Request, error) + func NewNetworkProjectSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewNetworkTagsSetRequest(server string, id string, body NetworkTagsSetJSONRequestBody) (*http.Request, error) + func NewNetworkTagsSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewNetworksListRequest(server string, params *NetworksListParams) (*http.Request, error) + func NewNotificationDeleteRequest(server string, id int64) (*http.Request, error) + func NewNotificationsListRequest(server string, params *NotificationsListParams) (*http.Request, error) + func NewNotificationsMarkReadRequest(server string, body NotificationsMarkReadJSONRequestBody) (*http.Request, error) + func NewNotificationsMarkReadRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewOrganizationInvitationAcceptRequest(server string, token string) (*http.Request, error) + func NewOrganizationInvitationGetRequest(server string, token string) (*http.Request, error) + func NewOrganizationInvitationsCreateRequest(server string, id string, body OrganizationInvitationsCreateJSONRequestBody) (*http.Request, error) + func NewOrganizationInvitationsCreateRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewOrganizationInvitationsListRequest(server string, id string) (*http.Request, error) + func NewOrganizationInvitationsRevokeRequest(server string, id string, invitationId string) (*http.Request, error) + func NewOrganizationMemberRoleUpdateRequest(server string, id string, userId string, ...) (*http.Request, error) + func NewOrganizationMemberRoleUpdateRequestWithBody(server string, id string, userId string, contentType string, body io.Reader) (*http.Request, error) + func NewOrganizationMembersListRequest(server string, id string) (*http.Request, error) + func NewOrganizationMembersRemoveRequest(server string, id string, userId string) (*http.Request, error) + func NewOrganizationsActivateRequest(server string, id string) (*http.Request, error) + func NewOrganizationsCreateRequest(server string, body OrganizationsCreateJSONRequestBody) (*http.Request, error) + func NewOrganizationsCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewOrganizationsDeleteRequest(server string, id string) (*http.Request, error) + func NewOrganizationsGetRequest(server string, id string) (*http.Request, error) + func NewOrganizationsLeaveRequest(server string, id string) (*http.Request, error) + func NewOrganizationsListRequest(server string) (*http.Request, error) + func NewOrganizationsRenameRequest(server string, id string, body OrganizationsRenameJSONRequestBody) (*http.Request, error) + func NewOrganizationsRenameRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewPaymentIntentsListRequest(server string) (*http.Request, error) + func NewPaymentTopupInitRequest(server string, params *PaymentTopupInitParams, ...) (*http.Request, error) + func NewPaymentTopupInitRequestWithBody(server string, params *PaymentTopupInitParams, contentType string, ...) (*http.Request, error) + func NewPlanTypesListRequest(server string) (*http.Request, error) + func NewPlansListRequest(server string, params *PlansListParams) (*http.Request, error) + func NewProjectCreateRequest(server string, params *ProjectCreateParams, body ProjectCreateJSONRequestBody) (*http.Request, error) + func NewProjectCreateRequestWithBody(server string, params *ProjectCreateParams, contentType string, body io.Reader) (*http.Request, error) + func NewProjectDeleteRequest(server string, id string) (*http.Request, error) + func NewProjectGetRequest(server string, id string) (*http.Request, error) + func NewProjectUpdateRequest(server string, id string, body ProjectUpdateJSONRequestBody) (*http.Request, error) + func NewProjectUpdateRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewProjectsListRequest(server string) (*http.Request, error) + func NewRdnsClearRequest(server string, id string) (*http.Request, error) + func NewRdnsSetRequest(server string, id string, body RdnsSetJSONRequestBody) (*http.Request, error) + func NewRdnsSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewRegionsListRequest(server string) (*http.Request, error) + func NewResourcePricesListRequest(server string) (*http.Request, error) + func NewServerActionCreateRequest(server string, id string, body ServerActionCreateJSONRequestBody) (*http.Request, error) + func NewServerActionCreateRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerActionGetRequest(server string, id string, actionId string) (*http.Request, error) + func NewServerAlertDeleteRequest(server string, id string, metric ServerAlertDeleteParamsMetric) (*http.Request, error) + func NewServerAlertSaveRequest(server string, id string, body ServerAlertSaveJSONRequestBody) (*http.Request, error) + func NewServerAlertSaveRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerAlertsListRequest(server string, id string) (*http.Request, error) + func NewServerAppRetryRequest(server string, id string) (*http.Request, error) + func NewServerBackupCreateRequest(server string, id string, body ServerBackupCreateJSONRequestBody) (*http.Request, error) + func NewServerBackupCreateRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerBackupDeleteRequest(server string, id string, backupId string) (*http.Request, error) + func NewServerBackupListAllRequest(server string, params *ServerBackupListAllParams) (*http.Request, error) + func NewServerBackupListRequest(server string, id string) (*http.Request, error) + func NewServerBackupRestoreRequest(server string, id string, backupId string) (*http.Request, error) + func NewServerBackupSettingsGetRequest(server string, id string) (*http.Request, error) + func NewServerBackupSettingsUpdateRequest(server string, id string, body ServerBackupSettingsUpdateJSONRequestBody) (*http.Request, error) + func NewServerBackupSettingsUpdateRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerBillingGetRequest(server string, id string) (*http.Request, error) + func NewServerConsoleCreateRequest(server string, id string) (*http.Request, error) + func NewServerCreateRequest(server string, params *ServerCreateParams, body ServerCreateJSONRequestBody) (*http.Request, error) + func NewServerCreateRequestWithBody(server string, params *ServerCreateParams, contentType string, body io.Reader) (*http.Request, error) + func NewServerDeleteRequest(server string, id string, params *ServerDeleteParams) (*http.Request, error) + func NewServerEventsListRequest(server string, id string, params *ServerEventsListParams) (*http.Request, error) + func NewServerFilesystemsListRequest(server string, id string) (*http.Request, error) + func NewServerGetRequest(server string, id string) (*http.Request, error) + func NewServerLedgerListRequest(server string, id string, params *ServerLedgerListParams) (*http.Request, error) + func NewServerMetricsListRequest(server string, id string, params *ServerMetricsListParams) (*http.Request, error) + func NewServerMountISORequest(server string, id string, body ServerMountISOJSONRequestBody) (*http.Request, error) + func NewServerMountISORequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerNetworkAttachRequest(server string, id string, body ServerNetworkAttachJSONRequestBody) (*http.Request, error) + func NewServerNetworkAttachRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerNetworkDetachRequest(server string, id string) (*http.Request, error) + func NewServerPasswordResetRequest(server string, id string) (*http.Request, error) + func NewServerProjectSetRequest(server string, id string, body ServerProjectSetJSONRequestBody) (*http.Request, error) + func NewServerProjectSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerRDNSListRequest(server string, id string) (*http.Request, error) + func NewServerRebuildRequest(server string, id string, body ServerRebuildJSONRequestBody) (*http.Request, error) + func NewServerRebuildRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerRenameRequest(server string, id string, body ServerRenameJSONRequestBody) (*http.Request, error) + func NewServerRenameRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerRescueEnterRequest(server string, id string) (*http.Request, error) + func NewServerRescueExitRequest(server string, id string) (*http.Request, error) + func NewServerResizeRequest(server string, id string, body ServerResizeJSONRequestBody) (*http.Request, error) + func NewServerResizeRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerSnapshotCreateRequest(server string, id string, body ServerSnapshotCreateJSONRequestBody) (*http.Request, error) + func NewServerSnapshotCreateRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerSnapshotDeleteRequest(server string, id string, snapshotId string) (*http.Request, error) + func NewServerSnapshotListAllRequest(server string, params *ServerSnapshotListAllParams) (*http.Request, error) + func NewServerSnapshotListRequest(server string, id string) (*http.Request, error) + func NewServerSnapshotRestoreRequest(server string, id string, snapshotId string) (*http.Request, error) + func NewServerTagsSetRequest(server string, id string, body ServerTagsSetJSONRequestBody) (*http.Request, error) + func NewServerTagsSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewServerUnmountISORequest(server string, id string) (*http.Request, error) + func NewServersListRequest(server string, params *ServersListParams) (*http.Request, error) + func NewSshKeyCreateRequest(server string, params *SshKeyCreateParams, body SshKeyCreateJSONRequestBody) (*http.Request, error) + func NewSshKeyCreateRequestWithBody(server string, params *SshKeyCreateParams, contentType string, body io.Reader) (*http.Request, error) + func NewSshKeyDeleteRequest(server string, id string) (*http.Request, error) + func NewSshKeyGetRequest(server string, id string) (*http.Request, error) + func NewSshKeysListRequest(server string) (*http.Request, error) + func NewTagsListRequest(server string, params *TagsListParams) (*http.Request, error) + func NewTicketAttachmentDownloadRequest(server string, code string, id int64) (*http.Request, error) + func NewTicketCloseRequest(server string, code string) (*http.Request, error) + func NewTicketCreateRequest(server string, body TicketCreateJSONRequestBody) (*http.Request, error) + func NewTicketCreateRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewTicketGetRequest(server string, code string) (*http.Request, error) + func NewTicketReopenRequest(server string, code string) (*http.Request, error) + func NewTicketReplyRequest(server string, code string, body TicketReplyJSONRequestBody) (*http.Request, error) + func NewTicketReplyRequestWithBody(server string, code string, contentType string, body io.Reader) (*http.Request, error) + func NewTicketsListRequest(server string, params *TicketsListParams) (*http.Request, error) + func NewVolumeAttachRequest(server string, id string, body VolumeAttachJSONRequestBody) (*http.Request, error) + func NewVolumeAttachRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewVolumeCreateRequest(server string, params *VolumeCreateParams, body VolumeCreateJSONRequestBody) (*http.Request, error) + func NewVolumeCreateRequestWithBody(server string, params *VolumeCreateParams, contentType string, body io.Reader) (*http.Request, error) + func NewVolumeDeleteRequest(server string, id string) (*http.Request, error) + func NewVolumeDetachRequest(server string, id string) (*http.Request, error) + func NewVolumeGetRequest(server string, id string) (*http.Request, error) + func NewVolumeLimitsRequest(server string) (*http.Request, error) + func NewVolumeListRequest(server string, params *VolumeListParams) (*http.Request, error) + func NewVolumeProjectSetRequest(server string, id string, body VolumeProjectSetJSONRequestBody) (*http.Request, error) + func NewVolumeProjectSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewVolumeResizeRequest(server string, id string, body VolumeResizeJSONRequestBody) (*http.Request, error) + func NewVolumeResizeRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewVolumeTagsSetRequest(server string, id string, body VolumeTagsSetJSONRequestBody) (*http.Request, error) + func NewVolumeTagsSetRequestWithBody(server string, id string, contentType string, body io.Reader) (*http.Request, error) + func NewWalletGetRequest(server string) (*http.Request, error) + func NewWalletLedgerDailyRequest(server string, params *WalletLedgerDailyParams) (*http.Request, error) + func NewWalletLedgerListRequest(server string, params *WalletLedgerListParams) (*http.Request, error) + func NewWalletPromoRedeemRequest(server string, body WalletPromoRedeemJSONRequestBody) (*http.Request, error) + func NewWalletPromoRedeemRequestWithBody(server string, contentType string, body io.Reader) (*http.Request, error) + func NewWalletPromoRedemptionsRequest(server string) (*http.Request, error) + type AccountBillingProfileGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ProfileBody + func ParseAccountBillingProfileGetResponse(rsp *http.Response) (*AccountBillingProfileGetResponse, error) + func (r AccountBillingProfileGetResponse) ContentType() string + func (r AccountBillingProfileGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountBillingProfileGetResponse) GetBody() []byte + func (r AccountBillingProfileGetResponse) GetJSON200() *ProfileBody + func (r AccountBillingProfileGetResponse) Status() string + func (r AccountBillingProfileGetResponse) StatusCode() int + type AccountBillingProfileSaveJSONRequestBody = ProfileBody + type AccountBillingProfileSaveResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ProfileBody + func ParseAccountBillingProfileSaveResponse(rsp *http.Response) (*AccountBillingProfileSaveResponse, error) + func (r AccountBillingProfileSaveResponse) ContentType() string + func (r AccountBillingProfileSaveResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountBillingProfileSaveResponse) GetBody() []byte + func (r AccountBillingProfileSaveResponse) GetJSON200() *ProfileBody + func (r AccountBillingProfileSaveResponse) Status() string + func (r AccountBillingProfileSaveResponse) StatusCode() int + type AccountChangePasswordJSONRequestBody = PasswordChangeInputBody + type AccountChangePasswordResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAccountChangePasswordResponse(rsp *http.Response) (*AccountChangePasswordResponse, error) + func (r AccountChangePasswordResponse) ContentType() string + func (r AccountChangePasswordResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountChangePasswordResponse) GetBody() []byte + func (r AccountChangePasswordResponse) Status() string + func (r AccountChangePasswordResponse) StatusCode() int + type AccountDeletionCancelResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAccountDeletionCancelResponse(rsp *http.Response) (*AccountDeletionCancelResponse, error) + func (r AccountDeletionCancelResponse) ContentType() string + func (r AccountDeletionCancelResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountDeletionCancelResponse) GetBody() []byte + func (r AccountDeletionCancelResponse) Status() string + func (r AccountDeletionCancelResponse) StatusCode() int + type AccountDeletionGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DeletionStateOutputBody + func ParseAccountDeletionGetResponse(rsp *http.Response) (*AccountDeletionGetResponse, error) + func (r AccountDeletionGetResponse) ContentType() string + func (r AccountDeletionGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountDeletionGetResponse) GetBody() []byte + func (r AccountDeletionGetResponse) GetJSON200() *DeletionStateOutputBody + func (r AccountDeletionGetResponse) Status() string + func (r AccountDeletionGetResponse) StatusCode() int + type AccountDeletionRequestJSONRequestBody = DeletionRequestInputBody + type AccountDeletionRequestResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *DeletionRequestOutputBody + func ParseAccountDeletionRequestResponse(rsp *http.Response) (*AccountDeletionRequestResponse, error) + func (r AccountDeletionRequestResponse) ContentType() string + func (r AccountDeletionRequestResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountDeletionRequestResponse) GetBody() []byte + func (r AccountDeletionRequestResponse) GetJSON202() *DeletionRequestOutputBody + func (r AccountDeletionRequestResponse) Status() string + func (r AccountDeletionRequestResponse) StatusCode() int + type AccountEmailChangeStartJSONRequestBody = EmailChangeInputBody + type AccountEmailChangeStartResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAccountEmailChangeStartResponse(rsp *http.Response) (*AccountEmailChangeStartResponse, error) + func (r AccountEmailChangeStartResponse) ContentType() string + func (r AccountEmailChangeStartResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountEmailChangeStartResponse) GetBody() []byte + func (r AccountEmailChangeStartResponse) Status() string + func (r AccountEmailChangeStartResponse) StatusCode() int + type AccountExport struct + Account ExportAccountSummaryRow + BillingProfiles *[]ExportUserBillingProfilesRow + GeneratedAt time.Time + LinkedAccounts *[]ExportUserIdentitiesRow + Note string + Organizations *[]ExportUserOrganizationsRow + Payments *[]ExportUserPaymentsRow + Resources *[]ExportUserResourcesRow + Schema *string + SshKeys *[]ExportUserSSHKeysRow + SupportTickets *[]ExportUserTicketsRow + type AccountExportResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AccountExport + func ParseAccountExportResponse(rsp *http.Response) (*AccountExportResponse, error) + func (r AccountExportResponse) ContentType() string + func (r AccountExportResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountExportResponse) GetBody() []byte + func (r AccountExportResponse) GetJSON200() *AccountExport + func (r AccountExportResponse) Status() string + func (r AccountExportResponse) StatusCode() int + type AccountFeaturesResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *CustomerFeaturesOutputBody + func ParseAccountFeaturesResponse(rsp *http.Response) (*AccountFeaturesResponse, error) + func (r AccountFeaturesResponse) ContentType() string + func (r AccountFeaturesResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountFeaturesResponse) GetBody() []byte + func (r AccountFeaturesResponse) GetJSON200() *CustomerFeaturesOutputBody + func (r AccountFeaturesResponse) Status() string + func (r AccountFeaturesResponse) StatusCode() int + type AccountGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *UserBody + func ParseAccountGetResponse(rsp *http.Response) (*AccountGetResponse, error) + func (r AccountGetResponse) ContentType() string + func (r AccountGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountGetResponse) GetBody() []byte + func (r AccountGetResponse) GetJSON200() *UserBody + func (r AccountGetResponse) Status() string + func (r AccountGetResponse) StatusCode() int + type AccountIdentitiesListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *IdentitiesOutputBody + func ParseAccountIdentitiesListResponse(rsp *http.Response) (*AccountIdentitiesListResponse, error) + func (r AccountIdentitiesListResponse) ContentType() string + func (r AccountIdentitiesListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountIdentitiesListResponse) GetBody() []byte + func (r AccountIdentitiesListResponse) GetJSON200() *IdentitiesOutputBody + func (r AccountIdentitiesListResponse) Status() string + func (r AccountIdentitiesListResponse) StatusCode() int + type AccountIdentityUnlinkParamsProvider string + const AccountIdentityUnlinkParamsProviderGithub + const AccountIdentityUnlinkParamsProviderGoogle + func (e AccountIdentityUnlinkParamsProvider) Valid() bool + type AccountIdentityUnlinkResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAccountIdentityUnlinkResponse(rsp *http.Response) (*AccountIdentityUnlinkResponse, error) + func (r AccountIdentityUnlinkResponse) ContentType() string + func (r AccountIdentityUnlinkResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountIdentityUnlinkResponse) GetBody() []byte + func (r AccountIdentityUnlinkResponse) Status() string + func (r AccountIdentityUnlinkResponse) StatusCode() int + type AccountLimitsResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *CustomerQuotaOutputBody + func ParseAccountLimitsResponse(rsp *http.Response) (*AccountLimitsResponse, error) + func (r AccountLimitsResponse) ContentType() string + func (r AccountLimitsResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountLimitsResponse) GetBody() []byte + func (r AccountLimitsResponse) GetJSON200() *CustomerQuotaOutputBody + func (r AccountLimitsResponse) Status() string + func (r AccountLimitsResponse) StatusCode() int + type AccountPhoneDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAccountPhoneDeleteResponse(rsp *http.Response) (*AccountPhoneDeleteResponse, error) + func (r AccountPhoneDeleteResponse) ContentType() string + func (r AccountPhoneDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountPhoneDeleteResponse) GetBody() []byte + func (r AccountPhoneDeleteResponse) Status() string + func (r AccountPhoneDeleteResponse) StatusCode() int + type AccountPhoneGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *PhoneStatusBody + func ParseAccountPhoneGetResponse(rsp *http.Response) (*AccountPhoneGetResponse, error) + func (r AccountPhoneGetResponse) ContentType() string + func (r AccountPhoneGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountPhoneGetResponse) GetBody() []byte + func (r AccountPhoneGetResponse) GetJSON200() *PhoneStatusBody + func (r AccountPhoneGetResponse) Status() string + func (r AccountPhoneGetResponse) StatusCode() int + type AccountPhoneResendResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *PhoneStatusBody + func ParseAccountPhoneResendResponse(rsp *http.Response) (*AccountPhoneResendResponse, error) + func (r AccountPhoneResendResponse) ContentType() string + func (r AccountPhoneResendResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountPhoneResendResponse) GetBody() []byte + func (r AccountPhoneResendResponse) GetJSON200() *PhoneStatusBody + func (r AccountPhoneResendResponse) Status() string + func (r AccountPhoneResendResponse) StatusCode() int + type AccountPhoneStartJSONRequestBody = PhoneStartInputBody + type AccountPhoneStartResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *PhoneStatusBody + func ParseAccountPhoneStartResponse(rsp *http.Response) (*AccountPhoneStartResponse, error) + func (r AccountPhoneStartResponse) ContentType() string + func (r AccountPhoneStartResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountPhoneStartResponse) GetBody() []byte + func (r AccountPhoneStartResponse) GetJSON200() *PhoneStatusBody + func (r AccountPhoneStartResponse) Status() string + func (r AccountPhoneStartResponse) StatusCode() int + type AccountPhoneVerifyJSONRequestBody = PhoneVerifyInputBody + type AccountPhoneVerifyResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *PhoneStatusBody + func ParseAccountPhoneVerifyResponse(rsp *http.Response) (*AccountPhoneVerifyResponse, error) + func (r AccountPhoneVerifyResponse) ContentType() string + func (r AccountPhoneVerifyResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountPhoneVerifyResponse) GetBody() []byte + func (r AccountPhoneVerifyResponse) GetJSON200() *PhoneStatusBody + func (r AccountPhoneVerifyResponse) Status() string + func (r AccountPhoneVerifyResponse) StatusCode() int + type AccountSupportAccessResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *SupportAccessOutputBody + func ParseAccountSupportAccessResponse(rsp *http.Response) (*AccountSupportAccessResponse, error) + func (r AccountSupportAccessResponse) ContentType() string + func (r AccountSupportAccessResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountSupportAccessResponse) GetBody() []byte + func (r AccountSupportAccessResponse) GetJSON200() *SupportAccessOutputBody + func (r AccountSupportAccessResponse) Status() string + func (r AccountSupportAccessResponse) StatusCode() int + type AccountTotpConfirmJSONRequestBody = CodeInputBody + type AccountTotpConfirmResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *RecoveryCodesOutputBody + func ParseAccountTotpConfirmResponse(rsp *http.Response) (*AccountTotpConfirmResponse, error) + func (r AccountTotpConfirmResponse) ContentType() string + func (r AccountTotpConfirmResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountTotpConfirmResponse) GetBody() []byte + func (r AccountTotpConfirmResponse) GetJSON200() *RecoveryCodesOutputBody + func (r AccountTotpConfirmResponse) Status() string + func (r AccountTotpConfirmResponse) StatusCode() int + type AccountTotpDisableJSONRequestBody = CodeInputBody + type AccountTotpDisableResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAccountTotpDisableResponse(rsp *http.Response) (*AccountTotpDisableResponse, error) + func (r AccountTotpDisableResponse) ContentType() string + func (r AccountTotpDisableResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountTotpDisableResponse) GetBody() []byte + func (r AccountTotpDisableResponse) Status() string + func (r AccountTotpDisableResponse) StatusCode() int + type AccountTotpRecoveryCodesJSONRequestBody = CodeInputBody + type AccountTotpRecoveryCodesResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *RecoveryCodesOutputBody + func ParseAccountTotpRecoveryCodesResponse(rsp *http.Response) (*AccountTotpRecoveryCodesResponse, error) + func (r AccountTotpRecoveryCodesResponse) ContentType() string + func (r AccountTotpRecoveryCodesResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountTotpRecoveryCodesResponse) GetBody() []byte + func (r AccountTotpRecoveryCodesResponse) GetJSON200() *RecoveryCodesOutputBody + func (r AccountTotpRecoveryCodesResponse) Status() string + func (r AccountTotpRecoveryCodesResponse) StatusCode() int + type AccountTotpSetupJSONRequestBody = TotpSetupInputBody + type AccountTotpSetupResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TotpSetupOutputBody + func ParseAccountTotpSetupResponse(rsp *http.Response) (*AccountTotpSetupResponse, error) + func (r AccountTotpSetupResponse) ContentType() string + func (r AccountTotpSetupResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountTotpSetupResponse) GetBody() []byte + func (r AccountTotpSetupResponse) GetJSON200() *TotpSetupOutputBody + func (r AccountTotpSetupResponse) Status() string + func (r AccountTotpSetupResponse) StatusCode() int + type AccountTotpStatusResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TotpStatusOutputBody + func ParseAccountTotpStatusResponse(rsp *http.Response) (*AccountTotpStatusResponse, error) + func (r AccountTotpStatusResponse) ContentType() string + func (r AccountTotpStatusResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountTotpStatusResponse) GetBody() []byte + func (r AccountTotpStatusResponse) GetJSON200() *TotpStatusOutputBody + func (r AccountTotpStatusResponse) Status() string + func (r AccountTotpStatusResponse) StatusCode() int + type AccountUpdateInputBody struct + Country *string + FirstName *string + LastName *string + Locale *AccountUpdateInputBodyLocale + Schema *string + Timezone *string + type AccountUpdateInputBodyLocale string + const AccountUpdateInputBodyLocaleEn + const AccountUpdateInputBodyLocaleTr + func (e AccountUpdateInputBodyLocale) Valid() bool + type AccountUpdateJSONRequestBody = AccountUpdateInputBody + type AccountUpdateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *UserBody + func ParseAccountUpdateResponse(rsp *http.Response) (*AccountUpdateResponse, error) + func (r AccountUpdateResponse) ContentType() string + func (r AccountUpdateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AccountUpdateResponse) GetBody() []byte + func (r AccountUpdateResponse) GetJSON200() *UserBody + func (r AccountUpdateResponse) Status() string + func (r AccountUpdateResponse) StatusCode() int + type ActionBody struct + CreatedAt time.Time + ErrorCode *string + FinishedAt *time.Time + Id string + Kind string + Schema *string + State ActionBodyState + type ActionBodyState string + const ActionBodyStateFailed + const ActionBodyStateQueued + const ActionBodyStateRunning + const ActionBodyStateSucceeded + func (e ActionBodyState) Valid() bool + type ActionInputBody struct + Kind ActionInputBodyKind + Schema *string + type ActionInputBodyKind string + const ActionInputBodyKindForceStop + const ActionInputBodyKindReboot + const ActionInputBodyKindStart + const ActionInputBodyKindStop + func (e ActionInputBodyKind) Valid() bool + type ActionUsage struct + RebuildLimit int64 + RebuildUsed int64 + ResizeLimit int64 + ResizeUsed int64 + type AlertBody struct + DurationMin int32 + Enabled bool + Firing bool + Metric string + Schema *string + ThresholdPct float32 + type AlertSaveInputBody struct + DurationMin int32 + Enabled bool + Metric AlertSaveInputBodyMetric + Schema *string + ThresholdPct float32 + type AlertSaveInputBodyMetric string + const AlertSaveInputBodyMetricCpu + const AlertSaveInputBodyMetricDisk + const AlertSaveInputBodyMetricMemory + const AlertSaveInputBodyMetricNetOut + const AlertSaveInputBodyMetricTraffic + func (e AlertSaveInputBodyMetric) Valid() bool + type AlertsListOutputBody struct + Alerts *[]AlertBody + Schema *string + type Announcement struct + AudienceOrganizationCount int32 + ContentHtml string + ContentJson interface{} + ContentText string + CreatedAt time.Time + CreatedBy *string + EmailFailedCount *int64 + EmailPendingCount *int64 + EmailRecipientCount int32 + EmailSentCount *int64 + ExpiresAt *time.Time + FailureReason *string + Id string + Importance string + PublishedAt *time.Time + PublishedBy *string + RecipientCount int32 + ScheduleVersion int32 + ScheduledAt *time.Time + Schema *string + SendEmail bool + ShowBanner bool + Status string + TargetFilter interface{} + Title string + UpdatedAt time.Time + UpdatedBy *string + type AnnouncementBannerDismissResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAnnouncementBannerDismissResponse(rsp *http.Response) (*AnnouncementBannerDismissResponse, error) + func (r AnnouncementBannerDismissResponse) ContentType() string + func (r AnnouncementBannerDismissResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AnnouncementBannerDismissResponse) GetBody() []byte + func (r AnnouncementBannerDismissResponse) Status() string + func (r AnnouncementBannerDismissResponse) StatusCode() int + type AnnouncementBannerGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AnnouncementBannerOutputBody + func ParseAnnouncementBannerGetResponse(rsp *http.Response) (*AnnouncementBannerGetResponse, error) + func (r AnnouncementBannerGetResponse) ContentType() string + func (r AnnouncementBannerGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AnnouncementBannerGetResponse) GetBody() []byte + func (r AnnouncementBannerGetResponse) GetJSON200() *AnnouncementBannerOutputBody + func (r AnnouncementBannerGetResponse) Status() string + func (r AnnouncementBannerGetResponse) StatusCode() int + type AnnouncementBannerOutputBody struct + Announcement *Announcement + Schema *string + type AnnouncementsGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *Announcement + func ParseAnnouncementsGetResponse(rsp *http.Response) (*AnnouncementsGetResponse, error) + func (r AnnouncementsGetResponse) ContentType() string + func (r AnnouncementsGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AnnouncementsGetResponse) GetBody() []byte + func (r AnnouncementsGetResponse) GetJSON200() *Announcement + func (r AnnouncementsGetResponse) Status() string + func (r AnnouncementsGetResponse) StatusCode() int + type AnnouncementsListOutputBody struct + Announcements *[]Announcement + Schema *string + UnreadCount int64 + type AnnouncementsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AnnouncementsListOutputBody + func ParseAnnouncementsListResponse(rsp *http.Response) (*AnnouncementsListResponse, error) + func (r AnnouncementsListResponse) ContentType() string + func (r AnnouncementsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AnnouncementsListResponse) GetBody() []byte + func (r AnnouncementsListResponse) GetJSON200() *AnnouncementsListOutputBody + func (r AnnouncementsListResponse) Status() string + func (r AnnouncementsListResponse) StatusCode() int + type ApiTokenBody struct + CreatedAt time.Time + ExpiresAt *time.Time + Id string + LastUsedAt *time.Time + LastUsedIp *string + Name string + OrganizationId string + OrganizationName string + Prefix string + Scopes *[]string + type ApiTokenCreateInputBody struct + ExpiresAt *time.Time + Name string + Password *string + Schema *string + Scopes *[]string + type ApiTokenCreateJSONRequestBody = ApiTokenCreateInputBody + type ApiTokenCreateOutputBody struct + Schema *string + Secret string + Token ApiTokenBody + type ApiTokenCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *ApiTokenCreateOutputBody + func ParseApiTokenCreateResponse(rsp *http.Response) (*ApiTokenCreateResponse, error) + func (r ApiTokenCreateResponse) ContentType() string + func (r ApiTokenCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ApiTokenCreateResponse) GetBody() []byte + func (r ApiTokenCreateResponse) GetJSON201() *ApiTokenCreateOutputBody + func (r ApiTokenCreateResponse) Status() string + func (r ApiTokenCreateResponse) StatusCode() int + type ApiTokenRevokeResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseApiTokenRevokeResponse(rsp *http.Response) (*ApiTokenRevokeResponse, error) + func (r ApiTokenRevokeResponse) ContentType() string + func (r ApiTokenRevokeResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ApiTokenRevokeResponse) GetBody() []byte + func (r ApiTokenRevokeResponse) Status() string + func (r ApiTokenRevokeResponse) StatusCode() int + type ApiTokensListOutputBody struct + Schema *string + Tokens *[]ApiTokenBody + type ApiTokensListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ApiTokensListOutputBody + func ParseApiTokensListResponse(rsp *http.Response) (*ApiTokensListResponse, error) + func (r ApiTokensListResponse) ContentType() string + func (r ApiTokensListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ApiTokensListResponse) GetBody() []byte + func (r ApiTokensListResponse) GetJSON200() *ApiTokensListOutputBody + func (r ApiTokensListResponse) Status() string + func (r ApiTokensListResponse) StatusCode() int + type AppActionInputBody struct + Action AppActionInputBodyAction + Schema *string + type AppActionInputBodyAction string + const AppActionInputBodyActionRestart + const AppActionInputBodyActionStart + const AppActionInputBodyActionStop + func (e AppActionInputBodyAction) Valid() bool + type AppActionJSONRequestBody = AppActionInputBody + type AppActionResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppBody + func ParseAppActionResponse(rsp *http.Response) (*AppActionResponse, error) + func (r AppActionResponse) ContentType() string + func (r AppActionResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppActionResponse) GetBody() []byte + func (r AppActionResponse) GetJSON200() *AppBody + func (r AppActionResponse) Status() string + func (r AppActionResponse) StatusCode() int + type AppAttachmentBody struct + CreatedAt time.Time + DatabaseCode string + DatabaseId string + DatabaseName string + DatabaseState string + Engine string + EngineVersion string + EnvPrefix string + Id string + ProbeCheckedAt *time.Time + ProbeEndpoint *string + ProbeError *string + ProbeState AppAttachmentBodyProbeState + State AppAttachmentBodyState + type AppAttachmentBodyProbeState string + const AppAttachmentBodyProbeStateEmpty + const AppAttachmentBodyProbeStateFailed + const AppAttachmentBodyProbeStatePassed + const AppAttachmentBodyProbeStateQueued + func (e AppAttachmentBodyProbeState) Valid() bool + type AppAttachmentBodyState string + const AppAttachmentBodyStateAttached + const AppAttachmentBodyStateAttaching + const AppAttachmentBodyStateDetaching + const AppAttachmentBodyStateError + func (e AppAttachmentBodyState) Valid() bool + type AppAttachmentCreateInputBody struct + DatabaseId string + EnvPrefix *string + Schema *string + type AppAttachmentCreateJSONRequestBody = AppAttachmentCreateInputBody + type AppAttachmentCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAppAttachmentCreateResponse(rsp *http.Response) (*AppAttachmentCreateResponse, error) + func (r AppAttachmentCreateResponse) ContentType() string + func (r AppAttachmentCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppAttachmentCreateResponse) GetBody() []byte + func (r AppAttachmentCreateResponse) Status() string + func (r AppAttachmentCreateResponse) StatusCode() int + type AppAttachmentDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAppAttachmentDeleteResponse(rsp *http.Response) (*AppAttachmentDeleteResponse, error) + func (r AppAttachmentDeleteResponse) ContentType() string + func (r AppAttachmentDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppAttachmentDeleteResponse) GetBody() []byte + func (r AppAttachmentDeleteResponse) Status() string + func (r AppAttachmentDeleteResponse) StatusCode() int + type AppAttachmentVerifyResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAppAttachmentVerifyResponse(rsp *http.Response) (*AppAttachmentVerifyResponse, error) + func (r AppAttachmentVerifyResponse) ContentType() string + func (r AppAttachmentVerifyResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppAttachmentVerifyResponse) GetBody() []byte + func (r AppAttachmentVerifyResponse) Status() string + func (r AppAttachmentVerifyResponse) StatusCode() int + type AppAttachmentsListOutputBody struct + Attachments *[]AppAttachmentBody + Schema *string + type AppAttachmentsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppAttachmentsListOutputBody + func ParseAppAttachmentsListResponse(rsp *http.Response) (*AppAttachmentsListResponse, error) + func (r AppAttachmentsListResponse) ContentType() string + func (r AppAttachmentsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppAttachmentsListResponse) GetBody() []byte + func (r AppAttachmentsListResponse) GetJSON200() *AppAttachmentsListOutputBody + func (r AppAttachmentsListResponse) Status() string + func (r AppAttachmentsListResponse) StatusCode() int + type AppAutoDeployInputBody struct + Enabled bool + Schema *string + type AppAutoDeploySetJSONRequestBody = AppAutoDeployInputBody + type AppAutoDeploySetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppBody + func ParseAppAutoDeploySetResponse(rsp *http.Response) (*AppAutoDeploySetResponse, error) + func (r AppAutoDeploySetResponse) ContentType() string + func (r AppAutoDeploySetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppAutoDeploySetResponse) GetBody() []byte + func (r AppAutoDeploySetResponse) GetJSON200() *AppBody + func (r AppAutoDeploySetResponse) Status() string + func (r AppAutoDeploySetResponse) StatusCode() int + type AppBody struct + AutoDeploy bool + BuildCommand *string + Builder *AppBodyBuilder + ChargeCurrency *string + Code string + ContextDir *string + CpuMillis int32 + CreatedAt time.Time + Currency *string + DesiredState string + DockerfilePath *string + ExtraReplicaHourlyMinor int64 + GitConnectionId *string + GitRef *string + HealthPath *string + Image string + InstallCommand *string + LastDeployAt *time.Time + LastDeployRef *string + MemoryMb int32 + Message *string + MonthlyChargeMinor int64 + MonthlyPriceMinor int64 + Name string + ObservedAt *time.Time + ObservedState *string + OutputDir *string + PaidThrough *time.Time + Plan *string + PlanMaxReplicas int32 + Port int32 + Preset *string + ProjectId *string + ReplicasDesired int32 + ReplicasMax int32 + ReplicasMin int32 + Runtime string + Schema *string + SourceUrl *string + StartCommand *string + Tags *[]string + TrafficGb int32 + TrafficOverageCurrency *string + TrafficOverageTbMinor int64 + TrafficUsedBytes *int64 + Url *string + UsageCpuBp *int64 + UsageMemBytes *int64 + type AppBodyBuilder string + const AppBodyBuilderDockerfile + const AppBodyBuilderPreset + func (e AppBodyBuilder) Valid() bool + type AppBuildCancelResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *BuildBody + func ParseAppBuildCancelResponse(rsp *http.Response) (*AppBuildCancelResponse, error) + func (r AppBuildCancelResponse) ContentType() string + func (r AppBuildCancelResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppBuildCancelResponse) GetBody() []byte + func (r AppBuildCancelResponse) GetJSON200() *BuildBody + func (r AppBuildCancelResponse) Status() string + func (r AppBuildCancelResponse) StatusCode() int + type AppBuildCreateJSONRequestBody = BuildCreateInputBody + type AppBuildCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *BuildBody + func ParseAppBuildCreateResponse(rsp *http.Response) (*AppBuildCreateResponse, error) + func (r AppBuildCreateResponse) ContentType() string + func (r AppBuildCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppBuildCreateResponse) GetBody() []byte + func (r AppBuildCreateResponse) GetJSON202() *BuildBody + func (r AppBuildCreateResponse) Status() string + func (r AppBuildCreateResponse) StatusCode() int + type AppBuildGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *BuildBody + func ParseAppBuildGetResponse(rsp *http.Response) (*AppBuildGetResponse, error) + func (r AppBuildGetResponse) ContentType() string + func (r AppBuildGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppBuildGetResponse) GetBody() []byte + func (r AppBuildGetResponse) GetJSON200() *BuildBody + func (r AppBuildGetResponse) Status() string + func (r AppBuildGetResponse) StatusCode() int + type AppBuildsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *BuildListOutputBody + func ParseAppBuildsListResponse(rsp *http.Response) (*AppBuildsListResponse, error) + func (r AppBuildsListResponse) ContentType() string + func (r AppBuildsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppBuildsListResponse) GetBody() []byte + func (r AppBuildsListResponse) GetJSON200() *BuildListOutputBody + func (r AppBuildsListResponse) Status() string + func (r AppBuildsListResponse) StatusCode() int + type AppCreateInputBody struct + BuildCommand *string + Builder *AppCreateInputBodyBuilder + ContextDir *string + DockerfilePath *string + Env *[]EnvVarBody + GitConnectionId *string + GitRef *string + HealthPath *string + Image *string + InstallCommand *string + Name string + OutputDir *string + Plan string + Port *int32 + Preset *string + ProjectId *string + Region *string + Runtime *AppCreateInputBodyRuntime + Schema *string + SourceUrl *string + StartCommand *string + Tags *[]string + type AppCreateInputBodyBuilder string + const AppCreateInputBodyBuilderDockerfile + const AppCreateInputBodyBuilderPreset + func (e AppCreateInputBodyBuilder) Valid() bool + type AppCreateInputBodyRuntime string + const Kata + const Runc + const Runsc + func (e AppCreateInputBodyRuntime) Valid() bool + type AppCreateJSONRequestBody = AppCreateInputBody + type AppCreateParams struct + IdempotencyKey *string + type AppCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *AppBody + func ParseAppCreateResponse(rsp *http.Response) (*AppCreateResponse, error) + func (r AppCreateResponse) ContentType() string + func (r AppCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppCreateResponse) GetBody() []byte + func (r AppCreateResponse) GetJSON201() *AppBody + func (r AppCreateResponse) Status() string + func (r AppCreateResponse) StatusCode() int + type AppDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAppDeleteResponse(rsp *http.Response) (*AppDeleteResponse, error) + func (r AppDeleteResponse) ContentType() string + func (r AppDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppDeleteResponse) GetBody() []byte + func (r AppDeleteResponse) Status() string + func (r AppDeleteResponse) StatusCode() int + type AppDetectBuildParams struct + ConnectionId *string + Dir *string + Ref *string + Repo *string + SourceUrl *string + type AppDetectBuildResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppDetectOutputBody + func ParseAppDetectBuildResponse(rsp *http.Response) (*AppDetectBuildResponse, error) + func (r AppDetectBuildResponse) ContentType() string + func (r AppDetectBuildResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppDetectBuildResponse) GetBody() []byte + func (r AppDetectBuildResponse) GetJSON200() *AppDetectOutputBody + func (r AppDetectBuildResponse) Status() string + func (r AppDetectBuildResponse) StatusCode() int + type AppDetectOutputBody struct + Builder AppDetectOutputBodyBuilder + Code AppDetectOutputBodyCode + Found bool + Port *int32 + Preset *string + Reason string + Schema *string + StartRequired bool + type AppDetectOutputBodyBuilder string + const AppDetectOutputBodyBuilderDockerfile + const AppDetectOutputBodyBuilderPreset + func (e AppDetectOutputBodyBuilder) Valid() bool + type AppDetectOutputBodyCode string + const AppDetectOutputBodyCodeDockerfile + const AppDetectOutputBodyCodeGuessed + const AppDetectOutputBodyCodeHostNotAllowed + const AppDetectOutputBodyCodeNoRepo + const AppDetectOutputBodyCodeNone + const AppDetectOutputBodyCodeNotARepo + const AppDetectOutputBodyCodePreset + const AppDetectOutputBodyCodeUnreadable + const AppDetectOutputBodyCodeUnreadablePublic + func (e AppDetectOutputBodyCode) Valid() bool + type AppDomainAddInputBody struct + Hostname string + Schema *string + type AppDomainAddJSONRequestBody = AppDomainAddInputBody + type AppDomainAddResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *AppDomainBody + func ParseAppDomainAddResponse(rsp *http.Response) (*AppDomainAddResponse, error) + func (r AppDomainAddResponse) ContentType() string + func (r AppDomainAddResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppDomainAddResponse) GetBody() []byte + func (r AppDomainAddResponse) GetJSON201() *AppDomainBody + func (r AppDomainAddResponse) Status() string + func (r AppDomainAddResponse) StatusCode() int + type AppDomainBody struct + ChallengeName string + ChallengeValue string + CheckedAt *time.Time + CnameTarget string + CreatedAt time.Time + Hostname string + Id string + LastError *string + Schema *string + State string + VerifiedAt *time.Time + type AppDomainDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAppDomainDeleteResponse(rsp *http.Response) (*AppDomainDeleteResponse, error) + func (r AppDomainDeleteResponse) ContentType() string + func (r AppDomainDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppDomainDeleteResponse) GetBody() []byte + func (r AppDomainDeleteResponse) Status() string + func (r AppDomainDeleteResponse) StatusCode() int + type AppDomainVerifyResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppDomainBody + func ParseAppDomainVerifyResponse(rsp *http.Response) (*AppDomainVerifyResponse, error) + func (r AppDomainVerifyResponse) ContentType() string + func (r AppDomainVerifyResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppDomainVerifyResponse) GetBody() []byte + func (r AppDomainVerifyResponse) GetJSON200() *AppDomainBody + func (r AppDomainVerifyResponse) Status() string + func (r AppDomainVerifyResponse) StatusCode() int + type AppDomainsListOutputBody struct + Domains *[]AppDomainBody + Schema *string + type AppDomainsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppDomainsListOutputBody + func ParseAppDomainsListResponse(rsp *http.Response) (*AppDomainsListResponse, error) + func (r AppDomainsListResponse) ContentType() string + func (r AppDomainsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppDomainsListResponse) GetBody() []byte + func (r AppDomainsListResponse) GetJSON200() *AppDomainsListOutputBody + func (r AppDomainsListResponse) Status() string + func (r AppDomainsListResponse) StatusCode() int + type AppEnvGetOutputBody struct + Schema *string + Vars *[]EnvVarBody + type AppEnvGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppEnvGetOutputBody + func ParseAppEnvGetResponse(rsp *http.Response) (*AppEnvGetResponse, error) + func (r AppEnvGetResponse) ContentType() string + func (r AppEnvGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppEnvGetResponse) GetBody() []byte + func (r AppEnvGetResponse) GetJSON200() *AppEnvGetOutputBody + func (r AppEnvGetResponse) Status() string + func (r AppEnvGetResponse) StatusCode() int + type AppEnvSetInputBody struct + Schema *string + Vars *[]EnvVarBody + type AppEnvSetJSONRequestBody = AppEnvSetInputBody + type AppEnvSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAppEnvSetResponse(rsp *http.Response) (*AppEnvSetResponse, error) + func (r AppEnvSetResponse) ContentType() string + func (r AppEnvSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppEnvSetResponse) GetBody() []byte + func (r AppEnvSetResponse) Status() string + func (r AppEnvSetResponse) StatusCode() int + type AppEventsListParams struct + AfterId *int64 + type AppEventsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppEventsOutputBody + func ParseAppEventsListResponse(rsp *http.Response) (*AppEventsListResponse, error) + func (r AppEventsListResponse) ContentType() string + func (r AppEventsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppEventsListResponse) GetBody() []byte + func (r AppEventsListResponse) GetJSON200() *AppEventsOutputBody + func (r AppEventsListResponse) Status() string + func (r AppEventsListResponse) StatusCode() int + type AppEventsOutputBody struct + Events *[]EventBody + Schema *string + type AppExecStartJSONRequestBody = ExecStartInputBody + type AppExecStartResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *ExecStartOutputBody + func ParseAppExecStartResponse(rsp *http.Response) (*AppExecStartResponse, error) + func (r AppExecStartResponse) ContentType() string + func (r AppExecStartResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppExecStartResponse) GetBody() []byte + func (r AppExecStartResponse) GetJSON201() *ExecStartOutputBody + func (r AppExecStartResponse) Status() string + func (r AppExecStartResponse) StatusCode() int + type AppGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppBody + func ParseAppGetResponse(rsp *http.Response) (*AppGetResponse, error) + func (r AppGetResponse) ContentType() string + func (r AppGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppGetResponse) GetBody() []byte + func (r AppGetResponse) GetJSON200() *AppBody + func (r AppGetResponse) Status() string + func (r AppGetResponse) StatusCode() int + type AppLogsGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *LogRequestBody + func ParseAppLogsGetResponse(rsp *http.Response) (*AppLogsGetResponse, error) + func (r AppLogsGetResponse) ContentType() string + func (r AppLogsGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppLogsGetResponse) GetBody() []byte + func (r AppLogsGetResponse) GetJSON200() *LogRequestBody + func (r AppLogsGetResponse) Status() string + func (r AppLogsGetResponse) StatusCode() int + type AppLogsRequestJSONRequestBody = LogRequestInputBody + type AppLogsRequestResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *LogRequestBody + func ParseAppLogsRequestResponse(rsp *http.Response) (*AppLogsRequestResponse, error) + func (r AppLogsRequestResponse) ContentType() string + func (r AppLogsRequestResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppLogsRequestResponse) GetBody() []byte + func (r AppLogsRequestResponse) GetJSON202() *LogRequestBody + func (r AppLogsRequestResponse) Status() string + func (r AppLogsRequestResponse) StatusCode() int + type AppMetricHourBody struct + CpuBpAvg int64 + CpuBpMax int64 + Hour time.Time + MemBytesAvg int64 + MemBytesMax int64 + MemLimitBytes int64 + NetRxBpsAvg int64 + NetRxBpsMax int64 + NetTxBpsAvg int64 + NetTxBpsMax int64 + Samples int32 + type AppMetricSampleBody struct + At time.Time + CpuBp int64 + MemBytes int64 + MemLimitBytes int64 + NetRxBps int64 + NetTxBps int64 + type AppMetricsOutputBody struct + Hourly *[]AppMetricHourBody + Samples *[]AppMetricSampleBody + Schema *string + type AppMetricsParams struct + Range *AppMetricsParamsRange + type AppMetricsParamsRange string + const N1h + const N24h + const N7d + func (e AppMetricsParamsRange) Valid() bool + type AppMetricsResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppMetricsOutputBody + func ParseAppMetricsResponse(rsp *http.Response) (*AppMetricsResponse, error) + func (r AppMetricsResponse) ContentType() string + func (r AppMetricsResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppMetricsResponse) GetBody() []byte + func (r AppMetricsResponse) GetJSON200() *AppMetricsOutputBody + func (r AppMetricsResponse) Status() string + func (r AppMetricsResponse) StatusCode() int + type AppPlanBody struct + CpuMillis int32 + Currency string + MaxReplicas int32 + MemoryMb int32 + MonthlyPriceMinor int64 + Name string + Slug string + UsdMonthlyPriceMinor int64 + type AppPlansListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppPlansOutputBody + func ParseAppPlansListResponse(rsp *http.Response) (*AppPlansListResponse, error) + func (r AppPlansListResponse) ContentType() string + func (r AppPlansListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppPlansListResponse) GetBody() []byte + func (r AppPlansListResponse) GetJSON200() *AppPlansOutputBody + func (r AppPlansListResponse) Status() string + func (r AppPlansListResponse) StatusCode() int + type AppPlansOutputBody struct + Plans *[]AppPlanBody + Schema *string + type AppPresetBody struct + DefaultOutputDir *string + DefaultPort int32 + Name string + Slug string + StartRequired bool + UsesOutputDir bool + type AppPresetsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppPresetsOutputBody + func ParseAppPresetsListResponse(rsp *http.Response) (*AppPresetsListResponse, error) + func (r AppPresetsListResponse) ContentType() string + func (r AppPresetsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppPresetsListResponse) GetBody() []byte + func (r AppPresetsListResponse) GetJSON200() *AppPresetsOutputBody + func (r AppPresetsListResponse) Status() string + func (r AppPresetsListResponse) StatusCode() int + type AppPresetsOutputBody struct + Presets *[]AppPresetBody + Schema *string + type AppProjectSetJSONRequestBody = ProjectAssignmentBody + type AppProjectSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAppProjectSetResponse(rsp *http.Response) (*AppProjectSetResponse, error) + func (r AppProjectSetResponse) ContentType() string + func (r AppProjectSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppProjectSetResponse) GetBody() []byte + func (r AppProjectSetResponse) Status() string + func (r AppProjectSetResponse) StatusCode() int + type AppReleasesListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ReleaseListOutputBody + func ParseAppReleasesListResponse(rsp *http.Response) (*AppReleasesListResponse, error) + func (r AppReleasesListResponse) ContentType() string + func (r AppReleasesListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppReleasesListResponse) GetBody() []byte + func (r AppReleasesListResponse) GetJSON200() *ReleaseListOutputBody + func (r AppReleasesListResponse) Status() string + func (r AppReleasesListResponse) StatusCode() int + type AppResizeInputBody struct + Plan string + Schema *string + type AppResizeJSONRequestBody = AppResizeInputBody + type AppResizeResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppBody + func ParseAppResizeResponse(rsp *http.Response) (*AppResizeResponse, error) + func (r AppResizeResponse) ContentType() string + func (r AppResizeResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppResizeResponse) GetBody() []byte + func (r AppResizeResponse) GetJSON200() *AppBody + func (r AppResizeResponse) Status() string + func (r AppResizeResponse) StatusCode() int + type AppRetryOutputBody struct + Action ActionBody + Schema *string + type AppRollbackInputBody struct + Release int32 + Schema *string + type AppRollbackJSONRequestBody = AppRollbackInputBody + type AppRollbackResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppBody + func ParseAppRollbackResponse(rsp *http.Response) (*AppRollbackResponse, error) + func (r AppRollbackResponse) ContentType() string + func (r AppRollbackResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppRollbackResponse) GetBody() []byte + func (r AppRollbackResponse) GetJSON200() *AppBody + func (r AppRollbackResponse) Status() string + func (r AppRollbackResponse) StatusCode() int + type AppScaleInputBody struct + ReplicasMax int32 + ReplicasMin int32 + Schema *string + type AppScaleJSONRequestBody = AppScaleInputBody + type AppScaleResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppBody + func ParseAppScaleResponse(rsp *http.Response) (*AppScaleResponse, error) + func (r AppScaleResponse) ContentType() string + func (r AppScaleResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppScaleResponse) GetBody() []byte + func (r AppScaleResponse) GetJSON200() *AppBody + func (r AppScaleResponse) Status() string + func (r AppScaleResponse) StatusCode() int + type AppSourceInputBody struct + BuildCommand *string + Builder *AppSourceInputBodyBuilder + ContextDir *string + DockerfilePath *string + GitConnectionId *string + GitRef *string + InstallCommand *string + OutputDir *string + Preset *string + Schema *string + SourceUrl string + type AppSourceInputBodyBuilder string + const AppSourceInputBodyBuilderDockerfile + const AppSourceInputBodyBuilderPreset + func (e AppSourceInputBodyBuilder) Valid() bool + type AppSourceSetJSONRequestBody = AppSourceInputBody + type AppSourceSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppBody + func ParseAppSourceSetResponse(rsp *http.Response) (*AppSourceSetResponse, error) + func (r AppSourceSetResponse) ContentType() string + func (r AppSourceSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppSourceSetResponse) GetBody() []byte + func (r AppSourceSetResponse) GetJSON200() *AppBody + func (r AppSourceSetResponse) Status() string + func (r AppSourceSetResponse) StatusCode() int + type AppTagsSetJSONRequestBody = TagsBody + type AppTagsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TagsBody + func ParseAppTagsSetResponse(rsp *http.Response) (*AppTagsSetResponse, error) + func (r AppTagsSetResponse) ContentType() string + func (r AppTagsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppTagsSetResponse) GetBody() []byte + func (r AppTagsSetResponse) GetJSON200() *TagsBody + func (r AppTagsSetResponse) Status() string + func (r AppTagsSetResponse) StatusCode() int + type AppUpdateInputBody struct + HealthPath *string + Name string + Port int32 + Schema *string + StartCommand *string + type AppUpdateJSONRequestBody = AppUpdateInputBody + type AppUpdateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppBody + func ParseAppUpdateResponse(rsp *http.Response) (*AppUpdateResponse, error) + func (r AppUpdateResponse) ContentType() string + func (r AppUpdateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppUpdateResponse) GetBody() []byte + func (r AppUpdateResponse) GetJSON200() *AppBody + func (r AppUpdateResponse) Status() string + func (r AppUpdateResponse) StatusCode() int + type AppsListOutputBody struct + Apps *[]AppBody + Schema *string + Summary AppsListSummary + Total int64 + type AppsListParams struct + Limit *int32 + Offset *int32 + Project *string + Tag *[]string + type AppsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AppsListOutputBody + func ParseAppsListResponse(rsp *http.Response) (*AppsListResponse, error) + func (r AppsListResponse) ContentType() string + func (r AppsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AppsListResponse) GetBody() []byte + func (r AppsListResponse) GetJSON200() *AppsListOutputBody + func (r AppsListResponse) Status() string + func (r AppsListResponse) StatusCode() int + type AppsListSummary struct + ChargeCurrency string + MonthlyChargeMinor int64 + Running int64 + Total int64 + type AuthConfirmEmailChangeJSONRequestBody = EmailChangeConfirmInputBody + type AuthConfirmEmailChangeResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *EmailChangeConfirmOutputBody + func ParseAuthConfirmEmailChangeResponse(rsp *http.Response) (*AuthConfirmEmailChangeResponse, error) + func (r AuthConfirmEmailChangeResponse) ContentType() string + func (r AuthConfirmEmailChangeResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthConfirmEmailChangeResponse) GetBody() []byte + func (r AuthConfirmEmailChangeResponse) GetJSON200() *EmailChangeConfirmOutputBody + func (r AuthConfirmEmailChangeResponse) Status() string + func (r AuthConfirmEmailChangeResponse) StatusCode() int + type AuthImpersonateJSONRequestBody = ImpersonateInputBody + type AuthImpersonateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers200 *AuthImpersonateResponse200Headers + JSON200 *ImpersonateOutputBody + func ParseAuthImpersonateResponse(rsp *http.Response) (*AuthImpersonateResponse, error) + func (r AuthImpersonateResponse) ContentType() string + func (r AuthImpersonateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthImpersonateResponse) GetBody() []byte + func (r AuthImpersonateResponse) GetJSON200() *ImpersonateOutputBody + func (r AuthImpersonateResponse) Status() string + func (r AuthImpersonateResponse) StatusCode() int + type AuthImpersonateResponse200Headers struct + SetCookie *string + type AuthLoginJSONRequestBody = LoginInputBody + type AuthLoginResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers200 *AuthLoginResponse200Headers + JSON200 *LoginResponse + func ParseAuthLoginResponse(rsp *http.Response) (*AuthLoginResponse, error) + func (r AuthLoginResponse) ContentType() string + func (r AuthLoginResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthLoginResponse) GetBody() []byte + func (r AuthLoginResponse) GetJSON200() *LoginResponse + func (r AuthLoginResponse) Status() string + func (r AuthLoginResponse) StatusCode() int + type AuthLoginResponse200Headers struct + SetCookie *string + type AuthLogoutResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers204 *AuthLogoutResponse204Headers + func ParseAuthLogoutResponse(rsp *http.Response) (*AuthLogoutResponse, error) + func (r AuthLogoutResponse) ContentType() string + func (r AuthLogoutResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthLogoutResponse) GetBody() []byte + func (r AuthLogoutResponse) Status() string + func (r AuthLogoutResponse) StatusCode() int + type AuthLogoutResponse204Headers struct + SetCookie *string + type AuthMfaVerifyJSONRequestBody = MfaVerifyInputBody + type AuthMfaVerifyParams struct + CpMfa *Cookie + type AuthMfaVerifyResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers200 *AuthMfaVerifyResponse200Headers + JSON200 *LoginResponse + func ParseAuthMfaVerifyResponse(rsp *http.Response) (*AuthMfaVerifyResponse, error) + func (r AuthMfaVerifyResponse) ContentType() string + func (r AuthMfaVerifyResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthMfaVerifyResponse) GetBody() []byte + func (r AuthMfaVerifyResponse) GetJSON200() *LoginResponse + func (r AuthMfaVerifyResponse) Status() string + func (r AuthMfaVerifyResponse) StatusCode() int + type AuthMfaVerifyResponse200Headers struct + SetCookie *string + type AuthOauthCallbackParams struct + Code *string + CpOauth *Cookie + Error *string + State *string + type AuthOauthCallbackParamsProvider string + const AuthOauthCallbackParamsProviderGithub + const AuthOauthCallbackParamsProviderGoogle + func (e AuthOauthCallbackParamsProvider) Valid() bool + type AuthOauthCallbackResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers302 *AuthOauthCallbackResponse302Headers + func ParseAuthOauthCallbackResponse(rsp *http.Response) (*AuthOauthCallbackResponse, error) + func (r AuthOauthCallbackResponse) ContentType() string + func (r AuthOauthCallbackResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthOauthCallbackResponse) GetBody() []byte + func (r AuthOauthCallbackResponse) Status() string + func (r AuthOauthCallbackResponse) StatusCode() int + type AuthOauthCallbackResponse302Headers struct + Location *string + SetCookie *string + type AuthOauthProvidersResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ProvidersOutputBody + func ParseAuthOauthProvidersResponse(rsp *http.Response) (*AuthOauthProvidersResponse, error) + func (r AuthOauthProvidersResponse) ContentType() string + func (r AuthOauthProvidersResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthOauthProvidersResponse) GetBody() []byte + func (r AuthOauthProvidersResponse) GetJSON200() *ProvidersOutputBody + func (r AuthOauthProvidersResponse) Status() string + func (r AuthOauthProvidersResponse) StatusCode() int + type AuthOauthStartParams struct + KvkkConsent *bool + Locale *AuthOauthStartParamsLocale + Mode *AuthOauthStartParamsMode + type AuthOauthStartParamsLocale string + const AuthOauthStartParamsLocaleEn + const AuthOauthStartParamsLocaleTr + func (e AuthOauthStartParamsLocale) Valid() bool + type AuthOauthStartParamsMode string + const Link + const Login + func (e AuthOauthStartParamsMode) Valid() bool + type AuthOauthStartParamsProvider string + const AuthOauthStartParamsProviderGithub + const AuthOauthStartParamsProviderGoogle + func (e AuthOauthStartParamsProvider) Valid() bool + type AuthOauthStartResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers302 *AuthOauthStartResponse302Headers + func ParseAuthOauthStartResponse(rsp *http.Response) (*AuthOauthStartResponse, error) + func (r AuthOauthStartResponse) ContentType() string + func (r AuthOauthStartResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthOauthStartResponse) GetBody() []byte + func (r AuthOauthStartResponse) Status() string + func (r AuthOauthStartResponse) StatusCode() int + type AuthOauthStartResponse302Headers struct + Location *string + SetCookie *string + type AuthPasswordResetJSONRequestBody = ResetInputBody + type AuthPasswordResetRequestJSONRequestBody = ResetRequestInputBody + type AuthPasswordResetRequestResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAuthPasswordResetRequestResponse(rsp *http.Response) (*AuthPasswordResetRequestResponse, error) + func (r AuthPasswordResetRequestResponse) ContentType() string + func (r AuthPasswordResetRequestResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthPasswordResetRequestResponse) GetBody() []byte + func (r AuthPasswordResetRequestResponse) Status() string + func (r AuthPasswordResetRequestResponse) StatusCode() int + type AuthPasswordResetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAuthPasswordResetResponse(rsp *http.Response) (*AuthPasswordResetResponse, error) + func (r AuthPasswordResetResponse) ContentType() string + func (r AuthPasswordResetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthPasswordResetResponse) GetBody() []byte + func (r AuthPasswordResetResponse) Status() string + func (r AuthPasswordResetResponse) StatusCode() int + type AuthPolicyBody struct + EmailVerificationRequired bool + PhoneVerificationRequired bool + Schema *string + type AuthPolicyResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AuthPolicyBody + func ParseAuthPolicyResponse(rsp *http.Response) (*AuthPolicyResponse, error) + func (r AuthPolicyResponse) ContentType() string + func (r AuthPolicyResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthPolicyResponse) GetBody() []byte + func (r AuthPolicyResponse) GetJSON200() *AuthPolicyBody + func (r AuthPolicyResponse) Status() string + func (r AuthPolicyResponse) StatusCode() int + type AuthRegisterJSONRequestBody = RegisterInputBody + type AuthRegisterResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAuthRegisterResponse(rsp *http.Response) (*AuthRegisterResponse, error) + func (r AuthRegisterResponse) ContentType() string + func (r AuthRegisterResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthRegisterResponse) GetBody() []byte + func (r AuthRegisterResponse) Status() string + func (r AuthRegisterResponse) StatusCode() int + type AuthSessionRevokeResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAuthSessionRevokeResponse(rsp *http.Response) (*AuthSessionRevokeResponse, error) + func (r AuthSessionRevokeResponse) ContentType() string + func (r AuthSessionRevokeResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthSessionRevokeResponse) GetBody() []byte + func (r AuthSessionRevokeResponse) Status() string + func (r AuthSessionRevokeResponse) StatusCode() int + type AuthSessionsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *SessionsOutputBody + func ParseAuthSessionsListResponse(rsp *http.Response) (*AuthSessionsListResponse, error) + func (r AuthSessionsListResponse) ContentType() string + func (r AuthSessionsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthSessionsListResponse) GetBody() []byte + func (r AuthSessionsListResponse) GetJSON200() *SessionsOutputBody + func (r AuthSessionsListResponse) Status() string + func (r AuthSessionsListResponse) StatusCode() int + type AuthVerifyEmailJSONRequestBody = VerifyInputBody + type AuthVerifyEmailResendJSONRequestBody = ResendInputBody + type AuthVerifyEmailResendResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAuthVerifyEmailResendResponse(rsp *http.Response) (*AuthVerifyEmailResendResponse, error) + func (r AuthVerifyEmailResendResponse) ContentType() string + func (r AuthVerifyEmailResendResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthVerifyEmailResendResponse) GetBody() []byte + func (r AuthVerifyEmailResendResponse) Status() string + func (r AuthVerifyEmailResendResponse) StatusCode() int + type AuthVerifyEmailResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseAuthVerifyEmailResponse(rsp *http.Response) (*AuthVerifyEmailResponse, error) + func (r AuthVerifyEmailResponse) ContentType() string + func (r AuthVerifyEmailResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r AuthVerifyEmailResponse) GetBody() []byte + func (r AuthVerifyEmailResponse) Status() string + func (r AuthVerifyEmailResponse) StatusCode() int + type BackupAllBody struct + CreatedAt time.Time + DiskGb int64 + Id string + Name string + RegionName string + RegionSlug string + ServerDeleted bool + ServerId string + ServerName string + SizeGb int64 + type BackupBody struct + CreatedAt time.Time + Id string + Name string + Schema *string + SizeGb int64 + Source string + State string + type BackupCreateInputBody struct + Name string + Schema *string + type BackupListAllOutputBody struct + Backups *[]BackupAllBody + Schema *string + Total int64 + type BackupListOutputBody struct + Backups *[]BackupBody + Schema *string + type BackupSettingsBody struct + AutoEnabled bool + Schema *string + type BackupSettingsUpdateInputBody struct + AutoEnabled bool + Schema *string + type BuildBody struct + BuildArgs *map[string]string + CancelRequestedAt *time.Time + CommitAuthor *string + CommitMessage *string + CommitSha *string + ContextDir *string + CreatedAt time.Time + Deployable bool + Dockerfile *string + DockerfilePath *string + Error *string + FinishedAt *time.Time + GitRef string + Id string + ImageRef *string + Log *string + Schema *string + SourceUrl string + StartedAt *time.Time + State BuildBodyState + Trigger *BuildBodyTrigger + type BuildBodyState string + const BuildBodyStateBuilding + const BuildBodyStateCanceled + const BuildBodyStateFailed + const BuildBodyStateQueued + const BuildBodyStateSucceeded + func (e BuildBodyState) Valid() bool + type BuildBodyTrigger string + const BuildBodyTriggerCreate + const BuildBodyTriggerManual + const BuildBodyTriggerPush + const BuildBodyTriggerPushCoalesced + func (e BuildBodyTrigger) Valid() bool + type BuildCreateInputBody struct + GitRef *string + Schema *string + SourceUrl *string + type BuildListOutputBody struct + Builds *[]BuildBody + Schema *string + type Client struct + Client HttpRequestDoer + RequestEditors []RequestEditorFn + Server string + func NewClient(server string, opts ...ClientOption) (*Client, error) + func (c *Client) AccountBillingProfileGet(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountBillingProfileSave(ctx context.Context, body AccountBillingProfileSaveJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountBillingProfileSaveWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountChangePassword(ctx context.Context, body AccountChangePasswordJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountChangePasswordWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountDeletionCancel(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountDeletionGet(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountDeletionRequest(ctx context.Context, body AccountDeletionRequestJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountDeletionRequestWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountEmailChangeStart(ctx context.Context, body AccountEmailChangeStartJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountEmailChangeStartWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountExport(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountFeatures(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountGet(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountIdentitiesList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountIdentityUnlink(ctx context.Context, provider AccountIdentityUnlinkParamsProvider, ...) (*http.Response, error) + func (c *Client) AccountLimits(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountPhoneDelete(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountPhoneGet(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountPhoneResend(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountPhoneStart(ctx context.Context, body AccountPhoneStartJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountPhoneStartWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountPhoneVerify(ctx context.Context, body AccountPhoneVerifyJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountPhoneVerifyWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountSupportAccess(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountTotpConfirm(ctx context.Context, body AccountTotpConfirmJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountTotpConfirmWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountTotpDisable(ctx context.Context, body AccountTotpDisableJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountTotpDisableWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountTotpRecoveryCodes(ctx context.Context, body AccountTotpRecoveryCodesJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountTotpRecoveryCodesWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountTotpSetup(ctx context.Context, body AccountTotpSetupJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountTotpSetupWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AccountTotpStatus(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AccountUpdate(ctx context.Context, body AccountUpdateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AccountUpdateWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AnnouncementBannerDismiss(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AnnouncementBannerGet(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AnnouncementsGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AnnouncementsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ApiTokenCreate(ctx context.Context, body ApiTokenCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ApiTokenCreateWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ApiTokenRevoke(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ApiTokensList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppAction(ctx context.Context, code string, body AppActionJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppActionWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppAttachmentCreate(ctx context.Context, appCode string, body AppAttachmentCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppAttachmentCreateWithBody(ctx context.Context, appCode string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppAttachmentDelete(ctx context.Context, appCode string, attachmentID string, ...) (*http.Response, error) + func (c *Client) AppAttachmentVerify(ctx context.Context, appCode string, attachmentID string, ...) (*http.Response, error) + func (c *Client) AppAttachmentsList(ctx context.Context, appCode string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppAutoDeploySet(ctx context.Context, code string, body AppAutoDeploySetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppAutoDeploySetWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppBuildCancel(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppBuildCreate(ctx context.Context, code string, body AppBuildCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppBuildCreateWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppBuildGet(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppBuildsList(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppCreate(ctx context.Context, params *AppCreateParams, body AppCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppCreateWithBody(ctx context.Context, params *AppCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) AppDelete(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppDetectBuild(ctx context.Context, params *AppDetectBuildParams, ...) (*http.Response, error) + func (c *Client) AppDomainAdd(ctx context.Context, code string, body AppDomainAddJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppDomainAddWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppDomainDelete(ctx context.Context, code string, domainID string, ...) (*http.Response, error) + func (c *Client) AppDomainVerify(ctx context.Context, code string, domainID string, ...) (*http.Response, error) + func (c *Client) AppDomainsList(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppEnvGet(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppEnvSet(ctx context.Context, code string, body AppEnvSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppEnvSetWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppEventsList(ctx context.Context, code string, params *AppEventsListParams, ...) (*http.Response, error) + func (c *Client) AppExecStart(ctx context.Context, code string, body AppExecStartJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppExecStartWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppGet(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppLogsGet(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppLogsRequest(ctx context.Context, code string, body AppLogsRequestJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppLogsRequestWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppMetrics(ctx context.Context, code string, params *AppMetricsParams, ...) (*http.Response, error) + func (c *Client) AppPlansList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppPresetsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppProjectSet(ctx context.Context, code string, body AppProjectSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppProjectSetWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppReleasesList(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AppResize(ctx context.Context, code string, body AppResizeJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppResizeWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppRollback(ctx context.Context, code string, body AppRollbackJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppRollbackWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppScale(ctx context.Context, code string, body AppScaleJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppScaleWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppSourceSet(ctx context.Context, code string, body AppSourceSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppSourceSetWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppTagsSet(ctx context.Context, code string, body AppTagsSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppTagsSetWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppUpdate(ctx context.Context, code string, body AppUpdateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AppUpdateWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AppsList(ctx context.Context, params *AppsListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AuthConfirmEmailChange(ctx context.Context, body AuthConfirmEmailChangeJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AuthConfirmEmailChangeWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AuthImpersonate(ctx context.Context, body AuthImpersonateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AuthImpersonateWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AuthLogin(ctx context.Context, body AuthLoginJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AuthLoginWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AuthLogout(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AuthMfaVerify(ctx context.Context, params *AuthMfaVerifyParams, ...) (*http.Response, error) + func (c *Client) AuthMfaVerifyWithBody(ctx context.Context, params *AuthMfaVerifyParams, contentType string, ...) (*http.Response, error) + func (c *Client) AuthOauthCallback(ctx context.Context, provider AuthOauthCallbackParamsProvider, ...) (*http.Response, error) + func (c *Client) AuthOauthProviders(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AuthOauthStart(ctx context.Context, provider AuthOauthStartParamsProvider, ...) (*http.Response, error) + func (c *Client) AuthPasswordReset(ctx context.Context, body AuthPasswordResetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AuthPasswordResetRequest(ctx context.Context, body AuthPasswordResetRequestJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AuthPasswordResetRequestWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AuthPasswordResetWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AuthPolicy(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AuthRegister(ctx context.Context, body AuthRegisterJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AuthRegisterWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AuthSessionRevoke(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AuthSessionsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) AuthVerifyEmail(ctx context.Context, body AuthVerifyEmailJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AuthVerifyEmailResend(ctx context.Context, body AuthVerifyEmailResendJSONRequestBody, ...) (*http.Response, error) + func (c *Client) AuthVerifyEmailResendWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) AuthVerifyEmailWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabaseAlertDelete(ctx context.Context, databaseId string, metric DatabaseAlertDeleteParamsMetric, ...) (*http.Response, error) + func (c *Client) DatabaseAlertSave(ctx context.Context, databaseId string, body DatabaseAlertSaveJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DatabaseAlertSaveWithBody(ctx context.Context, databaseId string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabaseAlertsList(ctx context.Context, databaseId string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DatabaseBackupCreate(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DatabaseBackupsList(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DatabaseConnectionGet(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DatabaseCreate(ctx context.Context, params *DatabaseCreateParams, ...) (*http.Response, error) + func (c *Client) DatabaseCreateWithBody(ctx context.Context, params *DatabaseCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) DatabaseDbCreate(ctx context.Context, databaseID string, body DatabaseDbCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DatabaseDbCreateWithBody(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabaseDelete(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DatabaseGet(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DatabaseMetricsList(ctx context.Context, databaseId string, params *DatabaseMetricsListParams, ...) (*http.Response, error) + func (c *Client) DatabaseOptionsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DatabaseProjectSet(ctx context.Context, databaseID string, body DatabaseProjectSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DatabaseProjectSetWithBody(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabasePublicAccessSet(ctx context.Context, databaseID string, ...) (*http.Response, error) + func (c *Client) DatabasePublicAccessSetWithBody(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabaseResize(ctx context.Context, databaseId string, body DatabaseResizeJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DatabaseResizeWithBody(ctx context.Context, databaseId string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabaseRestoreCreate(ctx context.Context, databaseID string, ...) (*http.Response, error) + func (c *Client) DatabaseRestoreCreateWithBody(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabaseTagsSet(ctx context.Context, databaseID string, body DatabaseTagsSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DatabaseTagsSetWithBody(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabaseTrustedSourcesSet(ctx context.Context, databaseID string, ...) (*http.Response, error) + func (c *Client) DatabaseTrustedSourcesSetWithBody(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabaseUserCreate(ctx context.Context, databaseID string, body DatabaseUserCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DatabaseUserCreateWithBody(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DatabaseUserDelete(ctx context.Context, databaseID string, userID string, ...) (*http.Response, error) + func (c *Client) DatabaseUserPasswordReset(ctx context.Context, databaseID string, userID string, ...) (*http.Response, error) + func (c *Client) DatabasesList(ctx context.Context, params *DatabasesListParams, ...) (*http.Response, error) + func (c *Client) DnsRecordCreate(ctx context.Context, id string, params *DnsRecordCreateParams, ...) (*http.Response, error) + func (c *Client) DnsRecordCreateWithBody(ctx context.Context, id string, params *DnsRecordCreateParams, ...) (*http.Response, error) + func (c *Client) DnsRecordDelete(ctx context.Context, id string, recordId string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DnsRecordUpdate(ctx context.Context, id string, recordId string, ...) (*http.Response, error) + func (c *Client) DnsRecordUpdateWithBody(ctx context.Context, id string, recordId string, contentType string, ...) (*http.Response, error) + func (c *Client) DnsZoneCreate(ctx context.Context, params *DnsZoneCreateParams, ...) (*http.Response, error) + func (c *Client) DnsZoneCreateWithBody(ctx context.Context, params *DnsZoneCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) DnsZoneDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DnsZoneGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DnsZoneProjectSet(ctx context.Context, id string, body DnsZoneProjectSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DnsZoneProjectSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DnsZoneTagsSet(ctx context.Context, id string, body DnsZoneTagsSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DnsZoneTagsSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DnsZonesList(ctx context.Context, params *DnsZonesListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DomainAutoRenewSet(ctx context.Context, id string, body DomainAutoRenewSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainAutoRenewSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainContactCreate(ctx context.Context, body DomainContactCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainContactCreateWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainContactDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DomainContactSuggest(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DomainContactUpdate(ctx context.Context, id string, body DomainContactUpdateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainContactUpdateWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainContactsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DomainGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DomainLockSet(ctx context.Context, id string, body DomainLockSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainLockSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainNameserversSet(ctx context.Context, id string, body DomainNameserversSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainNameserversSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainPrivacySet(ctx context.Context, id string, body DomainPrivacySetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainPrivacySetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainProjectSet(ctx context.Context, id string, body DomainProjectSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainProjectSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainRegister(ctx context.Context, params *DomainRegisterParams, ...) (*http.Response, error) + func (c *Client) DomainRegisterWithBody(ctx context.Context, params *DomainRegisterParams, contentType string, ...) (*http.Response, error) + func (c *Client) DomainRenew(ctx context.Context, id string, body DomainRenewJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainRenewWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainSearch(ctx context.Context, body DomainSearchJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainSearchWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainTagsSet(ctx context.Context, id string, body DomainTagsSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainTagsSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainTldsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) DomainTransfer(ctx context.Context, body DomainTransferJSONRequestBody, ...) (*http.Response, error) + func (c *Client) DomainTransferWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) DomainsList(ctx context.Context, params *DomainsListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) FirewallCreate(ctx context.Context, params *FirewallCreateParams, ...) (*http.Response, error) + func (c *Client) FirewallCreateWithBody(ctx context.Context, params *FirewallCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) FirewallDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) FirewallGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) FirewallRulesReplace(ctx context.Context, id string, body FirewallRulesReplaceJSONRequestBody, ...) (*http.Response, error) + func (c *Client) FirewallRulesReplaceWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) FirewallServerAttach(ctx context.Context, id string, serverId string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) FirewallServerDetach(ctx context.Context, id string, serverId string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) FirewallUpdate(ctx context.Context, id string, body FirewallUpdateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) FirewallUpdateWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) FirewallsList(ctx context.Context, params *FirewallsListParams, ...) (*http.Response, error) + func (c *Client) FloatingIpAttach(ctx context.Context, floatingIpID string, body FloatingIpAttachJSONRequestBody, ...) (*http.Response, error) + func (c *Client) FloatingIpAttachWithBody(ctx context.Context, floatingIpID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) FloatingIpCreate(ctx context.Context, params *FloatingIpCreateParams, ...) (*http.Response, error) + func (c *Client) FloatingIpCreateWithBody(ctx context.Context, params *FloatingIpCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) FloatingIpDelete(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) FloatingIpDetach(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) FloatingIpGet(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) FloatingIpsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) FxRate(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GitConnectionDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GitConnectionsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GitInstallCallback(ctx context.Context, provider GitInstallCallbackParamsProvider, ...) (*http.Response, error) + func (c *Client) GitInstallSetup(ctx context.Context, provider GitInstallSetupParamsProvider, ...) (*http.Response, error) + func (c *Client) GitInstallStart(ctx context.Context, provider GitInstallStartParamsProvider, ...) (*http.Response, error) + func (c *Client) GitProvidersList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) GitRepositoriesList(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ImagesList(ctx context.Context, params *ImagesListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) IsoCreate(ctx context.Context, params *IsoCreateParams, body IsoCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) IsoCreateWithBody(ctx context.Context, params *IsoCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) IsoDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) IsoGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) IsoList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) LoadBalancerBackendsSet(ctx context.Context, loadBalancerID string, ...) (*http.Response, error) + func (c *Client) LoadBalancerBackendsSetWithBody(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) LoadBalancerCreate(ctx context.Context, params *LoadBalancerCreateParams, ...) (*http.Response, error) + func (c *Client) LoadBalancerCreateWithBody(ctx context.Context, params *LoadBalancerCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) LoadBalancerDelete(ctx context.Context, loadBalancerID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) LoadBalancerGet(ctx context.Context, loadBalancerID string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) LoadBalancerProjectSet(ctx context.Context, loadBalancerID string, ...) (*http.Response, error) + func (c *Client) LoadBalancerProjectSetWithBody(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) LoadBalancerRulesReplace(ctx context.Context, loadBalancerID string, ...) (*http.Response, error) + func (c *Client) LoadBalancerRulesReplaceWithBody(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) LoadBalancerTagsSet(ctx context.Context, loadBalancerID string, ...) (*http.Response, error) + func (c *Client) LoadBalancerTagsSetWithBody(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) LoadBalancersList(ctx context.Context, params *LoadBalancersListParams, ...) (*http.Response, error) + func (c *Client) NetworkCreate(ctx context.Context, params *NetworkCreateParams, ...) (*http.Response, error) + func (c *Client) NetworkCreateWithBody(ctx context.Context, params *NetworkCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) NetworkDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) NetworkGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) NetworkProjectSet(ctx context.Context, id string, body NetworkProjectSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) NetworkProjectSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) NetworkTagsSet(ctx context.Context, id string, body NetworkTagsSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) NetworkTagsSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) NetworksList(ctx context.Context, params *NetworksListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) NotificationDelete(ctx context.Context, id int64, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) NotificationsList(ctx context.Context, params *NotificationsListParams, ...) (*http.Response, error) + func (c *Client) NotificationsMarkRead(ctx context.Context, body NotificationsMarkReadJSONRequestBody, ...) (*http.Response, error) + func (c *Client) NotificationsMarkReadWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) OrganizationInvitationAccept(ctx context.Context, token string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationInvitationGet(ctx context.Context, token string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationInvitationsCreate(ctx context.Context, id string, ...) (*http.Response, error) + func (c *Client) OrganizationInvitationsCreateWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) OrganizationInvitationsList(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationInvitationsRevoke(ctx context.Context, id string, invitationId string, ...) (*http.Response, error) + func (c *Client) OrganizationMemberRoleUpdate(ctx context.Context, id string, userId string, ...) (*http.Response, error) + func (c *Client) OrganizationMemberRoleUpdateWithBody(ctx context.Context, id string, userId string, contentType string, ...) (*http.Response, error) + func (c *Client) OrganizationMembersList(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationMembersRemove(ctx context.Context, id string, userId string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationsActivate(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationsCreate(ctx context.Context, body OrganizationsCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) OrganizationsCreateWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) OrganizationsDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationsGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationsLeave(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) OrganizationsRename(ctx context.Context, id string, body OrganizationsRenameJSONRequestBody, ...) (*http.Response, error) + func (c *Client) OrganizationsRenameWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) PaymentIntentsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) PaymentTopupInit(ctx context.Context, params *PaymentTopupInitParams, ...) (*http.Response, error) + func (c *Client) PaymentTopupInitWithBody(ctx context.Context, params *PaymentTopupInitParams, contentType string, ...) (*http.Response, error) + func (c *Client) PlanTypesList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) PlansList(ctx context.Context, params *PlansListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ProjectCreate(ctx context.Context, params *ProjectCreateParams, ...) (*http.Response, error) + func (c *Client) ProjectCreateWithBody(ctx context.Context, params *ProjectCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) ProjectDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ProjectGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ProjectUpdate(ctx context.Context, id string, body ProjectUpdateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ProjectUpdateWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ProjectsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) RdnsClear(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) RdnsSet(ctx context.Context, id string, body RdnsSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) RdnsSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) RegionsList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ResourcePricesList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerActionCreate(ctx context.Context, id string, body ServerActionCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerActionCreateWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerActionGet(ctx context.Context, id string, actionId string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerAlertDelete(ctx context.Context, id string, metric ServerAlertDeleteParamsMetric, ...) (*http.Response, error) + func (c *Client) ServerAlertSave(ctx context.Context, id string, body ServerAlertSaveJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerAlertSaveWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerAlertsList(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerAppRetry(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerBackupCreate(ctx context.Context, id string, body ServerBackupCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerBackupCreateWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerBackupDelete(ctx context.Context, id string, backupId string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerBackupList(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerBackupListAll(ctx context.Context, params *ServerBackupListAllParams, ...) (*http.Response, error) + func (c *Client) ServerBackupRestore(ctx context.Context, id string, backupId string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerBackupSettingsGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerBackupSettingsUpdate(ctx context.Context, id string, body ServerBackupSettingsUpdateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerBackupSettingsUpdateWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerBillingGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerConsoleCreate(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerCreate(ctx context.Context, params *ServerCreateParams, ...) (*http.Response, error) + func (c *Client) ServerCreateWithBody(ctx context.Context, params *ServerCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) ServerDelete(ctx context.Context, id string, params *ServerDeleteParams, ...) (*http.Response, error) + func (c *Client) ServerEventsList(ctx context.Context, id string, params *ServerEventsListParams, ...) (*http.Response, error) + func (c *Client) ServerFilesystemsList(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerLedgerList(ctx context.Context, id string, params *ServerLedgerListParams, ...) (*http.Response, error) + func (c *Client) ServerMetricsList(ctx context.Context, id string, params *ServerMetricsListParams, ...) (*http.Response, error) + func (c *Client) ServerMountISO(ctx context.Context, id string, body ServerMountISOJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerMountISOWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerNetworkAttach(ctx context.Context, id string, body ServerNetworkAttachJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerNetworkAttachWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerNetworkDetach(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerPasswordReset(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerProjectSet(ctx context.Context, id string, body ServerProjectSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerProjectSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerRDNSList(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerRebuild(ctx context.Context, id string, body ServerRebuildJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerRebuildWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerRename(ctx context.Context, id string, body ServerRenameJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerRenameWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerRescueEnter(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerRescueExit(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerResize(ctx context.Context, id string, body ServerResizeJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerResizeWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerSnapshotCreate(ctx context.Context, id string, body ServerSnapshotCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerSnapshotCreateWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerSnapshotDelete(ctx context.Context, id string, snapshotId string, ...) (*http.Response, error) + func (c *Client) ServerSnapshotList(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServerSnapshotListAll(ctx context.Context, params *ServerSnapshotListAllParams, ...) (*http.Response, error) + func (c *Client) ServerSnapshotRestore(ctx context.Context, id string, snapshotId string, ...) (*http.Response, error) + func (c *Client) ServerTagsSet(ctx context.Context, id string, body ServerTagsSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) ServerTagsSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) ServerUnmountISO(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) ServersList(ctx context.Context, params *ServersListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) SshKeyCreate(ctx context.Context, params *SshKeyCreateParams, ...) (*http.Response, error) + func (c *Client) SshKeyCreateWithBody(ctx context.Context, params *SshKeyCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) SshKeyDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) SshKeyGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) SshKeysList(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) TagsList(ctx context.Context, params *TagsListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) TicketAttachmentDownload(ctx context.Context, code string, id int64, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) TicketClose(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) TicketCreate(ctx context.Context, body TicketCreateJSONRequestBody, ...) (*http.Response, error) + func (c *Client) TicketCreateWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) TicketGet(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) TicketReopen(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) TicketReply(ctx context.Context, code string, body TicketReplyJSONRequestBody, ...) (*http.Response, error) + func (c *Client) TicketReplyWithBody(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) TicketsList(ctx context.Context, params *TicketsListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) VolumeAttach(ctx context.Context, id string, body VolumeAttachJSONRequestBody, ...) (*http.Response, error) + func (c *Client) VolumeAttachWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) VolumeCreate(ctx context.Context, params *VolumeCreateParams, ...) (*http.Response, error) + func (c *Client) VolumeCreateWithBody(ctx context.Context, params *VolumeCreateParams, contentType string, ...) (*http.Response, error) + func (c *Client) VolumeDelete(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) VolumeDetach(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) VolumeGet(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) VolumeLimits(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) VolumeList(ctx context.Context, params *VolumeListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) VolumeProjectSet(ctx context.Context, id string, body VolumeProjectSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) VolumeProjectSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) VolumeResize(ctx context.Context, id string, body VolumeResizeJSONRequestBody, ...) (*http.Response, error) + func (c *Client) VolumeResizeWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) VolumeTagsSet(ctx context.Context, id string, body VolumeTagsSetJSONRequestBody, ...) (*http.Response, error) + func (c *Client) VolumeTagsSetWithBody(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) WalletGet(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + func (c *Client) WalletLedgerDaily(ctx context.Context, params *WalletLedgerDailyParams, ...) (*http.Response, error) + func (c *Client) WalletLedgerList(ctx context.Context, params *WalletLedgerListParams, ...) (*http.Response, error) + func (c *Client) WalletPromoRedeem(ctx context.Context, body WalletPromoRedeemJSONRequestBody, ...) (*http.Response, error) + func (c *Client) WalletPromoRedeemWithBody(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + func (c *Client) WalletPromoRedemptions(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + type ClientInterface interface + AccountBillingProfileGet func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountBillingProfileSave func(ctx context.Context, body AccountBillingProfileSaveJSONRequestBody, ...) (*http.Response, error) + AccountBillingProfileSaveWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountChangePassword func(ctx context.Context, body AccountChangePasswordJSONRequestBody, ...) (*http.Response, error) + AccountChangePasswordWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountDeletionCancel func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountDeletionGet func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountDeletionRequest func(ctx context.Context, body AccountDeletionRequestJSONRequestBody, ...) (*http.Response, error) + AccountDeletionRequestWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountEmailChangeStart func(ctx context.Context, body AccountEmailChangeStartJSONRequestBody, ...) (*http.Response, error) + AccountEmailChangeStartWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountExport func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountFeatures func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountGet func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountIdentitiesList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountIdentityUnlink func(ctx context.Context, provider AccountIdentityUnlinkParamsProvider, ...) (*http.Response, error) + AccountLimits func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountPhoneDelete func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountPhoneGet func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountPhoneResend func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountPhoneStart func(ctx context.Context, body AccountPhoneStartJSONRequestBody, ...) (*http.Response, error) + AccountPhoneStartWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountPhoneVerify func(ctx context.Context, body AccountPhoneVerifyJSONRequestBody, ...) (*http.Response, error) + AccountPhoneVerifyWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountSupportAccess func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountTotpConfirm func(ctx context.Context, body AccountTotpConfirmJSONRequestBody, ...) (*http.Response, error) + AccountTotpConfirmWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountTotpDisable func(ctx context.Context, body AccountTotpDisableJSONRequestBody, ...) (*http.Response, error) + AccountTotpDisableWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountTotpRecoveryCodes func(ctx context.Context, body AccountTotpRecoveryCodesJSONRequestBody, ...) (*http.Response, error) + AccountTotpRecoveryCodesWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountTotpSetup func(ctx context.Context, body AccountTotpSetupJSONRequestBody, ...) (*http.Response, error) + AccountTotpSetupWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AccountTotpStatus func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AccountUpdate func(ctx context.Context, body AccountUpdateJSONRequestBody, ...) (*http.Response, error) + AccountUpdateWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AnnouncementBannerDismiss func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + AnnouncementBannerGet func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AnnouncementsGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + AnnouncementsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + ApiTokenCreate func(ctx context.Context, body ApiTokenCreateJSONRequestBody, ...) (*http.Response, error) + ApiTokenCreateWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + ApiTokenRevoke func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ApiTokensList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AppAction func(ctx context.Context, code string, body AppActionJSONRequestBody, ...) (*http.Response, error) + AppActionWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppAttachmentCreate func(ctx context.Context, appCode string, body AppAttachmentCreateJSONRequestBody, ...) (*http.Response, error) + AppAttachmentCreateWithBody func(ctx context.Context, appCode string, contentType string, body io.Reader, ...) (*http.Response, error) + AppAttachmentDelete func(ctx context.Context, appCode string, attachmentID string, ...) (*http.Response, error) + AppAttachmentVerify func(ctx context.Context, appCode string, attachmentID string, ...) (*http.Response, error) + AppAttachmentsList func(ctx context.Context, appCode string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppAutoDeploySet func(ctx context.Context, code string, body AppAutoDeploySetJSONRequestBody, ...) (*http.Response, error) + AppAutoDeploySetWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppBuildCancel func(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppBuildCreate func(ctx context.Context, code string, body AppBuildCreateJSONRequestBody, ...) (*http.Response, error) + AppBuildCreateWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppBuildGet func(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppBuildsList func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppCreate func(ctx context.Context, params *AppCreateParams, body AppCreateJSONRequestBody, ...) (*http.Response, error) + AppCreateWithBody func(ctx context.Context, params *AppCreateParams, contentType string, ...) (*http.Response, error) + AppDelete func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppDetectBuild func(ctx context.Context, params *AppDetectBuildParams, ...) (*http.Response, error) + AppDomainAdd func(ctx context.Context, code string, body AppDomainAddJSONRequestBody, ...) (*http.Response, error) + AppDomainAddWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppDomainDelete func(ctx context.Context, code string, domainID string, ...) (*http.Response, error) + AppDomainVerify func(ctx context.Context, code string, domainID string, ...) (*http.Response, error) + AppDomainsList func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppEnvGet func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppEnvSet func(ctx context.Context, code string, body AppEnvSetJSONRequestBody, ...) (*http.Response, error) + AppEnvSetWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppEventsList func(ctx context.Context, code string, params *AppEventsListParams, ...) (*http.Response, error) + AppExecStart func(ctx context.Context, code string, body AppExecStartJSONRequestBody, ...) (*http.Response, error) + AppExecStartWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppGet func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppLogsGet func(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppLogsRequest func(ctx context.Context, code string, body AppLogsRequestJSONRequestBody, ...) (*http.Response, error) + AppLogsRequestWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppMetrics func(ctx context.Context, code string, params *AppMetricsParams, ...) (*http.Response, error) + AppPlansList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AppPresetsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AppProjectSet func(ctx context.Context, code string, body AppProjectSetJSONRequestBody, ...) (*http.Response, error) + AppProjectSetWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppReleasesList func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + AppResize func(ctx context.Context, code string, body AppResizeJSONRequestBody, ...) (*http.Response, error) + AppResizeWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppRollback func(ctx context.Context, code string, body AppRollbackJSONRequestBody, ...) (*http.Response, error) + AppRollbackWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppScale func(ctx context.Context, code string, body AppScaleJSONRequestBody, ...) (*http.Response, error) + AppScaleWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppSourceSet func(ctx context.Context, code string, body AppSourceSetJSONRequestBody, ...) (*http.Response, error) + AppSourceSetWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppTagsSet func(ctx context.Context, code string, body AppTagsSetJSONRequestBody, ...) (*http.Response, error) + AppTagsSetWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppUpdate func(ctx context.Context, code string, body AppUpdateJSONRequestBody, ...) (*http.Response, error) + AppUpdateWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + AppsList func(ctx context.Context, params *AppsListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + AuthConfirmEmailChange func(ctx context.Context, body AuthConfirmEmailChangeJSONRequestBody, ...) (*http.Response, error) + AuthConfirmEmailChangeWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AuthImpersonate func(ctx context.Context, body AuthImpersonateJSONRequestBody, ...) (*http.Response, error) + AuthImpersonateWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AuthLogin func(ctx context.Context, body AuthLoginJSONRequestBody, ...) (*http.Response, error) + AuthLoginWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AuthLogout func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AuthMfaVerify func(ctx context.Context, params *AuthMfaVerifyParams, ...) (*http.Response, error) + AuthMfaVerifyWithBody func(ctx context.Context, params *AuthMfaVerifyParams, contentType string, ...) (*http.Response, error) + AuthOauthCallback func(ctx context.Context, provider AuthOauthCallbackParamsProvider, ...) (*http.Response, error) + AuthOauthProviders func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AuthOauthStart func(ctx context.Context, provider AuthOauthStartParamsProvider, ...) (*http.Response, error) + AuthPasswordReset func(ctx context.Context, body AuthPasswordResetJSONRequestBody, ...) (*http.Response, error) + AuthPasswordResetRequest func(ctx context.Context, body AuthPasswordResetRequestJSONRequestBody, ...) (*http.Response, error) + AuthPasswordResetRequestWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AuthPasswordResetWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AuthPolicy func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AuthRegister func(ctx context.Context, body AuthRegisterJSONRequestBody, ...) (*http.Response, error) + AuthRegisterWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AuthSessionRevoke func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + AuthSessionsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + AuthVerifyEmail func(ctx context.Context, body AuthVerifyEmailJSONRequestBody, ...) (*http.Response, error) + AuthVerifyEmailResend func(ctx context.Context, body AuthVerifyEmailResendJSONRequestBody, ...) (*http.Response, error) + AuthVerifyEmailResendWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + AuthVerifyEmailWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + DatabaseAlertDelete func(ctx context.Context, databaseId string, metric DatabaseAlertDeleteParamsMetric, ...) (*http.Response, error) + DatabaseAlertSave func(ctx context.Context, databaseId string, body DatabaseAlertSaveJSONRequestBody, ...) (*http.Response, error) + DatabaseAlertSaveWithBody func(ctx context.Context, databaseId string, contentType string, body io.Reader, ...) (*http.Response, error) + DatabaseAlertsList func(ctx context.Context, databaseId string, reqEditors ...RequestEditorFn) (*http.Response, error) + DatabaseBackupCreate func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + DatabaseBackupsList func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + DatabaseConnectionGet func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + DatabaseCreate func(ctx context.Context, params *DatabaseCreateParams, ...) (*http.Response, error) + DatabaseCreateWithBody func(ctx context.Context, params *DatabaseCreateParams, contentType string, ...) (*http.Response, error) + DatabaseDbCreate func(ctx context.Context, databaseID string, body DatabaseDbCreateJSONRequestBody, ...) (*http.Response, error) + DatabaseDbCreateWithBody func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + DatabaseDelete func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + DatabaseGet func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*http.Response, error) + DatabaseMetricsList func(ctx context.Context, databaseId string, params *DatabaseMetricsListParams, ...) (*http.Response, error) + DatabaseOptionsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + DatabaseProjectSet func(ctx context.Context, databaseID string, body DatabaseProjectSetJSONRequestBody, ...) (*http.Response, error) + DatabaseProjectSetWithBody func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + DatabasePublicAccessSet func(ctx context.Context, databaseID string, ...) (*http.Response, error) + DatabasePublicAccessSetWithBody func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + DatabaseResize func(ctx context.Context, databaseId string, body DatabaseResizeJSONRequestBody, ...) (*http.Response, error) + DatabaseResizeWithBody func(ctx context.Context, databaseId string, contentType string, body io.Reader, ...) (*http.Response, error) + DatabaseRestoreCreate func(ctx context.Context, databaseID string, ...) (*http.Response, error) + DatabaseRestoreCreateWithBody func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + DatabaseTagsSet func(ctx context.Context, databaseID string, body DatabaseTagsSetJSONRequestBody, ...) (*http.Response, error) + DatabaseTagsSetWithBody func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + DatabaseTrustedSourcesSet func(ctx context.Context, databaseID string, ...) (*http.Response, error) + DatabaseTrustedSourcesSetWithBody func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + DatabaseUserCreate func(ctx context.Context, databaseID string, body DatabaseUserCreateJSONRequestBody, ...) (*http.Response, error) + DatabaseUserCreateWithBody func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*http.Response, error) + DatabaseUserDelete func(ctx context.Context, databaseID string, userID string, ...) (*http.Response, error) + DatabaseUserPasswordReset func(ctx context.Context, databaseID string, userID string, ...) (*http.Response, error) + DatabasesList func(ctx context.Context, params *DatabasesListParams, ...) (*http.Response, error) + DnsRecordCreate func(ctx context.Context, id string, params *DnsRecordCreateParams, ...) (*http.Response, error) + DnsRecordCreateWithBody func(ctx context.Context, id string, params *DnsRecordCreateParams, ...) (*http.Response, error) + DnsRecordDelete func(ctx context.Context, id string, recordId string, reqEditors ...RequestEditorFn) (*http.Response, error) + DnsRecordUpdate func(ctx context.Context, id string, recordId string, ...) (*http.Response, error) + DnsRecordUpdateWithBody func(ctx context.Context, id string, recordId string, contentType string, ...) (*http.Response, error) + DnsZoneCreate func(ctx context.Context, params *DnsZoneCreateParams, ...) (*http.Response, error) + DnsZoneCreateWithBody func(ctx context.Context, params *DnsZoneCreateParams, contentType string, ...) (*http.Response, error) + DnsZoneDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + DnsZoneGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + DnsZoneProjectSet func(ctx context.Context, id string, body DnsZoneProjectSetJSONRequestBody, ...) (*http.Response, error) + DnsZoneProjectSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DnsZoneTagsSet func(ctx context.Context, id string, body DnsZoneTagsSetJSONRequestBody, ...) (*http.Response, error) + DnsZoneTagsSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DnsZonesList func(ctx context.Context, params *DnsZonesListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + DomainAutoRenewSet func(ctx context.Context, id string, body DomainAutoRenewSetJSONRequestBody, ...) (*http.Response, error) + DomainAutoRenewSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DomainContactCreate func(ctx context.Context, body DomainContactCreateJSONRequestBody, ...) (*http.Response, error) + DomainContactCreateWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + DomainContactDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + DomainContactSuggest func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + DomainContactUpdate func(ctx context.Context, id string, body DomainContactUpdateJSONRequestBody, ...) (*http.Response, error) + DomainContactUpdateWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DomainContactsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + DomainGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + DomainLockSet func(ctx context.Context, id string, body DomainLockSetJSONRequestBody, ...) (*http.Response, error) + DomainLockSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DomainNameserversSet func(ctx context.Context, id string, body DomainNameserversSetJSONRequestBody, ...) (*http.Response, error) + DomainNameserversSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DomainPrivacySet func(ctx context.Context, id string, body DomainPrivacySetJSONRequestBody, ...) (*http.Response, error) + DomainPrivacySetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DomainProjectSet func(ctx context.Context, id string, body DomainProjectSetJSONRequestBody, ...) (*http.Response, error) + DomainProjectSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DomainRegister func(ctx context.Context, params *DomainRegisterParams, ...) (*http.Response, error) + DomainRegisterWithBody func(ctx context.Context, params *DomainRegisterParams, contentType string, ...) (*http.Response, error) + DomainRenew func(ctx context.Context, id string, body DomainRenewJSONRequestBody, ...) (*http.Response, error) + DomainRenewWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DomainSearch func(ctx context.Context, body DomainSearchJSONRequestBody, ...) (*http.Response, error) + DomainSearchWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + DomainTagsSet func(ctx context.Context, id string, body DomainTagsSetJSONRequestBody, ...) (*http.Response, error) + DomainTagsSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + DomainTldsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + DomainTransfer func(ctx context.Context, body DomainTransferJSONRequestBody, ...) (*http.Response, error) + DomainTransferWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + DomainsList func(ctx context.Context, params *DomainsListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + FirewallCreate func(ctx context.Context, params *FirewallCreateParams, ...) (*http.Response, error) + FirewallCreateWithBody func(ctx context.Context, params *FirewallCreateParams, contentType string, ...) (*http.Response, error) + FirewallDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + FirewallGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + FirewallRulesReplace func(ctx context.Context, id string, body FirewallRulesReplaceJSONRequestBody, ...) (*http.Response, error) + FirewallRulesReplaceWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + FirewallServerAttach func(ctx context.Context, id string, serverId string, reqEditors ...RequestEditorFn) (*http.Response, error) + FirewallServerDetach func(ctx context.Context, id string, serverId string, reqEditors ...RequestEditorFn) (*http.Response, error) + FirewallUpdate func(ctx context.Context, id string, body FirewallUpdateJSONRequestBody, ...) (*http.Response, error) + FirewallUpdateWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + FirewallsList func(ctx context.Context, params *FirewallsListParams, ...) (*http.Response, error) + FloatingIpAttach func(ctx context.Context, floatingIpID string, body FloatingIpAttachJSONRequestBody, ...) (*http.Response, error) + FloatingIpAttachWithBody func(ctx context.Context, floatingIpID string, contentType string, body io.Reader, ...) (*http.Response, error) + FloatingIpCreate func(ctx context.Context, params *FloatingIpCreateParams, ...) (*http.Response, error) + FloatingIpCreateWithBody func(ctx context.Context, params *FloatingIpCreateParams, contentType string, ...) (*http.Response, error) + FloatingIpDelete func(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*http.Response, error) + FloatingIpDetach func(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*http.Response, error) + FloatingIpGet func(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*http.Response, error) + FloatingIpsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + FxRate func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + GitConnectionDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + GitConnectionsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + GitInstallCallback func(ctx context.Context, provider GitInstallCallbackParamsProvider, ...) (*http.Response, error) + GitInstallSetup func(ctx context.Context, provider GitInstallSetupParamsProvider, ...) (*http.Response, error) + GitInstallStart func(ctx context.Context, provider GitInstallStartParamsProvider, ...) (*http.Response, error) + GitProvidersList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + GitRepositoriesList func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ImagesList func(ctx context.Context, params *ImagesListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + IsoCreate func(ctx context.Context, params *IsoCreateParams, body IsoCreateJSONRequestBody, ...) (*http.Response, error) + IsoCreateWithBody func(ctx context.Context, params *IsoCreateParams, contentType string, ...) (*http.Response, error) + IsoDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + IsoGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + IsoList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + LoadBalancerBackendsSet func(ctx context.Context, loadBalancerID string, ...) (*http.Response, error) + LoadBalancerBackendsSetWithBody func(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*http.Response, error) + LoadBalancerCreate func(ctx context.Context, params *LoadBalancerCreateParams, ...) (*http.Response, error) + LoadBalancerCreateWithBody func(ctx context.Context, params *LoadBalancerCreateParams, contentType string, ...) (*http.Response, error) + LoadBalancerDelete func(ctx context.Context, loadBalancerID string, reqEditors ...RequestEditorFn) (*http.Response, error) + LoadBalancerGet func(ctx context.Context, loadBalancerID string, reqEditors ...RequestEditorFn) (*http.Response, error) + LoadBalancerProjectSet func(ctx context.Context, loadBalancerID string, ...) (*http.Response, error) + LoadBalancerProjectSetWithBody func(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*http.Response, error) + LoadBalancerRulesReplace func(ctx context.Context, loadBalancerID string, ...) (*http.Response, error) + LoadBalancerRulesReplaceWithBody func(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*http.Response, error) + LoadBalancerTagsSet func(ctx context.Context, loadBalancerID string, ...) (*http.Response, error) + LoadBalancerTagsSetWithBody func(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*http.Response, error) + LoadBalancersList func(ctx context.Context, params *LoadBalancersListParams, ...) (*http.Response, error) + NetworkCreate func(ctx context.Context, params *NetworkCreateParams, ...) (*http.Response, error) + NetworkCreateWithBody func(ctx context.Context, params *NetworkCreateParams, contentType string, ...) (*http.Response, error) + NetworkDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + NetworkGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + NetworkProjectSet func(ctx context.Context, id string, body NetworkProjectSetJSONRequestBody, ...) (*http.Response, error) + NetworkProjectSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + NetworkTagsSet func(ctx context.Context, id string, body NetworkTagsSetJSONRequestBody, ...) (*http.Response, error) + NetworkTagsSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + NetworksList func(ctx context.Context, params *NetworksListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + NotificationDelete func(ctx context.Context, id int64, reqEditors ...RequestEditorFn) (*http.Response, error) + NotificationsList func(ctx context.Context, params *NotificationsListParams, ...) (*http.Response, error) + NotificationsMarkRead func(ctx context.Context, body NotificationsMarkReadJSONRequestBody, ...) (*http.Response, error) + NotificationsMarkReadWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + OrganizationInvitationAccept func(ctx context.Context, token string, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationInvitationGet func(ctx context.Context, token string, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationInvitationsCreate func(ctx context.Context, id string, ...) (*http.Response, error) + OrganizationInvitationsCreateWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + OrganizationInvitationsList func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationInvitationsRevoke func(ctx context.Context, id string, invitationId string, ...) (*http.Response, error) + OrganizationMemberRoleUpdate func(ctx context.Context, id string, userId string, ...) (*http.Response, error) + OrganizationMemberRoleUpdateWithBody func(ctx context.Context, id string, userId string, contentType string, ...) (*http.Response, error) + OrganizationMembersList func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationMembersRemove func(ctx context.Context, id string, userId string, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationsActivate func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationsCreate func(ctx context.Context, body OrganizationsCreateJSONRequestBody, ...) (*http.Response, error) + OrganizationsCreateWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + OrganizationsDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationsGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationsLeave func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + OrganizationsRename func(ctx context.Context, id string, body OrganizationsRenameJSONRequestBody, ...) (*http.Response, error) + OrganizationsRenameWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + PaymentIntentsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + PaymentTopupInit func(ctx context.Context, params *PaymentTopupInitParams, ...) (*http.Response, error) + PaymentTopupInitWithBody func(ctx context.Context, params *PaymentTopupInitParams, contentType string, ...) (*http.Response, error) + PlanTypesList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + PlansList func(ctx context.Context, params *PlansListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + ProjectCreate func(ctx context.Context, params *ProjectCreateParams, ...) (*http.Response, error) + ProjectCreateWithBody func(ctx context.Context, params *ProjectCreateParams, contentType string, ...) (*http.Response, error) + ProjectDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ProjectGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ProjectUpdate func(ctx context.Context, id string, body ProjectUpdateJSONRequestBody, ...) (*http.Response, error) + ProjectUpdateWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ProjectsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + RdnsClear func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + RdnsSet func(ctx context.Context, id string, body RdnsSetJSONRequestBody, ...) (*http.Response, error) + RdnsSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + RegionsList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + ResourcePricesList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerActionCreate func(ctx context.Context, id string, body ServerActionCreateJSONRequestBody, ...) (*http.Response, error) + ServerActionCreateWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerActionGet func(ctx context.Context, id string, actionId string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerAlertDelete func(ctx context.Context, id string, metric ServerAlertDeleteParamsMetric, ...) (*http.Response, error) + ServerAlertSave func(ctx context.Context, id string, body ServerAlertSaveJSONRequestBody, ...) (*http.Response, error) + ServerAlertSaveWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerAlertsList func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerAppRetry func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerBackupCreate func(ctx context.Context, id string, body ServerBackupCreateJSONRequestBody, ...) (*http.Response, error) + ServerBackupCreateWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerBackupDelete func(ctx context.Context, id string, backupId string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerBackupList func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerBackupListAll func(ctx context.Context, params *ServerBackupListAllParams, ...) (*http.Response, error) + ServerBackupRestore func(ctx context.Context, id string, backupId string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerBackupSettingsGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerBackupSettingsUpdate func(ctx context.Context, id string, body ServerBackupSettingsUpdateJSONRequestBody, ...) (*http.Response, error) + ServerBackupSettingsUpdateWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerBillingGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerConsoleCreate func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerCreate func(ctx context.Context, params *ServerCreateParams, ...) (*http.Response, error) + ServerCreateWithBody func(ctx context.Context, params *ServerCreateParams, contentType string, ...) (*http.Response, error) + ServerDelete func(ctx context.Context, id string, params *ServerDeleteParams, ...) (*http.Response, error) + ServerEventsList func(ctx context.Context, id string, params *ServerEventsListParams, ...) (*http.Response, error) + ServerFilesystemsList func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerLedgerList func(ctx context.Context, id string, params *ServerLedgerListParams, ...) (*http.Response, error) + ServerMetricsList func(ctx context.Context, id string, params *ServerMetricsListParams, ...) (*http.Response, error) + ServerMountISO func(ctx context.Context, id string, body ServerMountISOJSONRequestBody, ...) (*http.Response, error) + ServerMountISOWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerNetworkAttach func(ctx context.Context, id string, body ServerNetworkAttachJSONRequestBody, ...) (*http.Response, error) + ServerNetworkAttachWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerNetworkDetach func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerPasswordReset func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerProjectSet func(ctx context.Context, id string, body ServerProjectSetJSONRequestBody, ...) (*http.Response, error) + ServerProjectSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerRDNSList func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerRebuild func(ctx context.Context, id string, body ServerRebuildJSONRequestBody, ...) (*http.Response, error) + ServerRebuildWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerRename func(ctx context.Context, id string, body ServerRenameJSONRequestBody, ...) (*http.Response, error) + ServerRenameWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerRescueEnter func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerRescueExit func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerResize func(ctx context.Context, id string, body ServerResizeJSONRequestBody, ...) (*http.Response, error) + ServerResizeWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerSnapshotCreate func(ctx context.Context, id string, body ServerSnapshotCreateJSONRequestBody, ...) (*http.Response, error) + ServerSnapshotCreateWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerSnapshotDelete func(ctx context.Context, id string, snapshotId string, ...) (*http.Response, error) + ServerSnapshotList func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServerSnapshotListAll func(ctx context.Context, params *ServerSnapshotListAllParams, ...) (*http.Response, error) + ServerSnapshotRestore func(ctx context.Context, id string, snapshotId string, ...) (*http.Response, error) + ServerTagsSet func(ctx context.Context, id string, body ServerTagsSetJSONRequestBody, ...) (*http.Response, error) + ServerTagsSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + ServerUnmountISO func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + ServersList func(ctx context.Context, params *ServersListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + SshKeyCreate func(ctx context.Context, params *SshKeyCreateParams, ...) (*http.Response, error) + SshKeyCreateWithBody func(ctx context.Context, params *SshKeyCreateParams, contentType string, ...) (*http.Response, error) + SshKeyDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + SshKeyGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + SshKeysList func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + TagsList func(ctx context.Context, params *TagsListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + TicketAttachmentDownload func(ctx context.Context, code string, id int64, reqEditors ...RequestEditorFn) (*http.Response, error) + TicketClose func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + TicketCreate func(ctx context.Context, body TicketCreateJSONRequestBody, ...) (*http.Response, error) + TicketCreateWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + TicketGet func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + TicketReopen func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*http.Response, error) + TicketReply func(ctx context.Context, code string, body TicketReplyJSONRequestBody, ...) (*http.Response, error) + TicketReplyWithBody func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*http.Response, error) + TicketsList func(ctx context.Context, params *TicketsListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + VolumeAttach func(ctx context.Context, id string, body VolumeAttachJSONRequestBody, ...) (*http.Response, error) + VolumeAttachWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + VolumeCreate func(ctx context.Context, params *VolumeCreateParams, ...) (*http.Response, error) + VolumeCreateWithBody func(ctx context.Context, params *VolumeCreateParams, contentType string, ...) (*http.Response, error) + VolumeDelete func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + VolumeDetach func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + VolumeGet func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*http.Response, error) + VolumeLimits func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + VolumeList func(ctx context.Context, params *VolumeListParams, reqEditors ...RequestEditorFn) (*http.Response, error) + VolumeProjectSet func(ctx context.Context, id string, body VolumeProjectSetJSONRequestBody, ...) (*http.Response, error) + VolumeProjectSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + VolumeResize func(ctx context.Context, id string, body VolumeResizeJSONRequestBody, ...) (*http.Response, error) + VolumeResizeWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + VolumeTagsSet func(ctx context.Context, id string, body VolumeTagsSetJSONRequestBody, ...) (*http.Response, error) + VolumeTagsSetWithBody func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*http.Response, error) + WalletGet func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + WalletLedgerDaily func(ctx context.Context, params *WalletLedgerDailyParams, ...) (*http.Response, error) + WalletLedgerList func(ctx context.Context, params *WalletLedgerListParams, ...) (*http.Response, error) + WalletPromoRedeem func(ctx context.Context, body WalletPromoRedeemJSONRequestBody, ...) (*http.Response, error) + WalletPromoRedeemWithBody func(ctx context.Context, contentType string, body io.Reader, ...) (*http.Response, error) + WalletPromoRedemptions func(ctx context.Context, reqEditors ...RequestEditorFn) (*http.Response, error) + type ClientOption func(*Client) error + func WithBaseURL(baseURL string) ClientOption + func WithHTTPClient(doer HttpRequestDoer) ClientOption + func WithRequestEditorFn(fn RequestEditorFn) ClientOption + type ClientWithResponses struct + func NewClientWithResponses(server string, opts ...ClientOption) (*ClientWithResponses, error) + func (c *ClientWithResponses) AccountBillingProfileGetWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountBillingProfileGetResponse, error) + func (c *ClientWithResponses) AccountBillingProfileSaveWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountBillingProfileSaveResponse, error) + func (c *ClientWithResponses) AccountBillingProfileSaveWithResponse(ctx context.Context, body AccountBillingProfileSaveJSONRequestBody, ...) (*AccountBillingProfileSaveResponse, error) + func (c *ClientWithResponses) AccountChangePasswordWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountChangePasswordResponse, error) + func (c *ClientWithResponses) AccountChangePasswordWithResponse(ctx context.Context, body AccountChangePasswordJSONRequestBody, ...) (*AccountChangePasswordResponse, error) + func (c *ClientWithResponses) AccountDeletionCancelWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountDeletionCancelResponse, error) + func (c *ClientWithResponses) AccountDeletionGetWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountDeletionGetResponse, error) + func (c *ClientWithResponses) AccountDeletionRequestWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountDeletionRequestResponse, error) + func (c *ClientWithResponses) AccountDeletionRequestWithResponse(ctx context.Context, body AccountDeletionRequestJSONRequestBody, ...) (*AccountDeletionRequestResponse, error) + func (c *ClientWithResponses) AccountEmailChangeStartWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountEmailChangeStartResponse, error) + func (c *ClientWithResponses) AccountEmailChangeStartWithResponse(ctx context.Context, body AccountEmailChangeStartJSONRequestBody, ...) (*AccountEmailChangeStartResponse, error) + func (c *ClientWithResponses) AccountExportWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountExportResponse, error) + func (c *ClientWithResponses) AccountFeaturesWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountFeaturesResponse, error) + func (c *ClientWithResponses) AccountGetWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountGetResponse, error) + func (c *ClientWithResponses) AccountIdentitiesListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountIdentitiesListResponse, error) + func (c *ClientWithResponses) AccountIdentityUnlinkWithResponse(ctx context.Context, provider AccountIdentityUnlinkParamsProvider, ...) (*AccountIdentityUnlinkResponse, error) + func (c *ClientWithResponses) AccountLimitsWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountLimitsResponse, error) + func (c *ClientWithResponses) AccountPhoneDeleteWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountPhoneDeleteResponse, error) + func (c *ClientWithResponses) AccountPhoneGetWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountPhoneGetResponse, error) + func (c *ClientWithResponses) AccountPhoneResendWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountPhoneResendResponse, error) + func (c *ClientWithResponses) AccountPhoneStartWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountPhoneStartResponse, error) + func (c *ClientWithResponses) AccountPhoneStartWithResponse(ctx context.Context, body AccountPhoneStartJSONRequestBody, ...) (*AccountPhoneStartResponse, error) + func (c *ClientWithResponses) AccountPhoneVerifyWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountPhoneVerifyResponse, error) + func (c *ClientWithResponses) AccountPhoneVerifyWithResponse(ctx context.Context, body AccountPhoneVerifyJSONRequestBody, ...) (*AccountPhoneVerifyResponse, error) + func (c *ClientWithResponses) AccountSupportAccessWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountSupportAccessResponse, error) + func (c *ClientWithResponses) AccountTotpConfirmWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountTotpConfirmResponse, error) + func (c *ClientWithResponses) AccountTotpConfirmWithResponse(ctx context.Context, body AccountTotpConfirmJSONRequestBody, ...) (*AccountTotpConfirmResponse, error) + func (c *ClientWithResponses) AccountTotpDisableWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountTotpDisableResponse, error) + func (c *ClientWithResponses) AccountTotpDisableWithResponse(ctx context.Context, body AccountTotpDisableJSONRequestBody, ...) (*AccountTotpDisableResponse, error) + func (c *ClientWithResponses) AccountTotpRecoveryCodesWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountTotpRecoveryCodesResponse, error) + func (c *ClientWithResponses) AccountTotpRecoveryCodesWithResponse(ctx context.Context, body AccountTotpRecoveryCodesJSONRequestBody, ...) (*AccountTotpRecoveryCodesResponse, error) + func (c *ClientWithResponses) AccountTotpSetupWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountTotpSetupResponse, error) + func (c *ClientWithResponses) AccountTotpSetupWithResponse(ctx context.Context, body AccountTotpSetupJSONRequestBody, ...) (*AccountTotpSetupResponse, error) + func (c *ClientWithResponses) AccountTotpStatusWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountTotpStatusResponse, error) + func (c *ClientWithResponses) AccountUpdateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AccountUpdateResponse, error) + func (c *ClientWithResponses) AccountUpdateWithResponse(ctx context.Context, body AccountUpdateJSONRequestBody, ...) (*AccountUpdateResponse, error) + func (c *ClientWithResponses) AnnouncementBannerDismissWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*AnnouncementBannerDismissResponse, error) + func (c *ClientWithResponses) AnnouncementBannerGetWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AnnouncementBannerGetResponse, error) + func (c *ClientWithResponses) AnnouncementsGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*AnnouncementsGetResponse, error) + func (c *ClientWithResponses) AnnouncementsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AnnouncementsListResponse, error) + func (c *ClientWithResponses) ApiTokenCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*ApiTokenCreateResponse, error) + func (c *ClientWithResponses) ApiTokenCreateWithResponse(ctx context.Context, body ApiTokenCreateJSONRequestBody, ...) (*ApiTokenCreateResponse, error) + func (c *ClientWithResponses) ApiTokenRevokeWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ApiTokenRevokeResponse, error) + func (c *ClientWithResponses) ApiTokensListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*ApiTokensListResponse, error) + func (c *ClientWithResponses) AppActionWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppActionResponse, error) + func (c *ClientWithResponses) AppActionWithResponse(ctx context.Context, code string, body AppActionJSONRequestBody, ...) (*AppActionResponse, error) + func (c *ClientWithResponses) AppAttachmentCreateWithBodyWithResponse(ctx context.Context, appCode string, contentType string, body io.Reader, ...) (*AppAttachmentCreateResponse, error) + func (c *ClientWithResponses) AppAttachmentCreateWithResponse(ctx context.Context, appCode string, body AppAttachmentCreateJSONRequestBody, ...) (*AppAttachmentCreateResponse, error) + func (c *ClientWithResponses) AppAttachmentDeleteWithResponse(ctx context.Context, appCode string, attachmentID string, ...) (*AppAttachmentDeleteResponse, error) + func (c *ClientWithResponses) AppAttachmentVerifyWithResponse(ctx context.Context, appCode string, attachmentID string, ...) (*AppAttachmentVerifyResponse, error) + func (c *ClientWithResponses) AppAttachmentsListWithResponse(ctx context.Context, appCode string, reqEditors ...RequestEditorFn) (*AppAttachmentsListResponse, error) + func (c *ClientWithResponses) AppAutoDeploySetWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppAutoDeploySetResponse, error) + func (c *ClientWithResponses) AppAutoDeploySetWithResponse(ctx context.Context, code string, body AppAutoDeploySetJSONRequestBody, ...) (*AppAutoDeploySetResponse, error) + func (c *ClientWithResponses) AppBuildCancelWithResponse(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*AppBuildCancelResponse, error) + func (c *ClientWithResponses) AppBuildCreateWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppBuildCreateResponse, error) + func (c *ClientWithResponses) AppBuildCreateWithResponse(ctx context.Context, code string, body AppBuildCreateJSONRequestBody, ...) (*AppBuildCreateResponse, error) + func (c *ClientWithResponses) AppBuildGetWithResponse(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*AppBuildGetResponse, error) + func (c *ClientWithResponses) AppBuildsListWithResponse(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppBuildsListResponse, error) + func (c *ClientWithResponses) AppCreateWithBodyWithResponse(ctx context.Context, params *AppCreateParams, contentType string, ...) (*AppCreateResponse, error) + func (c *ClientWithResponses) AppCreateWithResponse(ctx context.Context, params *AppCreateParams, body AppCreateJSONRequestBody, ...) (*AppCreateResponse, error) + func (c *ClientWithResponses) AppDeleteWithResponse(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppDeleteResponse, error) + func (c *ClientWithResponses) AppDetectBuildWithResponse(ctx context.Context, params *AppDetectBuildParams, ...) (*AppDetectBuildResponse, error) + func (c *ClientWithResponses) AppDomainAddWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppDomainAddResponse, error) + func (c *ClientWithResponses) AppDomainAddWithResponse(ctx context.Context, code string, body AppDomainAddJSONRequestBody, ...) (*AppDomainAddResponse, error) + func (c *ClientWithResponses) AppDomainDeleteWithResponse(ctx context.Context, code string, domainID string, ...) (*AppDomainDeleteResponse, error) + func (c *ClientWithResponses) AppDomainVerifyWithResponse(ctx context.Context, code string, domainID string, ...) (*AppDomainVerifyResponse, error) + func (c *ClientWithResponses) AppDomainsListWithResponse(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppDomainsListResponse, error) + func (c *ClientWithResponses) AppEnvGetWithResponse(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppEnvGetResponse, error) + func (c *ClientWithResponses) AppEnvSetWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppEnvSetResponse, error) + func (c *ClientWithResponses) AppEnvSetWithResponse(ctx context.Context, code string, body AppEnvSetJSONRequestBody, ...) (*AppEnvSetResponse, error) + func (c *ClientWithResponses) AppEventsListWithResponse(ctx context.Context, code string, params *AppEventsListParams, ...) (*AppEventsListResponse, error) + func (c *ClientWithResponses) AppExecStartWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppExecStartResponse, error) + func (c *ClientWithResponses) AppExecStartWithResponse(ctx context.Context, code string, body AppExecStartJSONRequestBody, ...) (*AppExecStartResponse, error) + func (c *ClientWithResponses) AppGetWithResponse(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppGetResponse, error) + func (c *ClientWithResponses) AppLogsGetWithResponse(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*AppLogsGetResponse, error) + func (c *ClientWithResponses) AppLogsRequestWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppLogsRequestResponse, error) + func (c *ClientWithResponses) AppLogsRequestWithResponse(ctx context.Context, code string, body AppLogsRequestJSONRequestBody, ...) (*AppLogsRequestResponse, error) + func (c *ClientWithResponses) AppMetricsWithResponse(ctx context.Context, code string, params *AppMetricsParams, ...) (*AppMetricsResponse, error) + func (c *ClientWithResponses) AppPlansListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AppPlansListResponse, error) + func (c *ClientWithResponses) AppPresetsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AppPresetsListResponse, error) + func (c *ClientWithResponses) AppProjectSetWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppProjectSetResponse, error) + func (c *ClientWithResponses) AppProjectSetWithResponse(ctx context.Context, code string, body AppProjectSetJSONRequestBody, ...) (*AppProjectSetResponse, error) + func (c *ClientWithResponses) AppReleasesListWithResponse(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppReleasesListResponse, error) + func (c *ClientWithResponses) AppResizeWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppResizeResponse, error) + func (c *ClientWithResponses) AppResizeWithResponse(ctx context.Context, code string, body AppResizeJSONRequestBody, ...) (*AppResizeResponse, error) + func (c *ClientWithResponses) AppRollbackWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppRollbackResponse, error) + func (c *ClientWithResponses) AppRollbackWithResponse(ctx context.Context, code string, body AppRollbackJSONRequestBody, ...) (*AppRollbackResponse, error) + func (c *ClientWithResponses) AppScaleWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppScaleResponse, error) + func (c *ClientWithResponses) AppScaleWithResponse(ctx context.Context, code string, body AppScaleJSONRequestBody, ...) (*AppScaleResponse, error) + func (c *ClientWithResponses) AppSourceSetWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppSourceSetResponse, error) + func (c *ClientWithResponses) AppSourceSetWithResponse(ctx context.Context, code string, body AppSourceSetJSONRequestBody, ...) (*AppSourceSetResponse, error) + func (c *ClientWithResponses) AppTagsSetWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppTagsSetResponse, error) + func (c *ClientWithResponses) AppTagsSetWithResponse(ctx context.Context, code string, body AppTagsSetJSONRequestBody, ...) (*AppTagsSetResponse, error) + func (c *ClientWithResponses) AppUpdateWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppUpdateResponse, error) + func (c *ClientWithResponses) AppUpdateWithResponse(ctx context.Context, code string, body AppUpdateJSONRequestBody, ...) (*AppUpdateResponse, error) + func (c *ClientWithResponses) AppsListWithResponse(ctx context.Context, params *AppsListParams, reqEditors ...RequestEditorFn) (*AppsListResponse, error) + func (c *ClientWithResponses) AuthConfirmEmailChangeWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AuthConfirmEmailChangeResponse, error) + func (c *ClientWithResponses) AuthConfirmEmailChangeWithResponse(ctx context.Context, body AuthConfirmEmailChangeJSONRequestBody, ...) (*AuthConfirmEmailChangeResponse, error) + func (c *ClientWithResponses) AuthImpersonateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AuthImpersonateResponse, error) + func (c *ClientWithResponses) AuthImpersonateWithResponse(ctx context.Context, body AuthImpersonateJSONRequestBody, ...) (*AuthImpersonateResponse, error) + func (c *ClientWithResponses) AuthLoginWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AuthLoginResponse, error) + func (c *ClientWithResponses) AuthLoginWithResponse(ctx context.Context, body AuthLoginJSONRequestBody, ...) (*AuthLoginResponse, error) + func (c *ClientWithResponses) AuthLogoutWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AuthLogoutResponse, error) + func (c *ClientWithResponses) AuthMfaVerifyWithBodyWithResponse(ctx context.Context, params *AuthMfaVerifyParams, contentType string, ...) (*AuthMfaVerifyResponse, error) + func (c *ClientWithResponses) AuthMfaVerifyWithResponse(ctx context.Context, params *AuthMfaVerifyParams, ...) (*AuthMfaVerifyResponse, error) + func (c *ClientWithResponses) AuthOauthCallbackWithResponse(ctx context.Context, provider AuthOauthCallbackParamsProvider, ...) (*AuthOauthCallbackResponse, error) + func (c *ClientWithResponses) AuthOauthProvidersWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AuthOauthProvidersResponse, error) + func (c *ClientWithResponses) AuthOauthStartWithResponse(ctx context.Context, provider AuthOauthStartParamsProvider, ...) (*AuthOauthStartResponse, error) + func (c *ClientWithResponses) AuthPasswordResetRequestWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AuthPasswordResetRequestResponse, error) + func (c *ClientWithResponses) AuthPasswordResetRequestWithResponse(ctx context.Context, body AuthPasswordResetRequestJSONRequestBody, ...) (*AuthPasswordResetRequestResponse, error) + func (c *ClientWithResponses) AuthPasswordResetWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AuthPasswordResetResponse, error) + func (c *ClientWithResponses) AuthPasswordResetWithResponse(ctx context.Context, body AuthPasswordResetJSONRequestBody, ...) (*AuthPasswordResetResponse, error) + func (c *ClientWithResponses) AuthPolicyWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AuthPolicyResponse, error) + func (c *ClientWithResponses) AuthRegisterWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AuthRegisterResponse, error) + func (c *ClientWithResponses) AuthRegisterWithResponse(ctx context.Context, body AuthRegisterJSONRequestBody, ...) (*AuthRegisterResponse, error) + func (c *ClientWithResponses) AuthSessionRevokeWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*AuthSessionRevokeResponse, error) + func (c *ClientWithResponses) AuthSessionsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*AuthSessionsListResponse, error) + func (c *ClientWithResponses) AuthVerifyEmailResendWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AuthVerifyEmailResendResponse, error) + func (c *ClientWithResponses) AuthVerifyEmailResendWithResponse(ctx context.Context, body AuthVerifyEmailResendJSONRequestBody, ...) (*AuthVerifyEmailResendResponse, error) + func (c *ClientWithResponses) AuthVerifyEmailWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*AuthVerifyEmailResponse, error) + func (c *ClientWithResponses) AuthVerifyEmailWithResponse(ctx context.Context, body AuthVerifyEmailJSONRequestBody, ...) (*AuthVerifyEmailResponse, error) + func (c *ClientWithResponses) DatabaseAlertDeleteWithResponse(ctx context.Context, databaseId string, metric DatabaseAlertDeleteParamsMetric, ...) (*DatabaseAlertDeleteResponse, error) + func (c *ClientWithResponses) DatabaseAlertSaveWithBodyWithResponse(ctx context.Context, databaseId string, contentType string, body io.Reader, ...) (*DatabaseAlertSaveResponse, error) + func (c *ClientWithResponses) DatabaseAlertSaveWithResponse(ctx context.Context, databaseId string, body DatabaseAlertSaveJSONRequestBody, ...) (*DatabaseAlertSaveResponse, error) + func (c *ClientWithResponses) DatabaseAlertsListWithResponse(ctx context.Context, databaseId string, reqEditors ...RequestEditorFn) (*DatabaseAlertsListResponse, error) + func (c *ClientWithResponses) DatabaseBackupCreateWithResponse(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseBackupCreateResponse, error) + func (c *ClientWithResponses) DatabaseBackupsListWithResponse(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseBackupsListResponse, error) + func (c *ClientWithResponses) DatabaseConnectionGetWithResponse(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseConnectionGetResponse, error) + func (c *ClientWithResponses) DatabaseCreateWithBodyWithResponse(ctx context.Context, params *DatabaseCreateParams, contentType string, ...) (*DatabaseCreateResponse, error) + func (c *ClientWithResponses) DatabaseCreateWithResponse(ctx context.Context, params *DatabaseCreateParams, ...) (*DatabaseCreateResponse, error) + func (c *ClientWithResponses) DatabaseDbCreateWithBodyWithResponse(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseDbCreateResponse, error) + func (c *ClientWithResponses) DatabaseDbCreateWithResponse(ctx context.Context, databaseID string, body DatabaseDbCreateJSONRequestBody, ...) (*DatabaseDbCreateResponse, error) + func (c *ClientWithResponses) DatabaseDeleteWithResponse(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseDeleteResponse, error) + func (c *ClientWithResponses) DatabaseGetWithResponse(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseGetResponse, error) + func (c *ClientWithResponses) DatabaseMetricsListWithResponse(ctx context.Context, databaseId string, params *DatabaseMetricsListParams, ...) (*DatabaseMetricsListResponse, error) + func (c *ClientWithResponses) DatabaseOptionsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*DatabaseOptionsListResponse, error) + func (c *ClientWithResponses) DatabaseProjectSetWithBodyWithResponse(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseProjectSetResponse, error) + func (c *ClientWithResponses) DatabaseProjectSetWithResponse(ctx context.Context, databaseID string, body DatabaseProjectSetJSONRequestBody, ...) (*DatabaseProjectSetResponse, error) + func (c *ClientWithResponses) DatabasePublicAccessSetWithBodyWithResponse(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabasePublicAccessSetResponse, error) + func (c *ClientWithResponses) DatabasePublicAccessSetWithResponse(ctx context.Context, databaseID string, ...) (*DatabasePublicAccessSetResponse, error) + func (c *ClientWithResponses) DatabaseResizeWithBodyWithResponse(ctx context.Context, databaseId string, contentType string, body io.Reader, ...) (*DatabaseResizeResponse, error) + func (c *ClientWithResponses) DatabaseResizeWithResponse(ctx context.Context, databaseId string, body DatabaseResizeJSONRequestBody, ...) (*DatabaseResizeResponse, error) + func (c *ClientWithResponses) DatabaseRestoreCreateWithBodyWithResponse(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseRestoreCreateResponse, error) + func (c *ClientWithResponses) DatabaseRestoreCreateWithResponse(ctx context.Context, databaseID string, ...) (*DatabaseRestoreCreateResponse, error) + func (c *ClientWithResponses) DatabaseTagsSetWithBodyWithResponse(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseTagsSetResponse, error) + func (c *ClientWithResponses) DatabaseTagsSetWithResponse(ctx context.Context, databaseID string, body DatabaseTagsSetJSONRequestBody, ...) (*DatabaseTagsSetResponse, error) + func (c *ClientWithResponses) DatabaseTrustedSourcesSetWithBodyWithResponse(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseTrustedSourcesSetResponse, error) + func (c *ClientWithResponses) DatabaseTrustedSourcesSetWithResponse(ctx context.Context, databaseID string, ...) (*DatabaseTrustedSourcesSetResponse, error) + func (c *ClientWithResponses) DatabaseUserCreateWithBodyWithResponse(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseUserCreateResponse, error) + func (c *ClientWithResponses) DatabaseUserCreateWithResponse(ctx context.Context, databaseID string, body DatabaseUserCreateJSONRequestBody, ...) (*DatabaseUserCreateResponse, error) + func (c *ClientWithResponses) DatabaseUserDeleteWithResponse(ctx context.Context, databaseID string, userID string, ...) (*DatabaseUserDeleteResponse, error) + func (c *ClientWithResponses) DatabaseUserPasswordResetWithResponse(ctx context.Context, databaseID string, userID string, ...) (*DatabaseUserPasswordResetResponse, error) + func (c *ClientWithResponses) DatabasesListWithResponse(ctx context.Context, params *DatabasesListParams, ...) (*DatabasesListResponse, error) + func (c *ClientWithResponses) DnsRecordCreateWithBodyWithResponse(ctx context.Context, id string, params *DnsRecordCreateParams, ...) (*DnsRecordCreateResponse, error) + func (c *ClientWithResponses) DnsRecordCreateWithResponse(ctx context.Context, id string, params *DnsRecordCreateParams, ...) (*DnsRecordCreateResponse, error) + func (c *ClientWithResponses) DnsRecordDeleteWithResponse(ctx context.Context, id string, recordId string, reqEditors ...RequestEditorFn) (*DnsRecordDeleteResponse, error) + func (c *ClientWithResponses) DnsRecordUpdateWithBodyWithResponse(ctx context.Context, id string, recordId string, contentType string, ...) (*DnsRecordUpdateResponse, error) + func (c *ClientWithResponses) DnsRecordUpdateWithResponse(ctx context.Context, id string, recordId string, ...) (*DnsRecordUpdateResponse, error) + func (c *ClientWithResponses) DnsZoneCreateWithBodyWithResponse(ctx context.Context, params *DnsZoneCreateParams, contentType string, ...) (*DnsZoneCreateResponse, error) + func (c *ClientWithResponses) DnsZoneCreateWithResponse(ctx context.Context, params *DnsZoneCreateParams, ...) (*DnsZoneCreateResponse, error) + func (c *ClientWithResponses) DnsZoneDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*DnsZoneDeleteResponse, error) + func (c *ClientWithResponses) DnsZoneGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*DnsZoneGetResponse, error) + func (c *ClientWithResponses) DnsZoneProjectSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DnsZoneProjectSetResponse, error) + func (c *ClientWithResponses) DnsZoneProjectSetWithResponse(ctx context.Context, id string, body DnsZoneProjectSetJSONRequestBody, ...) (*DnsZoneProjectSetResponse, error) + func (c *ClientWithResponses) DnsZoneTagsSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DnsZoneTagsSetResponse, error) + func (c *ClientWithResponses) DnsZoneTagsSetWithResponse(ctx context.Context, id string, body DnsZoneTagsSetJSONRequestBody, ...) (*DnsZoneTagsSetResponse, error) + func (c *ClientWithResponses) DnsZonesListWithResponse(ctx context.Context, params *DnsZonesListParams, reqEditors ...RequestEditorFn) (*DnsZonesListResponse, error) + func (c *ClientWithResponses) DomainAutoRenewSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainAutoRenewSetResponse, error) + func (c *ClientWithResponses) DomainAutoRenewSetWithResponse(ctx context.Context, id string, body DomainAutoRenewSetJSONRequestBody, ...) (*DomainAutoRenewSetResponse, error) + func (c *ClientWithResponses) DomainContactCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*DomainContactCreateResponse, error) + func (c *ClientWithResponses) DomainContactCreateWithResponse(ctx context.Context, body DomainContactCreateJSONRequestBody, ...) (*DomainContactCreateResponse, error) + func (c *ClientWithResponses) DomainContactDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*DomainContactDeleteResponse, error) + func (c *ClientWithResponses) DomainContactSuggestWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*DomainContactSuggestResponse, error) + func (c *ClientWithResponses) DomainContactUpdateWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainContactUpdateResponse, error) + func (c *ClientWithResponses) DomainContactUpdateWithResponse(ctx context.Context, id string, body DomainContactUpdateJSONRequestBody, ...) (*DomainContactUpdateResponse, error) + func (c *ClientWithResponses) DomainContactsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*DomainContactsListResponse, error) + func (c *ClientWithResponses) DomainGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*DomainGetResponse, error) + func (c *ClientWithResponses) DomainLockSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainLockSetResponse, error) + func (c *ClientWithResponses) DomainLockSetWithResponse(ctx context.Context, id string, body DomainLockSetJSONRequestBody, ...) (*DomainLockSetResponse, error) + func (c *ClientWithResponses) DomainNameserversSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainNameserversSetResponse, error) + func (c *ClientWithResponses) DomainNameserversSetWithResponse(ctx context.Context, id string, body DomainNameserversSetJSONRequestBody, ...) (*DomainNameserversSetResponse, error) + func (c *ClientWithResponses) DomainPrivacySetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainPrivacySetResponse, error) + func (c *ClientWithResponses) DomainPrivacySetWithResponse(ctx context.Context, id string, body DomainPrivacySetJSONRequestBody, ...) (*DomainPrivacySetResponse, error) + func (c *ClientWithResponses) DomainProjectSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainProjectSetResponse, error) + func (c *ClientWithResponses) DomainProjectSetWithResponse(ctx context.Context, id string, body DomainProjectSetJSONRequestBody, ...) (*DomainProjectSetResponse, error) + func (c *ClientWithResponses) DomainRegisterWithBodyWithResponse(ctx context.Context, params *DomainRegisterParams, contentType string, ...) (*DomainRegisterResponse, error) + func (c *ClientWithResponses) DomainRegisterWithResponse(ctx context.Context, params *DomainRegisterParams, ...) (*DomainRegisterResponse, error) + func (c *ClientWithResponses) DomainRenewWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainRenewResponse, error) + func (c *ClientWithResponses) DomainRenewWithResponse(ctx context.Context, id string, body DomainRenewJSONRequestBody, ...) (*DomainRenewResponse, error) + func (c *ClientWithResponses) DomainSearchWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*DomainSearchResponse, error) + func (c *ClientWithResponses) DomainSearchWithResponse(ctx context.Context, body DomainSearchJSONRequestBody, ...) (*DomainSearchResponse, error) + func (c *ClientWithResponses) DomainTagsSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainTagsSetResponse, error) + func (c *ClientWithResponses) DomainTagsSetWithResponse(ctx context.Context, id string, body DomainTagsSetJSONRequestBody, ...) (*DomainTagsSetResponse, error) + func (c *ClientWithResponses) DomainTldsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*DomainTldsListResponse, error) + func (c *ClientWithResponses) DomainTransferWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*DomainTransferResponse, error) + func (c *ClientWithResponses) DomainTransferWithResponse(ctx context.Context, body DomainTransferJSONRequestBody, ...) (*DomainTransferResponse, error) + func (c *ClientWithResponses) DomainsListWithResponse(ctx context.Context, params *DomainsListParams, reqEditors ...RequestEditorFn) (*DomainsListResponse, error) + func (c *ClientWithResponses) FirewallCreateWithBodyWithResponse(ctx context.Context, params *FirewallCreateParams, contentType string, ...) (*FirewallCreateResponse, error) + func (c *ClientWithResponses) FirewallCreateWithResponse(ctx context.Context, params *FirewallCreateParams, ...) (*FirewallCreateResponse, error) + func (c *ClientWithResponses) FirewallDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*FirewallDeleteResponse, error) + func (c *ClientWithResponses) FirewallGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*FirewallGetResponse, error) + func (c *ClientWithResponses) FirewallRulesReplaceWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*FirewallRulesReplaceResponse, error) + func (c *ClientWithResponses) FirewallRulesReplaceWithResponse(ctx context.Context, id string, body FirewallRulesReplaceJSONRequestBody, ...) (*FirewallRulesReplaceResponse, error) + func (c *ClientWithResponses) FirewallServerAttachWithResponse(ctx context.Context, id string, serverId string, reqEditors ...RequestEditorFn) (*FirewallServerAttachResponse, error) + func (c *ClientWithResponses) FirewallServerDetachWithResponse(ctx context.Context, id string, serverId string, reqEditors ...RequestEditorFn) (*FirewallServerDetachResponse, error) + func (c *ClientWithResponses) FirewallUpdateWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*FirewallUpdateResponse, error) + func (c *ClientWithResponses) FirewallUpdateWithResponse(ctx context.Context, id string, body FirewallUpdateJSONRequestBody, ...) (*FirewallUpdateResponse, error) + func (c *ClientWithResponses) FirewallsListWithResponse(ctx context.Context, params *FirewallsListParams, ...) (*FirewallsListResponse, error) + func (c *ClientWithResponses) FloatingIpAttachWithBodyWithResponse(ctx context.Context, floatingIpID string, contentType string, body io.Reader, ...) (*FloatingIpAttachResponse, error) + func (c *ClientWithResponses) FloatingIpAttachWithResponse(ctx context.Context, floatingIpID string, body FloatingIpAttachJSONRequestBody, ...) (*FloatingIpAttachResponse, error) + func (c *ClientWithResponses) FloatingIpCreateWithBodyWithResponse(ctx context.Context, params *FloatingIpCreateParams, contentType string, ...) (*FloatingIpCreateResponse, error) + func (c *ClientWithResponses) FloatingIpCreateWithResponse(ctx context.Context, params *FloatingIpCreateParams, ...) (*FloatingIpCreateResponse, error) + func (c *ClientWithResponses) FloatingIpDeleteWithResponse(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*FloatingIpDeleteResponse, error) + func (c *ClientWithResponses) FloatingIpDetachWithResponse(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*FloatingIpDetachResponse, error) + func (c *ClientWithResponses) FloatingIpGetWithResponse(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*FloatingIpGetResponse, error) + func (c *ClientWithResponses) FloatingIpsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*FloatingIpsListResponse, error) + func (c *ClientWithResponses) FxRateWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*FxRateResponse, error) + func (c *ClientWithResponses) GitConnectionDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*GitConnectionDeleteResponse, error) + func (c *ClientWithResponses) GitConnectionsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GitConnectionsListResponse, error) + func (c *ClientWithResponses) GitInstallCallbackWithResponse(ctx context.Context, provider GitInstallCallbackParamsProvider, ...) (*GitInstallCallbackResponse, error) + func (c *ClientWithResponses) GitInstallSetupWithResponse(ctx context.Context, provider GitInstallSetupParamsProvider, ...) (*GitInstallSetupResponse, error) + func (c *ClientWithResponses) GitInstallStartWithResponse(ctx context.Context, provider GitInstallStartParamsProvider, ...) (*GitInstallStartResponse, error) + func (c *ClientWithResponses) GitProvidersListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*GitProvidersListResponse, error) + func (c *ClientWithResponses) GitRepositoriesListWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*GitRepositoriesListResponse, error) + func (c *ClientWithResponses) ImagesListWithResponse(ctx context.Context, params *ImagesListParams, reqEditors ...RequestEditorFn) (*ImagesListResponse, error) + func (c *ClientWithResponses) IsoCreateWithBodyWithResponse(ctx context.Context, params *IsoCreateParams, contentType string, ...) (*IsoCreateResponse, error) + func (c *ClientWithResponses) IsoCreateWithResponse(ctx context.Context, params *IsoCreateParams, body IsoCreateJSONRequestBody, ...) (*IsoCreateResponse, error) + func (c *ClientWithResponses) IsoDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*IsoDeleteResponse, error) + func (c *ClientWithResponses) IsoGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*IsoGetResponse, error) + func (c *ClientWithResponses) IsoListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*IsoListResponse, error) + func (c *ClientWithResponses) LoadBalancerBackendsSetWithBodyWithResponse(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*LoadBalancerBackendsSetResponse, error) + func (c *ClientWithResponses) LoadBalancerBackendsSetWithResponse(ctx context.Context, loadBalancerID string, ...) (*LoadBalancerBackendsSetResponse, error) + func (c *ClientWithResponses) LoadBalancerCreateWithBodyWithResponse(ctx context.Context, params *LoadBalancerCreateParams, contentType string, ...) (*LoadBalancerCreateResponse, error) + func (c *ClientWithResponses) LoadBalancerCreateWithResponse(ctx context.Context, params *LoadBalancerCreateParams, ...) (*LoadBalancerCreateResponse, error) + func (c *ClientWithResponses) LoadBalancerDeleteWithResponse(ctx context.Context, loadBalancerID string, reqEditors ...RequestEditorFn) (*LoadBalancerDeleteResponse, error) + func (c *ClientWithResponses) LoadBalancerGetWithResponse(ctx context.Context, loadBalancerID string, reqEditors ...RequestEditorFn) (*LoadBalancerGetResponse, error) + func (c *ClientWithResponses) LoadBalancerProjectSetWithBodyWithResponse(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*LoadBalancerProjectSetResponse, error) + func (c *ClientWithResponses) LoadBalancerProjectSetWithResponse(ctx context.Context, loadBalancerID string, ...) (*LoadBalancerProjectSetResponse, error) + func (c *ClientWithResponses) LoadBalancerRulesReplaceWithBodyWithResponse(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*LoadBalancerRulesReplaceResponse, error) + func (c *ClientWithResponses) LoadBalancerRulesReplaceWithResponse(ctx context.Context, loadBalancerID string, ...) (*LoadBalancerRulesReplaceResponse, error) + func (c *ClientWithResponses) LoadBalancerTagsSetWithBodyWithResponse(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*LoadBalancerTagsSetResponse, error) + func (c *ClientWithResponses) LoadBalancerTagsSetWithResponse(ctx context.Context, loadBalancerID string, ...) (*LoadBalancerTagsSetResponse, error) + func (c *ClientWithResponses) LoadBalancersListWithResponse(ctx context.Context, params *LoadBalancersListParams, ...) (*LoadBalancersListResponse, error) + func (c *ClientWithResponses) NetworkCreateWithBodyWithResponse(ctx context.Context, params *NetworkCreateParams, contentType string, ...) (*NetworkCreateResponse, error) + func (c *ClientWithResponses) NetworkCreateWithResponse(ctx context.Context, params *NetworkCreateParams, ...) (*NetworkCreateResponse, error) + func (c *ClientWithResponses) NetworkDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*NetworkDeleteResponse, error) + func (c *ClientWithResponses) NetworkGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*NetworkGetResponse, error) + func (c *ClientWithResponses) NetworkProjectSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*NetworkProjectSetResponse, error) + func (c *ClientWithResponses) NetworkProjectSetWithResponse(ctx context.Context, id string, body NetworkProjectSetJSONRequestBody, ...) (*NetworkProjectSetResponse, error) + func (c *ClientWithResponses) NetworkTagsSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*NetworkTagsSetResponse, error) + func (c *ClientWithResponses) NetworkTagsSetWithResponse(ctx context.Context, id string, body NetworkTagsSetJSONRequestBody, ...) (*NetworkTagsSetResponse, error) + func (c *ClientWithResponses) NetworksListWithResponse(ctx context.Context, params *NetworksListParams, reqEditors ...RequestEditorFn) (*NetworksListResponse, error) + func (c *ClientWithResponses) NotificationDeleteWithResponse(ctx context.Context, id int64, reqEditors ...RequestEditorFn) (*NotificationDeleteResponse, error) + func (c *ClientWithResponses) NotificationsListWithResponse(ctx context.Context, params *NotificationsListParams, ...) (*NotificationsListResponse, error) + func (c *ClientWithResponses) NotificationsMarkReadWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*NotificationsMarkReadResponse, error) + func (c *ClientWithResponses) NotificationsMarkReadWithResponse(ctx context.Context, body NotificationsMarkReadJSONRequestBody, ...) (*NotificationsMarkReadResponse, error) + func (c *ClientWithResponses) OrganizationInvitationAcceptWithResponse(ctx context.Context, token string, reqEditors ...RequestEditorFn) (*OrganizationInvitationAcceptResponse, error) + func (c *ClientWithResponses) OrganizationInvitationGetWithResponse(ctx context.Context, token string, reqEditors ...RequestEditorFn) (*OrganizationInvitationGetResponse, error) + func (c *ClientWithResponses) OrganizationInvitationsCreateWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*OrganizationInvitationsCreateResponse, error) + func (c *ClientWithResponses) OrganizationInvitationsCreateWithResponse(ctx context.Context, id string, ...) (*OrganizationInvitationsCreateResponse, error) + func (c *ClientWithResponses) OrganizationInvitationsListWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationInvitationsListResponse, error) + func (c *ClientWithResponses) OrganizationInvitationsRevokeWithResponse(ctx context.Context, id string, invitationId string, ...) (*OrganizationInvitationsRevokeResponse, error) + func (c *ClientWithResponses) OrganizationMemberRoleUpdateWithBodyWithResponse(ctx context.Context, id string, userId string, contentType string, ...) (*OrganizationMemberRoleUpdateResponse, error) + func (c *ClientWithResponses) OrganizationMemberRoleUpdateWithResponse(ctx context.Context, id string, userId string, ...) (*OrganizationMemberRoleUpdateResponse, error) + func (c *ClientWithResponses) OrganizationMembersListWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationMembersListResponse, error) + func (c *ClientWithResponses) OrganizationMembersRemoveWithResponse(ctx context.Context, id string, userId string, reqEditors ...RequestEditorFn) (*OrganizationMembersRemoveResponse, error) + func (c *ClientWithResponses) OrganizationsActivateWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationsActivateResponse, error) + func (c *ClientWithResponses) OrganizationsCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*OrganizationsCreateResponse, error) + func (c *ClientWithResponses) OrganizationsCreateWithResponse(ctx context.Context, body OrganizationsCreateJSONRequestBody, ...) (*OrganizationsCreateResponse, error) + func (c *ClientWithResponses) OrganizationsDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationsDeleteResponse, error) + func (c *ClientWithResponses) OrganizationsGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationsGetResponse, error) + func (c *ClientWithResponses) OrganizationsLeaveWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationsLeaveResponse, error) + func (c *ClientWithResponses) OrganizationsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*OrganizationsListResponse, error) + func (c *ClientWithResponses) OrganizationsRenameWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*OrganizationsRenameResponse, error) + func (c *ClientWithResponses) OrganizationsRenameWithResponse(ctx context.Context, id string, body OrganizationsRenameJSONRequestBody, ...) (*OrganizationsRenameResponse, error) + func (c *ClientWithResponses) PaymentIntentsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*PaymentIntentsListResponse, error) + func (c *ClientWithResponses) PaymentTopupInitWithBodyWithResponse(ctx context.Context, params *PaymentTopupInitParams, contentType string, ...) (*PaymentTopupInitResponse, error) + func (c *ClientWithResponses) PaymentTopupInitWithResponse(ctx context.Context, params *PaymentTopupInitParams, ...) (*PaymentTopupInitResponse, error) + func (c *ClientWithResponses) PlanTypesListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*PlanTypesListResponse, error) + func (c *ClientWithResponses) PlansListWithResponse(ctx context.Context, params *PlansListParams, reqEditors ...RequestEditorFn) (*PlansListResponse, error) + func (c *ClientWithResponses) ProjectCreateWithBodyWithResponse(ctx context.Context, params *ProjectCreateParams, contentType string, ...) (*ProjectCreateResponse, error) + func (c *ClientWithResponses) ProjectCreateWithResponse(ctx context.Context, params *ProjectCreateParams, ...) (*ProjectCreateResponse, error) + func (c *ClientWithResponses) ProjectDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ProjectDeleteResponse, error) + func (c *ClientWithResponses) ProjectGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ProjectGetResponse, error) + func (c *ClientWithResponses) ProjectUpdateWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ProjectUpdateResponse, error) + func (c *ClientWithResponses) ProjectUpdateWithResponse(ctx context.Context, id string, body ProjectUpdateJSONRequestBody, ...) (*ProjectUpdateResponse, error) + func (c *ClientWithResponses) ProjectsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*ProjectsListResponse, error) + func (c *ClientWithResponses) RdnsClearWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*RdnsClearResponse, error) + func (c *ClientWithResponses) RdnsSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*RdnsSetResponse, error) + func (c *ClientWithResponses) RdnsSetWithResponse(ctx context.Context, id string, body RdnsSetJSONRequestBody, ...) (*RdnsSetResponse, error) + func (c *ClientWithResponses) RegionsListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*RegionsListResponse, error) + func (c *ClientWithResponses) ResourcePricesListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*ResourcePricesListResponse, error) + func (c *ClientWithResponses) ServerActionCreateWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerActionCreateResponse, error) + func (c *ClientWithResponses) ServerActionCreateWithResponse(ctx context.Context, id string, body ServerActionCreateJSONRequestBody, ...) (*ServerActionCreateResponse, error) + func (c *ClientWithResponses) ServerActionGetWithResponse(ctx context.Context, id string, actionId string, reqEditors ...RequestEditorFn) (*ServerActionGetResponse, error) + func (c *ClientWithResponses) ServerAlertDeleteWithResponse(ctx context.Context, id string, metric ServerAlertDeleteParamsMetric, ...) (*ServerAlertDeleteResponse, error) + func (c *ClientWithResponses) ServerAlertSaveWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerAlertSaveResponse, error) + func (c *ClientWithResponses) ServerAlertSaveWithResponse(ctx context.Context, id string, body ServerAlertSaveJSONRequestBody, ...) (*ServerAlertSaveResponse, error) + func (c *ClientWithResponses) ServerAlertsListWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerAlertsListResponse, error) + func (c *ClientWithResponses) ServerAppRetryWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerAppRetryResponse, error) + func (c *ClientWithResponses) ServerBackupCreateWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerBackupCreateResponse, error) + func (c *ClientWithResponses) ServerBackupCreateWithResponse(ctx context.Context, id string, body ServerBackupCreateJSONRequestBody, ...) (*ServerBackupCreateResponse, error) + func (c *ClientWithResponses) ServerBackupDeleteWithResponse(ctx context.Context, id string, backupId string, reqEditors ...RequestEditorFn) (*ServerBackupDeleteResponse, error) + func (c *ClientWithResponses) ServerBackupListAllWithResponse(ctx context.Context, params *ServerBackupListAllParams, ...) (*ServerBackupListAllResponse, error) + func (c *ClientWithResponses) ServerBackupListWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerBackupListResponse, error) + func (c *ClientWithResponses) ServerBackupRestoreWithResponse(ctx context.Context, id string, backupId string, reqEditors ...RequestEditorFn) (*ServerBackupRestoreResponse, error) + func (c *ClientWithResponses) ServerBackupSettingsGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerBackupSettingsGetResponse, error) + func (c *ClientWithResponses) ServerBackupSettingsUpdateWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerBackupSettingsUpdateResponse, error) + func (c *ClientWithResponses) ServerBackupSettingsUpdateWithResponse(ctx context.Context, id string, body ServerBackupSettingsUpdateJSONRequestBody, ...) (*ServerBackupSettingsUpdateResponse, error) + func (c *ClientWithResponses) ServerBillingGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerBillingGetResponse, error) + func (c *ClientWithResponses) ServerConsoleCreateWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerConsoleCreateResponse, error) + func (c *ClientWithResponses) ServerCreateWithBodyWithResponse(ctx context.Context, params *ServerCreateParams, contentType string, ...) (*ServerCreateResponse, error) + func (c *ClientWithResponses) ServerCreateWithResponse(ctx context.Context, params *ServerCreateParams, ...) (*ServerCreateResponse, error) + func (c *ClientWithResponses) ServerDeleteWithResponse(ctx context.Context, id string, params *ServerDeleteParams, ...) (*ServerDeleteResponse, error) + func (c *ClientWithResponses) ServerEventsListWithResponse(ctx context.Context, id string, params *ServerEventsListParams, ...) (*ServerEventsListResponse, error) + func (c *ClientWithResponses) ServerFilesystemsListWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerFilesystemsListResponse, error) + func (c *ClientWithResponses) ServerGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerGetResponse, error) + func (c *ClientWithResponses) ServerLedgerListWithResponse(ctx context.Context, id string, params *ServerLedgerListParams, ...) (*ServerLedgerListResponse, error) + func (c *ClientWithResponses) ServerMetricsListWithResponse(ctx context.Context, id string, params *ServerMetricsListParams, ...) (*ServerMetricsListResponse, error) + func (c *ClientWithResponses) ServerMountISOWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerMountISOResponse, error) + func (c *ClientWithResponses) ServerMountISOWithResponse(ctx context.Context, id string, body ServerMountISOJSONRequestBody, ...) (*ServerMountISOResponse, error) + func (c *ClientWithResponses) ServerNetworkAttachWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerNetworkAttachResponse, error) + func (c *ClientWithResponses) ServerNetworkAttachWithResponse(ctx context.Context, id string, body ServerNetworkAttachJSONRequestBody, ...) (*ServerNetworkAttachResponse, error) + func (c *ClientWithResponses) ServerNetworkDetachWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerNetworkDetachResponse, error) + func (c *ClientWithResponses) ServerPasswordResetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerPasswordResetResponse, error) + func (c *ClientWithResponses) ServerProjectSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerProjectSetResponse, error) + func (c *ClientWithResponses) ServerProjectSetWithResponse(ctx context.Context, id string, body ServerProjectSetJSONRequestBody, ...) (*ServerProjectSetResponse, error) + func (c *ClientWithResponses) ServerRDNSListWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerRDNSListResponse, error) + func (c *ClientWithResponses) ServerRebuildWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerRebuildResponse, error) + func (c *ClientWithResponses) ServerRebuildWithResponse(ctx context.Context, id string, body ServerRebuildJSONRequestBody, ...) (*ServerRebuildResponse, error) + func (c *ClientWithResponses) ServerRenameWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerRenameResponse, error) + func (c *ClientWithResponses) ServerRenameWithResponse(ctx context.Context, id string, body ServerRenameJSONRequestBody, ...) (*ServerRenameResponse, error) + func (c *ClientWithResponses) ServerRescueEnterWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerRescueEnterResponse, error) + func (c *ClientWithResponses) ServerRescueExitWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerRescueExitResponse, error) + func (c *ClientWithResponses) ServerResizeWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerResizeResponse, error) + func (c *ClientWithResponses) ServerResizeWithResponse(ctx context.Context, id string, body ServerResizeJSONRequestBody, ...) (*ServerResizeResponse, error) + func (c *ClientWithResponses) ServerSnapshotCreateWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerSnapshotCreateResponse, error) + func (c *ClientWithResponses) ServerSnapshotCreateWithResponse(ctx context.Context, id string, body ServerSnapshotCreateJSONRequestBody, ...) (*ServerSnapshotCreateResponse, error) + func (c *ClientWithResponses) ServerSnapshotDeleteWithResponse(ctx context.Context, id string, snapshotId string, ...) (*ServerSnapshotDeleteResponse, error) + func (c *ClientWithResponses) ServerSnapshotListAllWithResponse(ctx context.Context, params *ServerSnapshotListAllParams, ...) (*ServerSnapshotListAllResponse, error) + func (c *ClientWithResponses) ServerSnapshotListWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerSnapshotListResponse, error) + func (c *ClientWithResponses) ServerSnapshotRestoreWithResponse(ctx context.Context, id string, snapshotId string, ...) (*ServerSnapshotRestoreResponse, error) + func (c *ClientWithResponses) ServerTagsSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerTagsSetResponse, error) + func (c *ClientWithResponses) ServerTagsSetWithResponse(ctx context.Context, id string, body ServerTagsSetJSONRequestBody, ...) (*ServerTagsSetResponse, error) + func (c *ClientWithResponses) ServerUnmountISOWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerUnmountISOResponse, error) + func (c *ClientWithResponses) ServersListWithResponse(ctx context.Context, params *ServersListParams, reqEditors ...RequestEditorFn) (*ServersListResponse, error) + func (c *ClientWithResponses) SshKeyCreateWithBodyWithResponse(ctx context.Context, params *SshKeyCreateParams, contentType string, ...) (*SshKeyCreateResponse, error) + func (c *ClientWithResponses) SshKeyCreateWithResponse(ctx context.Context, params *SshKeyCreateParams, ...) (*SshKeyCreateResponse, error) + func (c *ClientWithResponses) SshKeyDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*SshKeyDeleteResponse, error) + func (c *ClientWithResponses) SshKeyGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*SshKeyGetResponse, error) + func (c *ClientWithResponses) SshKeysListWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*SshKeysListResponse, error) + func (c *ClientWithResponses) TagsListWithResponse(ctx context.Context, params *TagsListParams, reqEditors ...RequestEditorFn) (*TagsListResponse, error) + func (c *ClientWithResponses) TicketAttachmentDownloadWithResponse(ctx context.Context, code string, id int64, reqEditors ...RequestEditorFn) (*TicketAttachmentDownloadResponse, error) + func (c *ClientWithResponses) TicketCloseWithResponse(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*TicketCloseResponse, error) + func (c *ClientWithResponses) TicketCreateWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*TicketCreateResponse, error) + func (c *ClientWithResponses) TicketCreateWithResponse(ctx context.Context, body TicketCreateJSONRequestBody, ...) (*TicketCreateResponse, error) + func (c *ClientWithResponses) TicketGetWithResponse(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*TicketGetResponse, error) + func (c *ClientWithResponses) TicketReopenWithResponse(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*TicketReopenResponse, error) + func (c *ClientWithResponses) TicketReplyWithBodyWithResponse(ctx context.Context, code string, contentType string, body io.Reader, ...) (*TicketReplyResponse, error) + func (c *ClientWithResponses) TicketReplyWithResponse(ctx context.Context, code string, body TicketReplyJSONRequestBody, ...) (*TicketReplyResponse, error) + func (c *ClientWithResponses) TicketsListWithResponse(ctx context.Context, params *TicketsListParams, reqEditors ...RequestEditorFn) (*TicketsListResponse, error) + func (c *ClientWithResponses) VolumeAttachWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*VolumeAttachResponse, error) + func (c *ClientWithResponses) VolumeAttachWithResponse(ctx context.Context, id string, body VolumeAttachJSONRequestBody, ...) (*VolumeAttachResponse, error) + func (c *ClientWithResponses) VolumeCreateWithBodyWithResponse(ctx context.Context, params *VolumeCreateParams, contentType string, ...) (*VolumeCreateResponse, error) + func (c *ClientWithResponses) VolumeCreateWithResponse(ctx context.Context, params *VolumeCreateParams, ...) (*VolumeCreateResponse, error) + func (c *ClientWithResponses) VolumeDeleteWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*VolumeDeleteResponse, error) + func (c *ClientWithResponses) VolumeDetachWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*VolumeDetachResponse, error) + func (c *ClientWithResponses) VolumeGetWithResponse(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*VolumeGetResponse, error) + func (c *ClientWithResponses) VolumeLimitsWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*VolumeLimitsResponse, error) + func (c *ClientWithResponses) VolumeListWithResponse(ctx context.Context, params *VolumeListParams, reqEditors ...RequestEditorFn) (*VolumeListResponse, error) + func (c *ClientWithResponses) VolumeProjectSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*VolumeProjectSetResponse, error) + func (c *ClientWithResponses) VolumeProjectSetWithResponse(ctx context.Context, id string, body VolumeProjectSetJSONRequestBody, ...) (*VolumeProjectSetResponse, error) + func (c *ClientWithResponses) VolumeResizeWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*VolumeResizeResponse, error) + func (c *ClientWithResponses) VolumeResizeWithResponse(ctx context.Context, id string, body VolumeResizeJSONRequestBody, ...) (*VolumeResizeResponse, error) + func (c *ClientWithResponses) VolumeTagsSetWithBodyWithResponse(ctx context.Context, id string, contentType string, body io.Reader, ...) (*VolumeTagsSetResponse, error) + func (c *ClientWithResponses) VolumeTagsSetWithResponse(ctx context.Context, id string, body VolumeTagsSetJSONRequestBody, ...) (*VolumeTagsSetResponse, error) + func (c *ClientWithResponses) WalletGetWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*WalletGetResponse, error) + func (c *ClientWithResponses) WalletLedgerDailyWithResponse(ctx context.Context, params *WalletLedgerDailyParams, ...) (*WalletLedgerDailyResponse, error) + func (c *ClientWithResponses) WalletLedgerListWithResponse(ctx context.Context, params *WalletLedgerListParams, ...) (*WalletLedgerListResponse, error) + func (c *ClientWithResponses) WalletPromoRedeemWithBodyWithResponse(ctx context.Context, contentType string, body io.Reader, ...) (*WalletPromoRedeemResponse, error) + func (c *ClientWithResponses) WalletPromoRedeemWithResponse(ctx context.Context, body WalletPromoRedeemJSONRequestBody, ...) (*WalletPromoRedeemResponse, error) + func (c *ClientWithResponses) WalletPromoRedemptionsWithResponse(ctx context.Context, reqEditors ...RequestEditorFn) (*WalletPromoRedemptionsResponse, error) + type ClientWithResponsesInterface interface + AccountBillingProfileGetWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountBillingProfileGetResponse, error) + AccountBillingProfileSaveWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountBillingProfileSaveResponse, error) + AccountBillingProfileSaveWithResponse func(ctx context.Context, body AccountBillingProfileSaveJSONRequestBody, ...) (*AccountBillingProfileSaveResponse, error) + AccountChangePasswordWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountChangePasswordResponse, error) + AccountChangePasswordWithResponse func(ctx context.Context, body AccountChangePasswordJSONRequestBody, ...) (*AccountChangePasswordResponse, error) + AccountDeletionCancelWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountDeletionCancelResponse, error) + AccountDeletionGetWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountDeletionGetResponse, error) + AccountDeletionRequestWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountDeletionRequestResponse, error) + AccountDeletionRequestWithResponse func(ctx context.Context, body AccountDeletionRequestJSONRequestBody, ...) (*AccountDeletionRequestResponse, error) + AccountEmailChangeStartWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountEmailChangeStartResponse, error) + AccountEmailChangeStartWithResponse func(ctx context.Context, body AccountEmailChangeStartJSONRequestBody, ...) (*AccountEmailChangeStartResponse, error) + AccountExportWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountExportResponse, error) + AccountFeaturesWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountFeaturesResponse, error) + AccountGetWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountGetResponse, error) + AccountIdentitiesListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountIdentitiesListResponse, error) + AccountIdentityUnlinkWithResponse func(ctx context.Context, provider AccountIdentityUnlinkParamsProvider, ...) (*AccountIdentityUnlinkResponse, error) + AccountLimitsWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountLimitsResponse, error) + AccountPhoneDeleteWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountPhoneDeleteResponse, error) + AccountPhoneGetWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountPhoneGetResponse, error) + AccountPhoneResendWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountPhoneResendResponse, error) + AccountPhoneStartWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountPhoneStartResponse, error) + AccountPhoneStartWithResponse func(ctx context.Context, body AccountPhoneStartJSONRequestBody, ...) (*AccountPhoneStartResponse, error) + AccountPhoneVerifyWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountPhoneVerifyResponse, error) + AccountPhoneVerifyWithResponse func(ctx context.Context, body AccountPhoneVerifyJSONRequestBody, ...) (*AccountPhoneVerifyResponse, error) + AccountSupportAccessWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountSupportAccessResponse, error) + AccountTotpConfirmWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountTotpConfirmResponse, error) + AccountTotpConfirmWithResponse func(ctx context.Context, body AccountTotpConfirmJSONRequestBody, ...) (*AccountTotpConfirmResponse, error) + AccountTotpDisableWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountTotpDisableResponse, error) + AccountTotpDisableWithResponse func(ctx context.Context, body AccountTotpDisableJSONRequestBody, ...) (*AccountTotpDisableResponse, error) + AccountTotpRecoveryCodesWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountTotpRecoveryCodesResponse, error) + AccountTotpRecoveryCodesWithResponse func(ctx context.Context, body AccountTotpRecoveryCodesJSONRequestBody, ...) (*AccountTotpRecoveryCodesResponse, error) + AccountTotpSetupWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountTotpSetupResponse, error) + AccountTotpSetupWithResponse func(ctx context.Context, body AccountTotpSetupJSONRequestBody, ...) (*AccountTotpSetupResponse, error) + AccountTotpStatusWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AccountTotpStatusResponse, error) + AccountUpdateWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AccountUpdateResponse, error) + AccountUpdateWithResponse func(ctx context.Context, body AccountUpdateJSONRequestBody, ...) (*AccountUpdateResponse, error) + AnnouncementBannerDismissWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*AnnouncementBannerDismissResponse, error) + AnnouncementBannerGetWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AnnouncementBannerGetResponse, error) + AnnouncementsGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*AnnouncementsGetResponse, error) + AnnouncementsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AnnouncementsListResponse, error) + ApiTokenCreateWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*ApiTokenCreateResponse, error) + ApiTokenCreateWithResponse func(ctx context.Context, body ApiTokenCreateJSONRequestBody, ...) (*ApiTokenCreateResponse, error) + ApiTokenRevokeWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ApiTokenRevokeResponse, error) + ApiTokensListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*ApiTokensListResponse, error) + AppActionWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppActionResponse, error) + AppActionWithResponse func(ctx context.Context, code string, body AppActionJSONRequestBody, ...) (*AppActionResponse, error) + AppAttachmentCreateWithBodyWithResponse func(ctx context.Context, appCode string, contentType string, body io.Reader, ...) (*AppAttachmentCreateResponse, error) + AppAttachmentCreateWithResponse func(ctx context.Context, appCode string, body AppAttachmentCreateJSONRequestBody, ...) (*AppAttachmentCreateResponse, error) + AppAttachmentDeleteWithResponse func(ctx context.Context, appCode string, attachmentID string, ...) (*AppAttachmentDeleteResponse, error) + AppAttachmentVerifyWithResponse func(ctx context.Context, appCode string, attachmentID string, ...) (*AppAttachmentVerifyResponse, error) + AppAttachmentsListWithResponse func(ctx context.Context, appCode string, reqEditors ...RequestEditorFn) (*AppAttachmentsListResponse, error) + AppAutoDeploySetWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppAutoDeploySetResponse, error) + AppAutoDeploySetWithResponse func(ctx context.Context, code string, body AppAutoDeploySetJSONRequestBody, ...) (*AppAutoDeploySetResponse, error) + AppBuildCancelWithResponse func(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*AppBuildCancelResponse, error) + AppBuildCreateWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppBuildCreateResponse, error) + AppBuildCreateWithResponse func(ctx context.Context, code string, body AppBuildCreateJSONRequestBody, ...) (*AppBuildCreateResponse, error) + AppBuildGetWithResponse func(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*AppBuildGetResponse, error) + AppBuildsListWithResponse func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppBuildsListResponse, error) + AppCreateWithBodyWithResponse func(ctx context.Context, params *AppCreateParams, contentType string, ...) (*AppCreateResponse, error) + AppCreateWithResponse func(ctx context.Context, params *AppCreateParams, body AppCreateJSONRequestBody, ...) (*AppCreateResponse, error) + AppDeleteWithResponse func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppDeleteResponse, error) + AppDetectBuildWithResponse func(ctx context.Context, params *AppDetectBuildParams, ...) (*AppDetectBuildResponse, error) + AppDomainAddWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppDomainAddResponse, error) + AppDomainAddWithResponse func(ctx context.Context, code string, body AppDomainAddJSONRequestBody, ...) (*AppDomainAddResponse, error) + AppDomainDeleteWithResponse func(ctx context.Context, code string, domainID string, ...) (*AppDomainDeleteResponse, error) + AppDomainVerifyWithResponse func(ctx context.Context, code string, domainID string, ...) (*AppDomainVerifyResponse, error) + AppDomainsListWithResponse func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppDomainsListResponse, error) + AppEnvGetWithResponse func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppEnvGetResponse, error) + AppEnvSetWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppEnvSetResponse, error) + AppEnvSetWithResponse func(ctx context.Context, code string, body AppEnvSetJSONRequestBody, ...) (*AppEnvSetResponse, error) + AppEventsListWithResponse func(ctx context.Context, code string, params *AppEventsListParams, ...) (*AppEventsListResponse, error) + AppExecStartWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppExecStartResponse, error) + AppExecStartWithResponse func(ctx context.Context, code string, body AppExecStartJSONRequestBody, ...) (*AppExecStartResponse, error) + AppGetWithResponse func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppGetResponse, error) + AppLogsGetWithResponse func(ctx context.Context, code string, id string, reqEditors ...RequestEditorFn) (*AppLogsGetResponse, error) + AppLogsRequestWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppLogsRequestResponse, error) + AppLogsRequestWithResponse func(ctx context.Context, code string, body AppLogsRequestJSONRequestBody, ...) (*AppLogsRequestResponse, error) + AppMetricsWithResponse func(ctx context.Context, code string, params *AppMetricsParams, ...) (*AppMetricsResponse, error) + AppPlansListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AppPlansListResponse, error) + AppPresetsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AppPresetsListResponse, error) + AppProjectSetWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppProjectSetResponse, error) + AppProjectSetWithResponse func(ctx context.Context, code string, body AppProjectSetJSONRequestBody, ...) (*AppProjectSetResponse, error) + AppReleasesListWithResponse func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*AppReleasesListResponse, error) + AppResizeWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppResizeResponse, error) + AppResizeWithResponse func(ctx context.Context, code string, body AppResizeJSONRequestBody, ...) (*AppResizeResponse, error) + AppRollbackWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppRollbackResponse, error) + AppRollbackWithResponse func(ctx context.Context, code string, body AppRollbackJSONRequestBody, ...) (*AppRollbackResponse, error) + AppScaleWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppScaleResponse, error) + AppScaleWithResponse func(ctx context.Context, code string, body AppScaleJSONRequestBody, ...) (*AppScaleResponse, error) + AppSourceSetWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppSourceSetResponse, error) + AppSourceSetWithResponse func(ctx context.Context, code string, body AppSourceSetJSONRequestBody, ...) (*AppSourceSetResponse, error) + AppTagsSetWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppTagsSetResponse, error) + AppTagsSetWithResponse func(ctx context.Context, code string, body AppTagsSetJSONRequestBody, ...) (*AppTagsSetResponse, error) + AppUpdateWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*AppUpdateResponse, error) + AppUpdateWithResponse func(ctx context.Context, code string, body AppUpdateJSONRequestBody, ...) (*AppUpdateResponse, error) + AppsListWithResponse func(ctx context.Context, params *AppsListParams, reqEditors ...RequestEditorFn) (*AppsListResponse, error) + AuthConfirmEmailChangeWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AuthConfirmEmailChangeResponse, error) + AuthConfirmEmailChangeWithResponse func(ctx context.Context, body AuthConfirmEmailChangeJSONRequestBody, ...) (*AuthConfirmEmailChangeResponse, error) + AuthImpersonateWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AuthImpersonateResponse, error) + AuthImpersonateWithResponse func(ctx context.Context, body AuthImpersonateJSONRequestBody, ...) (*AuthImpersonateResponse, error) + AuthLoginWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AuthLoginResponse, error) + AuthLoginWithResponse func(ctx context.Context, body AuthLoginJSONRequestBody, ...) (*AuthLoginResponse, error) + AuthLogoutWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AuthLogoutResponse, error) + AuthMfaVerifyWithBodyWithResponse func(ctx context.Context, params *AuthMfaVerifyParams, contentType string, ...) (*AuthMfaVerifyResponse, error) + AuthMfaVerifyWithResponse func(ctx context.Context, params *AuthMfaVerifyParams, ...) (*AuthMfaVerifyResponse, error) + AuthOauthCallbackWithResponse func(ctx context.Context, provider AuthOauthCallbackParamsProvider, ...) (*AuthOauthCallbackResponse, error) + AuthOauthProvidersWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AuthOauthProvidersResponse, error) + AuthOauthStartWithResponse func(ctx context.Context, provider AuthOauthStartParamsProvider, ...) (*AuthOauthStartResponse, error) + AuthPasswordResetRequestWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AuthPasswordResetRequestResponse, error) + AuthPasswordResetRequestWithResponse func(ctx context.Context, body AuthPasswordResetRequestJSONRequestBody, ...) (*AuthPasswordResetRequestResponse, error) + AuthPasswordResetWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AuthPasswordResetResponse, error) + AuthPasswordResetWithResponse func(ctx context.Context, body AuthPasswordResetJSONRequestBody, ...) (*AuthPasswordResetResponse, error) + AuthPolicyWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AuthPolicyResponse, error) + AuthRegisterWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AuthRegisterResponse, error) + AuthRegisterWithResponse func(ctx context.Context, body AuthRegisterJSONRequestBody, ...) (*AuthRegisterResponse, error) + AuthSessionRevokeWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*AuthSessionRevokeResponse, error) + AuthSessionsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*AuthSessionsListResponse, error) + AuthVerifyEmailResendWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AuthVerifyEmailResendResponse, error) + AuthVerifyEmailResendWithResponse func(ctx context.Context, body AuthVerifyEmailResendJSONRequestBody, ...) (*AuthVerifyEmailResendResponse, error) + AuthVerifyEmailWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*AuthVerifyEmailResponse, error) + AuthVerifyEmailWithResponse func(ctx context.Context, body AuthVerifyEmailJSONRequestBody, ...) (*AuthVerifyEmailResponse, error) + DatabaseAlertDeleteWithResponse func(ctx context.Context, databaseId string, metric DatabaseAlertDeleteParamsMetric, ...) (*DatabaseAlertDeleteResponse, error) + DatabaseAlertSaveWithBodyWithResponse func(ctx context.Context, databaseId string, contentType string, body io.Reader, ...) (*DatabaseAlertSaveResponse, error) + DatabaseAlertSaveWithResponse func(ctx context.Context, databaseId string, body DatabaseAlertSaveJSONRequestBody, ...) (*DatabaseAlertSaveResponse, error) + DatabaseAlertsListWithResponse func(ctx context.Context, databaseId string, reqEditors ...RequestEditorFn) (*DatabaseAlertsListResponse, error) + DatabaseBackupCreateWithResponse func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseBackupCreateResponse, error) + DatabaseBackupsListWithResponse func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseBackupsListResponse, error) + DatabaseConnectionGetWithResponse func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseConnectionGetResponse, error) + DatabaseCreateWithBodyWithResponse func(ctx context.Context, params *DatabaseCreateParams, contentType string, ...) (*DatabaseCreateResponse, error) + DatabaseCreateWithResponse func(ctx context.Context, params *DatabaseCreateParams, ...) (*DatabaseCreateResponse, error) + DatabaseDbCreateWithBodyWithResponse func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseDbCreateResponse, error) + DatabaseDbCreateWithResponse func(ctx context.Context, databaseID string, body DatabaseDbCreateJSONRequestBody, ...) (*DatabaseDbCreateResponse, error) + DatabaseDeleteWithResponse func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseDeleteResponse, error) + DatabaseGetWithResponse func(ctx context.Context, databaseID string, reqEditors ...RequestEditorFn) (*DatabaseGetResponse, error) + DatabaseMetricsListWithResponse func(ctx context.Context, databaseId string, params *DatabaseMetricsListParams, ...) (*DatabaseMetricsListResponse, error) + DatabaseOptionsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*DatabaseOptionsListResponse, error) + DatabaseProjectSetWithBodyWithResponse func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseProjectSetResponse, error) + DatabaseProjectSetWithResponse func(ctx context.Context, databaseID string, body DatabaseProjectSetJSONRequestBody, ...) (*DatabaseProjectSetResponse, error) + DatabasePublicAccessSetWithBodyWithResponse func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabasePublicAccessSetResponse, error) + DatabasePublicAccessSetWithResponse func(ctx context.Context, databaseID string, ...) (*DatabasePublicAccessSetResponse, error) + DatabaseResizeWithBodyWithResponse func(ctx context.Context, databaseId string, contentType string, body io.Reader, ...) (*DatabaseResizeResponse, error) + DatabaseResizeWithResponse func(ctx context.Context, databaseId string, body DatabaseResizeJSONRequestBody, ...) (*DatabaseResizeResponse, error) + DatabaseRestoreCreateWithBodyWithResponse func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseRestoreCreateResponse, error) + DatabaseRestoreCreateWithResponse func(ctx context.Context, databaseID string, ...) (*DatabaseRestoreCreateResponse, error) + DatabaseTagsSetWithBodyWithResponse func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseTagsSetResponse, error) + DatabaseTagsSetWithResponse func(ctx context.Context, databaseID string, body DatabaseTagsSetJSONRequestBody, ...) (*DatabaseTagsSetResponse, error) + DatabaseTrustedSourcesSetWithBodyWithResponse func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseTrustedSourcesSetResponse, error) + DatabaseTrustedSourcesSetWithResponse func(ctx context.Context, databaseID string, ...) (*DatabaseTrustedSourcesSetResponse, error) + DatabaseUserCreateWithBodyWithResponse func(ctx context.Context, databaseID string, contentType string, body io.Reader, ...) (*DatabaseUserCreateResponse, error) + DatabaseUserCreateWithResponse func(ctx context.Context, databaseID string, body DatabaseUserCreateJSONRequestBody, ...) (*DatabaseUserCreateResponse, error) + DatabaseUserDeleteWithResponse func(ctx context.Context, databaseID string, userID string, ...) (*DatabaseUserDeleteResponse, error) + DatabaseUserPasswordResetWithResponse func(ctx context.Context, databaseID string, userID string, ...) (*DatabaseUserPasswordResetResponse, error) + DatabasesListWithResponse func(ctx context.Context, params *DatabasesListParams, ...) (*DatabasesListResponse, error) + DnsRecordCreateWithBodyWithResponse func(ctx context.Context, id string, params *DnsRecordCreateParams, ...) (*DnsRecordCreateResponse, error) + DnsRecordCreateWithResponse func(ctx context.Context, id string, params *DnsRecordCreateParams, ...) (*DnsRecordCreateResponse, error) + DnsRecordDeleteWithResponse func(ctx context.Context, id string, recordId string, reqEditors ...RequestEditorFn) (*DnsRecordDeleteResponse, error) + DnsRecordUpdateWithBodyWithResponse func(ctx context.Context, id string, recordId string, contentType string, ...) (*DnsRecordUpdateResponse, error) + DnsRecordUpdateWithResponse func(ctx context.Context, id string, recordId string, ...) (*DnsRecordUpdateResponse, error) + DnsZoneCreateWithBodyWithResponse func(ctx context.Context, params *DnsZoneCreateParams, contentType string, ...) (*DnsZoneCreateResponse, error) + DnsZoneCreateWithResponse func(ctx context.Context, params *DnsZoneCreateParams, ...) (*DnsZoneCreateResponse, error) + DnsZoneDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*DnsZoneDeleteResponse, error) + DnsZoneGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*DnsZoneGetResponse, error) + DnsZoneProjectSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DnsZoneProjectSetResponse, error) + DnsZoneProjectSetWithResponse func(ctx context.Context, id string, body DnsZoneProjectSetJSONRequestBody, ...) (*DnsZoneProjectSetResponse, error) + DnsZoneTagsSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DnsZoneTagsSetResponse, error) + DnsZoneTagsSetWithResponse func(ctx context.Context, id string, body DnsZoneTagsSetJSONRequestBody, ...) (*DnsZoneTagsSetResponse, error) + DnsZonesListWithResponse func(ctx context.Context, params *DnsZonesListParams, reqEditors ...RequestEditorFn) (*DnsZonesListResponse, error) + DomainAutoRenewSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainAutoRenewSetResponse, error) + DomainAutoRenewSetWithResponse func(ctx context.Context, id string, body DomainAutoRenewSetJSONRequestBody, ...) (*DomainAutoRenewSetResponse, error) + DomainContactCreateWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*DomainContactCreateResponse, error) + DomainContactCreateWithResponse func(ctx context.Context, body DomainContactCreateJSONRequestBody, ...) (*DomainContactCreateResponse, error) + DomainContactDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*DomainContactDeleteResponse, error) + DomainContactSuggestWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*DomainContactSuggestResponse, error) + DomainContactUpdateWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainContactUpdateResponse, error) + DomainContactUpdateWithResponse func(ctx context.Context, id string, body DomainContactUpdateJSONRequestBody, ...) (*DomainContactUpdateResponse, error) + DomainContactsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*DomainContactsListResponse, error) + DomainGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*DomainGetResponse, error) + DomainLockSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainLockSetResponse, error) + DomainLockSetWithResponse func(ctx context.Context, id string, body DomainLockSetJSONRequestBody, ...) (*DomainLockSetResponse, error) + DomainNameserversSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainNameserversSetResponse, error) + DomainNameserversSetWithResponse func(ctx context.Context, id string, body DomainNameserversSetJSONRequestBody, ...) (*DomainNameserversSetResponse, error) + DomainPrivacySetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainPrivacySetResponse, error) + DomainPrivacySetWithResponse func(ctx context.Context, id string, body DomainPrivacySetJSONRequestBody, ...) (*DomainPrivacySetResponse, error) + DomainProjectSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainProjectSetResponse, error) + DomainProjectSetWithResponse func(ctx context.Context, id string, body DomainProjectSetJSONRequestBody, ...) (*DomainProjectSetResponse, error) + DomainRegisterWithBodyWithResponse func(ctx context.Context, params *DomainRegisterParams, contentType string, ...) (*DomainRegisterResponse, error) + DomainRegisterWithResponse func(ctx context.Context, params *DomainRegisterParams, ...) (*DomainRegisterResponse, error) + DomainRenewWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainRenewResponse, error) + DomainRenewWithResponse func(ctx context.Context, id string, body DomainRenewJSONRequestBody, ...) (*DomainRenewResponse, error) + DomainSearchWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*DomainSearchResponse, error) + DomainSearchWithResponse func(ctx context.Context, body DomainSearchJSONRequestBody, ...) (*DomainSearchResponse, error) + DomainTagsSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*DomainTagsSetResponse, error) + DomainTagsSetWithResponse func(ctx context.Context, id string, body DomainTagsSetJSONRequestBody, ...) (*DomainTagsSetResponse, error) + DomainTldsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*DomainTldsListResponse, error) + DomainTransferWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*DomainTransferResponse, error) + DomainTransferWithResponse func(ctx context.Context, body DomainTransferJSONRequestBody, ...) (*DomainTransferResponse, error) + DomainsListWithResponse func(ctx context.Context, params *DomainsListParams, reqEditors ...RequestEditorFn) (*DomainsListResponse, error) + FirewallCreateWithBodyWithResponse func(ctx context.Context, params *FirewallCreateParams, contentType string, ...) (*FirewallCreateResponse, error) + FirewallCreateWithResponse func(ctx context.Context, params *FirewallCreateParams, ...) (*FirewallCreateResponse, error) + FirewallDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*FirewallDeleteResponse, error) + FirewallGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*FirewallGetResponse, error) + FirewallRulesReplaceWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*FirewallRulesReplaceResponse, error) + FirewallRulesReplaceWithResponse func(ctx context.Context, id string, body FirewallRulesReplaceJSONRequestBody, ...) (*FirewallRulesReplaceResponse, error) + FirewallServerAttachWithResponse func(ctx context.Context, id string, serverId string, reqEditors ...RequestEditorFn) (*FirewallServerAttachResponse, error) + FirewallServerDetachWithResponse func(ctx context.Context, id string, serverId string, reqEditors ...RequestEditorFn) (*FirewallServerDetachResponse, error) + FirewallUpdateWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*FirewallUpdateResponse, error) + FirewallUpdateWithResponse func(ctx context.Context, id string, body FirewallUpdateJSONRequestBody, ...) (*FirewallUpdateResponse, error) + FirewallsListWithResponse func(ctx context.Context, params *FirewallsListParams, ...) (*FirewallsListResponse, error) + FloatingIpAttachWithBodyWithResponse func(ctx context.Context, floatingIpID string, contentType string, body io.Reader, ...) (*FloatingIpAttachResponse, error) + FloatingIpAttachWithResponse func(ctx context.Context, floatingIpID string, body FloatingIpAttachJSONRequestBody, ...) (*FloatingIpAttachResponse, error) + FloatingIpCreateWithBodyWithResponse func(ctx context.Context, params *FloatingIpCreateParams, contentType string, ...) (*FloatingIpCreateResponse, error) + FloatingIpCreateWithResponse func(ctx context.Context, params *FloatingIpCreateParams, ...) (*FloatingIpCreateResponse, error) + FloatingIpDeleteWithResponse func(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*FloatingIpDeleteResponse, error) + FloatingIpDetachWithResponse func(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*FloatingIpDetachResponse, error) + FloatingIpGetWithResponse func(ctx context.Context, floatingIpID string, reqEditors ...RequestEditorFn) (*FloatingIpGetResponse, error) + FloatingIpsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*FloatingIpsListResponse, error) + FxRateWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*FxRateResponse, error) + GitConnectionDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*GitConnectionDeleteResponse, error) + GitConnectionsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*GitConnectionsListResponse, error) + GitInstallCallbackWithResponse func(ctx context.Context, provider GitInstallCallbackParamsProvider, ...) (*GitInstallCallbackResponse, error) + GitInstallSetupWithResponse func(ctx context.Context, provider GitInstallSetupParamsProvider, ...) (*GitInstallSetupResponse, error) + GitInstallStartWithResponse func(ctx context.Context, provider GitInstallStartParamsProvider, ...) (*GitInstallStartResponse, error) + GitProvidersListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*GitProvidersListResponse, error) + GitRepositoriesListWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*GitRepositoriesListResponse, error) + ImagesListWithResponse func(ctx context.Context, params *ImagesListParams, reqEditors ...RequestEditorFn) (*ImagesListResponse, error) + IsoCreateWithBodyWithResponse func(ctx context.Context, params *IsoCreateParams, contentType string, ...) (*IsoCreateResponse, error) + IsoCreateWithResponse func(ctx context.Context, params *IsoCreateParams, body IsoCreateJSONRequestBody, ...) (*IsoCreateResponse, error) + IsoDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*IsoDeleteResponse, error) + IsoGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*IsoGetResponse, error) + IsoListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*IsoListResponse, error) + LoadBalancerBackendsSetWithBodyWithResponse func(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*LoadBalancerBackendsSetResponse, error) + LoadBalancerBackendsSetWithResponse func(ctx context.Context, loadBalancerID string, ...) (*LoadBalancerBackendsSetResponse, error) + LoadBalancerCreateWithBodyWithResponse func(ctx context.Context, params *LoadBalancerCreateParams, contentType string, ...) (*LoadBalancerCreateResponse, error) + LoadBalancerCreateWithResponse func(ctx context.Context, params *LoadBalancerCreateParams, ...) (*LoadBalancerCreateResponse, error) + LoadBalancerDeleteWithResponse func(ctx context.Context, loadBalancerID string, reqEditors ...RequestEditorFn) (*LoadBalancerDeleteResponse, error) + LoadBalancerGetWithResponse func(ctx context.Context, loadBalancerID string, reqEditors ...RequestEditorFn) (*LoadBalancerGetResponse, error) + LoadBalancerProjectSetWithBodyWithResponse func(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*LoadBalancerProjectSetResponse, error) + LoadBalancerProjectSetWithResponse func(ctx context.Context, loadBalancerID string, ...) (*LoadBalancerProjectSetResponse, error) + LoadBalancerRulesReplaceWithBodyWithResponse func(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*LoadBalancerRulesReplaceResponse, error) + LoadBalancerRulesReplaceWithResponse func(ctx context.Context, loadBalancerID string, ...) (*LoadBalancerRulesReplaceResponse, error) + LoadBalancerTagsSetWithBodyWithResponse func(ctx context.Context, loadBalancerID string, contentType string, body io.Reader, ...) (*LoadBalancerTagsSetResponse, error) + LoadBalancerTagsSetWithResponse func(ctx context.Context, loadBalancerID string, ...) (*LoadBalancerTagsSetResponse, error) + LoadBalancersListWithResponse func(ctx context.Context, params *LoadBalancersListParams, ...) (*LoadBalancersListResponse, error) + NetworkCreateWithBodyWithResponse func(ctx context.Context, params *NetworkCreateParams, contentType string, ...) (*NetworkCreateResponse, error) + NetworkCreateWithResponse func(ctx context.Context, params *NetworkCreateParams, ...) (*NetworkCreateResponse, error) + NetworkDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*NetworkDeleteResponse, error) + NetworkGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*NetworkGetResponse, error) + NetworkProjectSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*NetworkProjectSetResponse, error) + NetworkProjectSetWithResponse func(ctx context.Context, id string, body NetworkProjectSetJSONRequestBody, ...) (*NetworkProjectSetResponse, error) + NetworkTagsSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*NetworkTagsSetResponse, error) + NetworkTagsSetWithResponse func(ctx context.Context, id string, body NetworkTagsSetJSONRequestBody, ...) (*NetworkTagsSetResponse, error) + NetworksListWithResponse func(ctx context.Context, params *NetworksListParams, reqEditors ...RequestEditorFn) (*NetworksListResponse, error) + NotificationDeleteWithResponse func(ctx context.Context, id int64, reqEditors ...RequestEditorFn) (*NotificationDeleteResponse, error) + NotificationsListWithResponse func(ctx context.Context, params *NotificationsListParams, ...) (*NotificationsListResponse, error) + NotificationsMarkReadWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*NotificationsMarkReadResponse, error) + NotificationsMarkReadWithResponse func(ctx context.Context, body NotificationsMarkReadJSONRequestBody, ...) (*NotificationsMarkReadResponse, error) + OrganizationInvitationAcceptWithResponse func(ctx context.Context, token string, reqEditors ...RequestEditorFn) (*OrganizationInvitationAcceptResponse, error) + OrganizationInvitationGetWithResponse func(ctx context.Context, token string, reqEditors ...RequestEditorFn) (*OrganizationInvitationGetResponse, error) + OrganizationInvitationsCreateWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*OrganizationInvitationsCreateResponse, error) + OrganizationInvitationsCreateWithResponse func(ctx context.Context, id string, ...) (*OrganizationInvitationsCreateResponse, error) + OrganizationInvitationsListWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationInvitationsListResponse, error) + OrganizationInvitationsRevokeWithResponse func(ctx context.Context, id string, invitationId string, ...) (*OrganizationInvitationsRevokeResponse, error) + OrganizationMemberRoleUpdateWithBodyWithResponse func(ctx context.Context, id string, userId string, contentType string, ...) (*OrganizationMemberRoleUpdateResponse, error) + OrganizationMemberRoleUpdateWithResponse func(ctx context.Context, id string, userId string, ...) (*OrganizationMemberRoleUpdateResponse, error) + OrganizationMembersListWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationMembersListResponse, error) + OrganizationMembersRemoveWithResponse func(ctx context.Context, id string, userId string, reqEditors ...RequestEditorFn) (*OrganizationMembersRemoveResponse, error) + OrganizationsActivateWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationsActivateResponse, error) + OrganizationsCreateWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*OrganizationsCreateResponse, error) + OrganizationsCreateWithResponse func(ctx context.Context, body OrganizationsCreateJSONRequestBody, ...) (*OrganizationsCreateResponse, error) + OrganizationsDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationsDeleteResponse, error) + OrganizationsGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationsGetResponse, error) + OrganizationsLeaveWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*OrganizationsLeaveResponse, error) + OrganizationsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*OrganizationsListResponse, error) + OrganizationsRenameWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*OrganizationsRenameResponse, error) + OrganizationsRenameWithResponse func(ctx context.Context, id string, body OrganizationsRenameJSONRequestBody, ...) (*OrganizationsRenameResponse, error) + PaymentIntentsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*PaymentIntentsListResponse, error) + PaymentTopupInitWithBodyWithResponse func(ctx context.Context, params *PaymentTopupInitParams, contentType string, ...) (*PaymentTopupInitResponse, error) + PaymentTopupInitWithResponse func(ctx context.Context, params *PaymentTopupInitParams, ...) (*PaymentTopupInitResponse, error) + PlanTypesListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*PlanTypesListResponse, error) + PlansListWithResponse func(ctx context.Context, params *PlansListParams, reqEditors ...RequestEditorFn) (*PlansListResponse, error) + ProjectCreateWithBodyWithResponse func(ctx context.Context, params *ProjectCreateParams, contentType string, ...) (*ProjectCreateResponse, error) + ProjectCreateWithResponse func(ctx context.Context, params *ProjectCreateParams, ...) (*ProjectCreateResponse, error) + ProjectDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ProjectDeleteResponse, error) + ProjectGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ProjectGetResponse, error) + ProjectUpdateWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ProjectUpdateResponse, error) + ProjectUpdateWithResponse func(ctx context.Context, id string, body ProjectUpdateJSONRequestBody, ...) (*ProjectUpdateResponse, error) + ProjectsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*ProjectsListResponse, error) + RdnsClearWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*RdnsClearResponse, error) + RdnsSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*RdnsSetResponse, error) + RdnsSetWithResponse func(ctx context.Context, id string, body RdnsSetJSONRequestBody, ...) (*RdnsSetResponse, error) + RegionsListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*RegionsListResponse, error) + ResourcePricesListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*ResourcePricesListResponse, error) + ServerActionCreateWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerActionCreateResponse, error) + ServerActionCreateWithResponse func(ctx context.Context, id string, body ServerActionCreateJSONRequestBody, ...) (*ServerActionCreateResponse, error) + ServerActionGetWithResponse func(ctx context.Context, id string, actionId string, reqEditors ...RequestEditorFn) (*ServerActionGetResponse, error) + ServerAlertDeleteWithResponse func(ctx context.Context, id string, metric ServerAlertDeleteParamsMetric, ...) (*ServerAlertDeleteResponse, error) + ServerAlertSaveWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerAlertSaveResponse, error) + ServerAlertSaveWithResponse func(ctx context.Context, id string, body ServerAlertSaveJSONRequestBody, ...) (*ServerAlertSaveResponse, error) + ServerAlertsListWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerAlertsListResponse, error) + ServerAppRetryWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerAppRetryResponse, error) + ServerBackupCreateWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerBackupCreateResponse, error) + ServerBackupCreateWithResponse func(ctx context.Context, id string, body ServerBackupCreateJSONRequestBody, ...) (*ServerBackupCreateResponse, error) + ServerBackupDeleteWithResponse func(ctx context.Context, id string, backupId string, reqEditors ...RequestEditorFn) (*ServerBackupDeleteResponse, error) + ServerBackupListAllWithResponse func(ctx context.Context, params *ServerBackupListAllParams, ...) (*ServerBackupListAllResponse, error) + ServerBackupListWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerBackupListResponse, error) + ServerBackupRestoreWithResponse func(ctx context.Context, id string, backupId string, reqEditors ...RequestEditorFn) (*ServerBackupRestoreResponse, error) + ServerBackupSettingsGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerBackupSettingsGetResponse, error) + ServerBackupSettingsUpdateWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerBackupSettingsUpdateResponse, error) + ServerBackupSettingsUpdateWithResponse func(ctx context.Context, id string, body ServerBackupSettingsUpdateJSONRequestBody, ...) (*ServerBackupSettingsUpdateResponse, error) + ServerBillingGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerBillingGetResponse, error) + ServerConsoleCreateWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerConsoleCreateResponse, error) + ServerCreateWithBodyWithResponse func(ctx context.Context, params *ServerCreateParams, contentType string, ...) (*ServerCreateResponse, error) + ServerCreateWithResponse func(ctx context.Context, params *ServerCreateParams, ...) (*ServerCreateResponse, error) + ServerDeleteWithResponse func(ctx context.Context, id string, params *ServerDeleteParams, ...) (*ServerDeleteResponse, error) + ServerEventsListWithResponse func(ctx context.Context, id string, params *ServerEventsListParams, ...) (*ServerEventsListResponse, error) + ServerFilesystemsListWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerFilesystemsListResponse, error) + ServerGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerGetResponse, error) + ServerLedgerListWithResponse func(ctx context.Context, id string, params *ServerLedgerListParams, ...) (*ServerLedgerListResponse, error) + ServerMetricsListWithResponse func(ctx context.Context, id string, params *ServerMetricsListParams, ...) (*ServerMetricsListResponse, error) + ServerMountISOWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerMountISOResponse, error) + ServerMountISOWithResponse func(ctx context.Context, id string, body ServerMountISOJSONRequestBody, ...) (*ServerMountISOResponse, error) + ServerNetworkAttachWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerNetworkAttachResponse, error) + ServerNetworkAttachWithResponse func(ctx context.Context, id string, body ServerNetworkAttachJSONRequestBody, ...) (*ServerNetworkAttachResponse, error) + ServerNetworkDetachWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerNetworkDetachResponse, error) + ServerPasswordResetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerPasswordResetResponse, error) + ServerProjectSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerProjectSetResponse, error) + ServerProjectSetWithResponse func(ctx context.Context, id string, body ServerProjectSetJSONRequestBody, ...) (*ServerProjectSetResponse, error) + ServerRDNSListWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerRDNSListResponse, error) + ServerRebuildWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerRebuildResponse, error) + ServerRebuildWithResponse func(ctx context.Context, id string, body ServerRebuildJSONRequestBody, ...) (*ServerRebuildResponse, error) + ServerRenameWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerRenameResponse, error) + ServerRenameWithResponse func(ctx context.Context, id string, body ServerRenameJSONRequestBody, ...) (*ServerRenameResponse, error) + ServerRescueEnterWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerRescueEnterResponse, error) + ServerRescueExitWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerRescueExitResponse, error) + ServerResizeWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerResizeResponse, error) + ServerResizeWithResponse func(ctx context.Context, id string, body ServerResizeJSONRequestBody, ...) (*ServerResizeResponse, error) + ServerSnapshotCreateWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerSnapshotCreateResponse, error) + ServerSnapshotCreateWithResponse func(ctx context.Context, id string, body ServerSnapshotCreateJSONRequestBody, ...) (*ServerSnapshotCreateResponse, error) + ServerSnapshotDeleteWithResponse func(ctx context.Context, id string, snapshotId string, ...) (*ServerSnapshotDeleteResponse, error) + ServerSnapshotListAllWithResponse func(ctx context.Context, params *ServerSnapshotListAllParams, ...) (*ServerSnapshotListAllResponse, error) + ServerSnapshotListWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerSnapshotListResponse, error) + ServerSnapshotRestoreWithResponse func(ctx context.Context, id string, snapshotId string, ...) (*ServerSnapshotRestoreResponse, error) + ServerTagsSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*ServerTagsSetResponse, error) + ServerTagsSetWithResponse func(ctx context.Context, id string, body ServerTagsSetJSONRequestBody, ...) (*ServerTagsSetResponse, error) + ServerUnmountISOWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*ServerUnmountISOResponse, error) + ServersListWithResponse func(ctx context.Context, params *ServersListParams, reqEditors ...RequestEditorFn) (*ServersListResponse, error) + SshKeyCreateWithBodyWithResponse func(ctx context.Context, params *SshKeyCreateParams, contentType string, ...) (*SshKeyCreateResponse, error) + SshKeyCreateWithResponse func(ctx context.Context, params *SshKeyCreateParams, ...) (*SshKeyCreateResponse, error) + SshKeyDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*SshKeyDeleteResponse, error) + SshKeyGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*SshKeyGetResponse, error) + SshKeysListWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*SshKeysListResponse, error) + TagsListWithResponse func(ctx context.Context, params *TagsListParams, reqEditors ...RequestEditorFn) (*TagsListResponse, error) + TicketAttachmentDownloadWithResponse func(ctx context.Context, code string, id int64, reqEditors ...RequestEditorFn) (*TicketAttachmentDownloadResponse, error) + TicketCloseWithResponse func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*TicketCloseResponse, error) + TicketCreateWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*TicketCreateResponse, error) + TicketCreateWithResponse func(ctx context.Context, body TicketCreateJSONRequestBody, ...) (*TicketCreateResponse, error) + TicketGetWithResponse func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*TicketGetResponse, error) + TicketReopenWithResponse func(ctx context.Context, code string, reqEditors ...RequestEditorFn) (*TicketReopenResponse, error) + TicketReplyWithBodyWithResponse func(ctx context.Context, code string, contentType string, body io.Reader, ...) (*TicketReplyResponse, error) + TicketReplyWithResponse func(ctx context.Context, code string, body TicketReplyJSONRequestBody, ...) (*TicketReplyResponse, error) + TicketsListWithResponse func(ctx context.Context, params *TicketsListParams, reqEditors ...RequestEditorFn) (*TicketsListResponse, error) + VolumeAttachWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*VolumeAttachResponse, error) + VolumeAttachWithResponse func(ctx context.Context, id string, body VolumeAttachJSONRequestBody, ...) (*VolumeAttachResponse, error) + VolumeCreateWithBodyWithResponse func(ctx context.Context, params *VolumeCreateParams, contentType string, ...) (*VolumeCreateResponse, error) + VolumeCreateWithResponse func(ctx context.Context, params *VolumeCreateParams, ...) (*VolumeCreateResponse, error) + VolumeDeleteWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*VolumeDeleteResponse, error) + VolumeDetachWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*VolumeDetachResponse, error) + VolumeGetWithResponse func(ctx context.Context, id string, reqEditors ...RequestEditorFn) (*VolumeGetResponse, error) + VolumeLimitsWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*VolumeLimitsResponse, error) + VolumeListWithResponse func(ctx context.Context, params *VolumeListParams, reqEditors ...RequestEditorFn) (*VolumeListResponse, error) + VolumeProjectSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*VolumeProjectSetResponse, error) + VolumeProjectSetWithResponse func(ctx context.Context, id string, body VolumeProjectSetJSONRequestBody, ...) (*VolumeProjectSetResponse, error) + VolumeResizeWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*VolumeResizeResponse, error) + VolumeResizeWithResponse func(ctx context.Context, id string, body VolumeResizeJSONRequestBody, ...) (*VolumeResizeResponse, error) + VolumeTagsSetWithBodyWithResponse func(ctx context.Context, id string, contentType string, body io.Reader, ...) (*VolumeTagsSetResponse, error) + VolumeTagsSetWithResponse func(ctx context.Context, id string, body VolumeTagsSetJSONRequestBody, ...) (*VolumeTagsSetResponse, error) + WalletGetWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*WalletGetResponse, error) + WalletLedgerDailyWithResponse func(ctx context.Context, params *WalletLedgerDailyParams, ...) (*WalletLedgerDailyResponse, error) + WalletLedgerListWithResponse func(ctx context.Context, params *WalletLedgerListParams, ...) (*WalletLedgerListResponse, error) + WalletPromoRedeemWithBodyWithResponse func(ctx context.Context, contentType string, body io.Reader, ...) (*WalletPromoRedeemResponse, error) + WalletPromoRedeemWithResponse func(ctx context.Context, body WalletPromoRedeemJSONRequestBody, ...) (*WalletPromoRedeemResponse, error) + WalletPromoRedemptionsWithResponse func(ctx context.Context, reqEditors ...RequestEditorFn) (*WalletPromoRedemptionsResponse, error) + type CodeInputBody struct + Code string + Schema *string + type ConsoleOutputBody struct + ExpiresAt time.Time + Schema *string + Subprotocol string + Token string + WsPath string + type Cookie struct + Domain string + Expires time.Time + HttpOnly bool + MaxAge int64 + Name string + Partitioned bool + Path string + Quoted bool + Raw string + RawExpires string + SameSite int64 + Secure bool + Unparsed *[]string + Value string + type CreateInputBody struct + FirewallId *string + Image *string + IsoId *string + Name string + NetworkId *string + Plan string + ProjectId *string + Region *string + Schema *string + SourceBackupId *string + SshKeyIds *[]string + Tags *[]string + UserData *string + type CreateOutputBody struct + Schema *string + Server ServerBody + type CustomerFeaturesOutputBody struct + Features *[]FeatureBody + Schema *string + type CustomerQuotaBody struct + Key string + Label string + Limit int64 + Remaining int64 + Unit string + Used int64 + type CustomerQuotaOutputBody struct + Quotas *[]CustomerQuotaBody + Schema *string + type DatabaseAlertDeleteParamsMetric string + const DatabaseAlertDeleteParamsMetricCpu + const DatabaseAlertDeleteParamsMetricDisk + const DatabaseAlertDeleteParamsMetricMemory + const DatabaseAlertDeleteParamsMetricNetOut + const DatabaseAlertDeleteParamsMetricTraffic + func (e DatabaseAlertDeleteParamsMetric) Valid() bool + type DatabaseAlertDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDatabaseAlertDeleteResponse(rsp *http.Response) (*DatabaseAlertDeleteResponse, error) + func (r DatabaseAlertDeleteResponse) ContentType() string + func (r DatabaseAlertDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseAlertDeleteResponse) GetBody() []byte + func (r DatabaseAlertDeleteResponse) Status() string + func (r DatabaseAlertDeleteResponse) StatusCode() int + type DatabaseAlertSaveJSONRequestBody = DbAlertSaveInputBody + type DatabaseAlertSaveResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AlertBody + func ParseDatabaseAlertSaveResponse(rsp *http.Response) (*DatabaseAlertSaveResponse, error) + func (r DatabaseAlertSaveResponse) ContentType() string + func (r DatabaseAlertSaveResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseAlertSaveResponse) GetBody() []byte + func (r DatabaseAlertSaveResponse) GetJSON200() *AlertBody + func (r DatabaseAlertSaveResponse) Status() string + func (r DatabaseAlertSaveResponse) StatusCode() int + type DatabaseAlertsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DbAlertsListOutputBody + func ParseDatabaseAlertsListResponse(rsp *http.Response) (*DatabaseAlertsListResponse, error) + func (r DatabaseAlertsListResponse) ContentType() string + func (r DatabaseAlertsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseAlertsListResponse) GetBody() []byte + func (r DatabaseAlertsListResponse) GetJSON200() *DbAlertsListOutputBody + func (r DatabaseAlertsListResponse) Status() string + func (r DatabaseAlertsListResponse) StatusCode() int + type DatabaseBackupBody struct + Error *string + FinishedAt *time.Time + Id string + Kind DatabaseBackupBodyKind + StartedAt time.Time + State DatabaseBackupBodyState + type DatabaseBackupBodyKind string + const DatabaseBackupBodyKindDiff + const DatabaseBackupBodyKindFull + func (e DatabaseBackupBodyKind) Valid() bool + type DatabaseBackupBodyState string + const DatabaseBackupBodyStateDone + const DatabaseBackupBodyStateFailed + const DatabaseBackupBodyStateRunning + func (e DatabaseBackupBodyState) Valid() bool + type DatabaseBackupCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDatabaseBackupCreateResponse(rsp *http.Response) (*DatabaseBackupCreateResponse, error) + func (r DatabaseBackupCreateResponse) ContentType() string + func (r DatabaseBackupCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseBackupCreateResponse) GetBody() []byte + func (r DatabaseBackupCreateResponse) Status() string + func (r DatabaseBackupCreateResponse) StatusCode() int + type DatabaseBackupsListOutputBody struct + Backups *[]DatabaseBackupBody + Schema *string + type DatabaseBackupsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DatabaseBackupsListOutputBody + func ParseDatabaseBackupsListResponse(rsp *http.Response) (*DatabaseBackupsListResponse, error) + func (r DatabaseBackupsListResponse) ContentType() string + func (r DatabaseBackupsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseBackupsListResponse) GetBody() []byte + func (r DatabaseBackupsListResponse) GetJSON200() *DatabaseBackupsListOutputBody + func (r DatabaseBackupsListResponse) Status() string + func (r DatabaseBackupsListResponse) StatusCode() int + type DatabaseBody struct + Code string + CreatedAt time.Time + EarliestRestorableAt *time.Time + Engine DatabaseBodyEngine + EngineVersion string + ErrorCode *string + Id string + Ip *string + Name string + NetworkId *string + PaidThrough *time.Time + PendingApply bool + PlanSlug *string + ProjectId *string + PublicAccess bool + RegionName *string + RegionSlug *string + Schema *string + State DatabaseBodyState + Tags *[]string + type DatabaseBodyEngine string + const DatabaseBodyEngineMysql + const DatabaseBodyEnginePostgresql + func (e DatabaseBodyEngine) Valid() bool + type DatabaseBodyState string + const DatabaseBodyStateActive + const DatabaseBodyStateDeleted + const DatabaseBodyStateDeleting + const DatabaseBodyStateErrorDelete + const DatabaseBodyStateErrorProvisioning + const DatabaseBodyStateProvisioning + const DatabaseBodyStateResizing + const DatabaseBodyStateStoppedDunning + const DatabaseBodyStateSuspended + func (e DatabaseBodyState) Valid() bool + type DatabaseConnectionGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DatabaseConnectionOutputBody + func ParseDatabaseConnectionGetResponse(rsp *http.Response) (*DatabaseConnectionGetResponse, error) + func (r DatabaseConnectionGetResponse) ContentType() string + func (r DatabaseConnectionGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseConnectionGetResponse) GetBody() []byte + func (r DatabaseConnectionGetResponse) GetJSON200() *DatabaseConnectionOutputBody + func (r DatabaseConnectionGetResponse) Status() string + func (r DatabaseConnectionGetResponse) StatusCode() int + type DatabaseConnectionOutputBody struct + CaCertPem *string + Database string + Host *string + Password string + PoolerPort *int64 + Port int64 + PrivateHost *string + Schema *string + User string + type DatabaseCreateInputBody struct + Engine *DatabaseCreateInputBodyEngine + EngineVersion *string + Name string + NetworkId *string + Plan *string + ProjectId *string + Region *string + Schema *string + Tags *[]string + type DatabaseCreateInputBodyEngine string + const DatabaseCreateInputBodyEngineEmpty + const DatabaseCreateInputBodyEngineMysql + const DatabaseCreateInputBodyEnginePostgresql + func (e DatabaseCreateInputBodyEngine) Valid() bool + type DatabaseCreateJSONRequestBody = DatabaseCreateInputBody + type DatabaseCreateParams struct + IdempotencyKey *string + type DatabaseCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *DatabaseBody + func ParseDatabaseCreateResponse(rsp *http.Response) (*DatabaseCreateResponse, error) + func (r DatabaseCreateResponse) ContentType() string + func (r DatabaseCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseCreateResponse) GetBody() []byte + func (r DatabaseCreateResponse) GetJSON202() *DatabaseBody + func (r DatabaseCreateResponse) Status() string + func (r DatabaseCreateResponse) StatusCode() int + type DatabaseDbBody struct + CreatedAt time.Time + Id string + Name string + type DatabaseDbCreateInputBody struct + Name string + Schema *string + type DatabaseDbCreateJSONRequestBody = DatabaseDbCreateInputBody + type DatabaseDbCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDatabaseDbCreateResponse(rsp *http.Response) (*DatabaseDbCreateResponse, error) + func (r DatabaseDbCreateResponse) ContentType() string + func (r DatabaseDbCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseDbCreateResponse) GetBody() []byte + func (r DatabaseDbCreateResponse) Status() string + func (r DatabaseDbCreateResponse) StatusCode() int + type DatabaseDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDatabaseDeleteResponse(rsp *http.Response) (*DatabaseDeleteResponse, error) + func (r DatabaseDeleteResponse) ContentType() string + func (r DatabaseDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseDeleteResponse) GetBody() []byte + func (r DatabaseDeleteResponse) Status() string + func (r DatabaseDeleteResponse) StatusCode() int + type DatabaseEngineBody struct + Engine DatabaseEngineBodyEngine + IsDefault bool + Version string + type DatabaseEngineBodyEngine string + const DatabaseEngineBodyEngineMysql + const DatabaseEngineBodyEnginePostgresql + func (e DatabaseEngineBodyEngine) Valid() bool + type DatabaseGetOutputBody struct + Database DatabaseBody + Databases *[]DatabaseDbBody + Schema *string + TrustedSources *[]DatabaseTrustedSourceBody + Users *[]DatabaseUserBody + type DatabaseGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DatabaseGetOutputBody + func ParseDatabaseGetResponse(rsp *http.Response) (*DatabaseGetResponse, error) + func (r DatabaseGetResponse) ContentType() string + func (r DatabaseGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseGetResponse) GetBody() []byte + func (r DatabaseGetResponse) GetJSON200() *DatabaseGetOutputBody + func (r DatabaseGetResponse) Status() string + func (r DatabaseGetResponse) StatusCode() int + type DatabaseMetricsListParams struct + Window *DatabaseMetricsListParamsWindow + type DatabaseMetricsListParamsWindow string + const DatabaseMetricsListParamsWindowDay + const DatabaseMetricsListParamsWindowHour + const DatabaseMetricsListParamsWindowWeek + func (e DatabaseMetricsListParamsWindow) Valid() bool + type DatabaseMetricsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DbMetricsOutputBody + func ParseDatabaseMetricsListResponse(rsp *http.Response) (*DatabaseMetricsListResponse, error) + func (r DatabaseMetricsListResponse) ContentType() string + func (r DatabaseMetricsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseMetricsListResponse) GetBody() []byte + func (r DatabaseMetricsListResponse) GetJSON200() *DbMetricsOutputBody + func (r DatabaseMetricsListResponse) Status() string + func (r DatabaseMetricsListResponse) StatusCode() int + type DatabaseOptionsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DatabaseOptionsOutputBody + func ParseDatabaseOptionsListResponse(rsp *http.Response) (*DatabaseOptionsListResponse, error) + func (r DatabaseOptionsListResponse) ContentType() string + func (r DatabaseOptionsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseOptionsListResponse) GetBody() []byte + func (r DatabaseOptionsListResponse) GetJSON200() *DatabaseOptionsOutputBody + func (r DatabaseOptionsListResponse) Status() string + func (r DatabaseOptionsListResponse) StatusCode() int + type DatabaseOptionsOutputBody struct + Engines *[]DatabaseEngineBody + Plans *[]DatabasePlanBody + Schema *string + type DatabasePlanBody struct + Cores int64 + Currency string + DiskGb int64 + MemoryMb int64 + MonthlyPriceMinor int64 + Name string + Slug string + UsdMonthlyPriceMinor int64 + type DatabaseProjectSetJSONRequestBody = ProjectAssignmentBody + type DatabaseProjectSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDatabaseProjectSetResponse(rsp *http.Response) (*DatabaseProjectSetResponse, error) + func (r DatabaseProjectSetResponse) ContentType() string + func (r DatabaseProjectSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseProjectSetResponse) GetBody() []byte + func (r DatabaseProjectSetResponse) Status() string + func (r DatabaseProjectSetResponse) StatusCode() int + type DatabasePublicAccessInputBody struct + Enabled bool + Schema *string + type DatabasePublicAccessSetJSONRequestBody = DatabasePublicAccessInputBody + type DatabasePublicAccessSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDatabasePublicAccessSetResponse(rsp *http.Response) (*DatabasePublicAccessSetResponse, error) + func (r DatabasePublicAccessSetResponse) ContentType() string + func (r DatabasePublicAccessSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabasePublicAccessSetResponse) GetBody() []byte + func (r DatabasePublicAccessSetResponse) Status() string + func (r DatabasePublicAccessSetResponse) StatusCode() int + type DatabaseResizeInputBody struct + Plan string + Schema *string + type DatabaseResizeJSONRequestBody = DatabaseResizeInputBody + type DatabaseResizeResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDatabaseResizeResponse(rsp *http.Response) (*DatabaseResizeResponse, error) + func (r DatabaseResizeResponse) ContentType() string + func (r DatabaseResizeResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseResizeResponse) GetBody() []byte + func (r DatabaseResizeResponse) Status() string + func (r DatabaseResizeResponse) StatusCode() int + type DatabaseRestoreCreateJSONRequestBody = DatabaseRestoreInputBody + type DatabaseRestoreCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *DatabaseBody + func ParseDatabaseRestoreCreateResponse(rsp *http.Response) (*DatabaseRestoreCreateResponse, error) + func (r DatabaseRestoreCreateResponse) ContentType() string + func (r DatabaseRestoreCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseRestoreCreateResponse) GetBody() []byte + func (r DatabaseRestoreCreateResponse) GetJSON202() *DatabaseBody + func (r DatabaseRestoreCreateResponse) Status() string + func (r DatabaseRestoreCreateResponse) StatusCode() int + type DatabaseRestoreInputBody struct + Name string + Schema *string + TargetTime time.Time + type DatabaseTagsSetJSONRequestBody = TagsBody + type DatabaseTagsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TagsBody + func ParseDatabaseTagsSetResponse(rsp *http.Response) (*DatabaseTagsSetResponse, error) + func (r DatabaseTagsSetResponse) ContentType() string + func (r DatabaseTagsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseTagsSetResponse) GetBody() []byte + func (r DatabaseTagsSetResponse) GetJSON200() *TagsBody + func (r DatabaseTagsSetResponse) Status() string + func (r DatabaseTagsSetResponse) StatusCode() int + type DatabaseTrustedSourceBody struct + Cidr string + Note *string + type DatabaseTrustedSourcesInputBody struct + Schema *string + Sources *[]DatabaseTrustedSourceBody + type DatabaseTrustedSourcesSetJSONRequestBody = DatabaseTrustedSourcesInputBody + type DatabaseTrustedSourcesSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDatabaseTrustedSourcesSetResponse(rsp *http.Response) (*DatabaseTrustedSourcesSetResponse, error) + func (r DatabaseTrustedSourcesSetResponse) ContentType() string + func (r DatabaseTrustedSourcesSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseTrustedSourcesSetResponse) GetBody() []byte + func (r DatabaseTrustedSourcesSetResponse) Status() string + func (r DatabaseTrustedSourcesSetResponse) StatusCode() int + type DatabaseUserBody struct + CreatedAt time.Time + CreatedByAttachment bool + Id string + Username string + type DatabaseUserCreateInputBody struct + Schema *string + Username string + type DatabaseUserCreateJSONRequestBody = DatabaseUserCreateInputBody + type DatabaseUserCreateOutputBody struct + Password string + Schema *string + Username string + type DatabaseUserCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *DatabaseUserCreateOutputBody + func ParseDatabaseUserCreateResponse(rsp *http.Response) (*DatabaseUserCreateResponse, error) + func (r DatabaseUserCreateResponse) ContentType() string + func (r DatabaseUserCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseUserCreateResponse) GetBody() []byte + func (r DatabaseUserCreateResponse) GetJSON202() *DatabaseUserCreateOutputBody + func (r DatabaseUserCreateResponse) Status() string + func (r DatabaseUserCreateResponse) StatusCode() int + type DatabaseUserDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDatabaseUserDeleteResponse(rsp *http.Response) (*DatabaseUserDeleteResponse, error) + func (r DatabaseUserDeleteResponse) ContentType() string + func (r DatabaseUserDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseUserDeleteResponse) GetBody() []byte + func (r DatabaseUserDeleteResponse) Status() string + func (r DatabaseUserDeleteResponse) StatusCode() int + type DatabaseUserPasswordResetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *DatabaseUserResetOutputBody + func ParseDatabaseUserPasswordResetResponse(rsp *http.Response) (*DatabaseUserPasswordResetResponse, error) + func (r DatabaseUserPasswordResetResponse) ContentType() string + func (r DatabaseUserPasswordResetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabaseUserPasswordResetResponse) GetBody() []byte + func (r DatabaseUserPasswordResetResponse) GetJSON202() *DatabaseUserResetOutputBody + func (r DatabaseUserPasswordResetResponse) Status() string + func (r DatabaseUserPasswordResetResponse) StatusCode() int + type DatabaseUserResetOutputBody struct + Password string + Schema *string + type DatabasesListOutputBody struct + Databases *[]DatabaseBody + Schema *string + Total int64 + type DatabasesListParams struct + Limit *int32 + Offset *int32 + Project *string + Tag *[]string + type DatabasesListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DatabasesListOutputBody + func ParseDatabasesListResponse(rsp *http.Response) (*DatabasesListResponse, error) + func (r DatabasesListResponse) ContentType() string + func (r DatabasesListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DatabasesListResponse) GetBody() []byte + func (r DatabasesListResponse) GetJSON200() *DatabasesListOutputBody + func (r DatabasesListResponse) Status() string + func (r DatabasesListResponse) StatusCode() int + type DbAlertSaveInputBody struct + DurationMin int32 + Enabled bool + Metric DbAlertSaveInputBodyMetric + Schema *string + ThresholdPct float32 + type DbAlertSaveInputBodyMetric string + const DbAlertSaveInputBodyMetricCpu + const DbAlertSaveInputBodyMetricDisk + const DbAlertSaveInputBodyMetricMemory + const DbAlertSaveInputBodyMetricNetOut + const DbAlertSaveInputBodyMetricTraffic + func (e DbAlertSaveInputBodyMetric) Valid() bool + type DbAlertsListOutputBody struct + Alerts *[]AlertBody + Schema *string + type DbMetricPointBody struct + At time.Time + CpuPct float32 + DiskRead int64 + DiskWrite int64 + MemBytes int64 + NetIn int64 + NetOut int64 + type DbMetricsOutputBody struct + Points *[]DbMetricPointBody + Schema *string + type DeletionBlockersBody struct + Apps bool + Balance bool + Databases bool + DnsZones bool + PendingPayment bool + Servers bool + SharedOrganization bool + Volumes bool + type DeletionRequestInputBody struct + Password *string + Reason *string + Schema *string + type DeletionRequestOutputBody struct + ScheduledFor time.Time + Schema *string + type DeletionStateOutputBody struct + Blocked bool + Blockers DeletionBlockersBody + RequestedAt *time.Time + ScheduledFor *time.Time + Schema *string + type DnsRecordBody struct + Content string + CreatedAt time.Time + Id string + Name string + Priority *int32 + Schema *string + Ttl int32 + Type string + type DnsRecordCreateJSONRequestBody = RecordCreateInputBody + type DnsRecordCreateParams struct + IdempotencyKey *string + type DnsRecordCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *DnsRecordBody + func ParseDnsRecordCreateResponse(rsp *http.Response) (*DnsRecordCreateResponse, error) + func (r DnsRecordCreateResponse) ContentType() string + func (r DnsRecordCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DnsRecordCreateResponse) GetBody() []byte + func (r DnsRecordCreateResponse) GetJSON201() *DnsRecordBody + func (r DnsRecordCreateResponse) Status() string + func (r DnsRecordCreateResponse) StatusCode() int + type DnsRecordDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDnsRecordDeleteResponse(rsp *http.Response) (*DnsRecordDeleteResponse, error) + func (r DnsRecordDeleteResponse) ContentType() string + func (r DnsRecordDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DnsRecordDeleteResponse) GetBody() []byte + func (r DnsRecordDeleteResponse) Status() string + func (r DnsRecordDeleteResponse) StatusCode() int + type DnsRecordUpdateJSONRequestBody = RecordUpdateInputBody + type DnsRecordUpdateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DnsRecordBody + func ParseDnsRecordUpdateResponse(rsp *http.Response) (*DnsRecordUpdateResponse, error) + func (r DnsRecordUpdateResponse) ContentType() string + func (r DnsRecordUpdateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DnsRecordUpdateResponse) GetBody() []byte + func (r DnsRecordUpdateResponse) GetJSON200() *DnsRecordBody + func (r DnsRecordUpdateResponse) Status() string + func (r DnsRecordUpdateResponse) StatusCode() int + type DnsZoneBody struct + CreatedAt time.Time + Id string + Name string + Nameservers *[]string + ProjectId *string + Tags *[]string + type DnsZoneCreateJSONRequestBody = ZoneCreateInputBody + type DnsZoneCreateParams struct + IdempotencyKey *string + type DnsZoneCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *ZoneDetailOutputBody + func ParseDnsZoneCreateResponse(rsp *http.Response) (*DnsZoneCreateResponse, error) + func (r DnsZoneCreateResponse) ContentType() string + func (r DnsZoneCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DnsZoneCreateResponse) GetBody() []byte + func (r DnsZoneCreateResponse) GetJSON201() *ZoneDetailOutputBody + func (r DnsZoneCreateResponse) Status() string + func (r DnsZoneCreateResponse) StatusCode() int + type DnsZoneDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDnsZoneDeleteResponse(rsp *http.Response) (*DnsZoneDeleteResponse, error) + func (r DnsZoneDeleteResponse) ContentType() string + func (r DnsZoneDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DnsZoneDeleteResponse) GetBody() []byte + func (r DnsZoneDeleteResponse) Status() string + func (r DnsZoneDeleteResponse) StatusCode() int + type DnsZoneGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ZoneDetailOutputBody + func ParseDnsZoneGetResponse(rsp *http.Response) (*DnsZoneGetResponse, error) + func (r DnsZoneGetResponse) ContentType() string + func (r DnsZoneGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DnsZoneGetResponse) GetBody() []byte + func (r DnsZoneGetResponse) GetJSON200() *ZoneDetailOutputBody + func (r DnsZoneGetResponse) Status() string + func (r DnsZoneGetResponse) StatusCode() int + type DnsZoneProjectSetJSONRequestBody = ProjectAssignmentBody + type DnsZoneProjectSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDnsZoneProjectSetResponse(rsp *http.Response) (*DnsZoneProjectSetResponse, error) + func (r DnsZoneProjectSetResponse) ContentType() string + func (r DnsZoneProjectSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DnsZoneProjectSetResponse) GetBody() []byte + func (r DnsZoneProjectSetResponse) Status() string + func (r DnsZoneProjectSetResponse) StatusCode() int + type DnsZoneTagsSetJSONRequestBody = TagsBody + type DnsZoneTagsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TagsBody + func ParseDnsZoneTagsSetResponse(rsp *http.Response) (*DnsZoneTagsSetResponse, error) + func (r DnsZoneTagsSetResponse) ContentType() string + func (r DnsZoneTagsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DnsZoneTagsSetResponse) GetBody() []byte + func (r DnsZoneTagsSetResponse) GetJSON200() *TagsBody + func (r DnsZoneTagsSetResponse) Status() string + func (r DnsZoneTagsSetResponse) StatusCode() int + type DnsZonesListParams struct + Limit *int32 + Offset *int32 + Project *string + Tag *[]string + type DnsZonesListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ZonesListOutputBody + func ParseDnsZonesListResponse(rsp *http.Response) (*DnsZonesListResponse, error) + func (r DnsZonesListResponse) ContentType() string + func (r DnsZonesListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DnsZonesListResponse) GetBody() []byte + func (r DnsZonesListResponse) GetJSON200() *ZonesListOutputBody + func (r DnsZonesListResponse) Status() string + func (r DnsZonesListResponse) StatusCode() int + type DomainAutoRenewInputBody struct + AutoRenew bool + Schema *string + type DomainAutoRenewSetJSONRequestBody = DomainAutoRenewInputBody + type DomainAutoRenewSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainBody + func ParseDomainAutoRenewSetResponse(rsp *http.Response) (*DomainAutoRenewSetResponse, error) + func (r DomainAutoRenewSetResponse) ContentType() string + func (r DomainAutoRenewSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainAutoRenewSetResponse) GetBody() []byte + func (r DomainAutoRenewSetResponse) GetJSON200() *DomainBody + func (r DomainAutoRenewSetResponse) Status() string + func (r DomainAutoRenewSetResponse) StatusCode() int + type DomainBody struct + AutoRenew bool + CreatedAt time.Time + DnsZoneId *string + ExpiresAt *time.Time + Expiring bool + Id string + LastErrorCode *string + Name string + Nameservers *[]string + NameserversApplied *[]string + PriceCurrency string + PriceMinor int64 + Privacy bool + ProjectId *string + RegisteredAt *time.Time + RegistrarLock bool + Schema *string + State DomainBodyState + Tags *[]string + Tld string + TransferableAt *time.Time + Years int64 + type DomainBodyState string + const DomainBodyStateActive + const DomainBodyStateExpired + const DomainBodyStateFailed + const DomainBodyStateRedemption + const DomainBodyStateRegistering + const DomainBodyStateTransferPending + func (e DomainBodyState) Valid() bool + type DomainContactBody struct + AddressLine1 string + AddressLine2 string + City string + Company string + Country string + Email string + FirstName string + Id string + IsDefault bool + Label string + LastName string + Phone string + PhoneCountry string + PostalCode string + Schema *string + StateProvince string + type DomainContactBodyInput struct + AddressLine1 string + AddressLine2 *string + City string + Company *string + Country string + Email string + FirstName string + IsDefault *bool + Label *string + LastName string + Phone string + PhoneCountry *string + PostalCode string + Schema *string + StateProvince *string + type DomainContactCreateJSONRequestBody = DomainContactBodyInput + type DomainContactCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainContactBody + func ParseDomainContactCreateResponse(rsp *http.Response) (*DomainContactCreateResponse, error) + func (r DomainContactCreateResponse) ContentType() string + func (r DomainContactCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainContactCreateResponse) GetBody() []byte + func (r DomainContactCreateResponse) GetJSON200() *DomainContactBody + func (r DomainContactCreateResponse) Status() string + func (r DomainContactCreateResponse) StatusCode() int + type DomainContactDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDomainContactDeleteResponse(rsp *http.Response) (*DomainContactDeleteResponse, error) + func (r DomainContactDeleteResponse) ContentType() string + func (r DomainContactDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainContactDeleteResponse) GetBody() []byte + func (r DomainContactDeleteResponse) Status() string + func (r DomainContactDeleteResponse) StatusCode() int + type DomainContactSuggestOutputBody struct + Contact DomainContactBodyInput + Schema *string + Sources map[string]string + type DomainContactSuggestResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainContactSuggestOutputBody + func ParseDomainContactSuggestResponse(rsp *http.Response) (*DomainContactSuggestResponse, error) + func (r DomainContactSuggestResponse) ContentType() string + func (r DomainContactSuggestResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainContactSuggestResponse) GetBody() []byte + func (r DomainContactSuggestResponse) GetJSON200() *DomainContactSuggestOutputBody + func (r DomainContactSuggestResponse) Status() string + func (r DomainContactSuggestResponse) StatusCode() int + type DomainContactUpdateJSONRequestBody = DomainContactBodyInput + type DomainContactUpdateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainContactBody + func ParseDomainContactUpdateResponse(rsp *http.Response) (*DomainContactUpdateResponse, error) + func (r DomainContactUpdateResponse) ContentType() string + func (r DomainContactUpdateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainContactUpdateResponse) GetBody() []byte + func (r DomainContactUpdateResponse) GetJSON200() *DomainContactBody + func (r DomainContactUpdateResponse) Status() string + func (r DomainContactUpdateResponse) StatusCode() int + type DomainContactsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainContactsOutputBody + func ParseDomainContactsListResponse(rsp *http.Response) (*DomainContactsListResponse, error) + func (r DomainContactsListResponse) ContentType() string + func (r DomainContactsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainContactsListResponse) GetBody() []byte + func (r DomainContactsListResponse) GetJSON200() *DomainContactsOutputBody + func (r DomainContactsListResponse) Status() string + func (r DomainContactsListResponse) StatusCode() int + type DomainContactsOutputBody struct + Contacts *[]DomainContactBody + Schema *string + type DomainEventBody struct + At time.Time + Kind string + Message string + Payload interface{} + type DomainFlagInputBody struct + Enabled bool + Schema *string + type DomainGetOutputBody struct + Contact DomainContactBody + Domain DomainBody + Events *[]DomainEventBody + Schema *string + type DomainGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainGetOutputBody + func ParseDomainGetResponse(rsp *http.Response) (*DomainGetResponse, error) + func (r DomainGetResponse) ContentType() string + func (r DomainGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainGetResponse) GetBody() []byte + func (r DomainGetResponse) GetJSON200() *DomainGetOutputBody + func (r DomainGetResponse) Status() string + func (r DomainGetResponse) StatusCode() int + type DomainLockSetJSONRequestBody = DomainFlagInputBody + type DomainLockSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainBody + func ParseDomainLockSetResponse(rsp *http.Response) (*DomainLockSetResponse, error) + func (r DomainLockSetResponse) ContentType() string + func (r DomainLockSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainLockSetResponse) GetBody() []byte + func (r DomainLockSetResponse) GetJSON200() *DomainBody + func (r DomainLockSetResponse) Status() string + func (r DomainLockSetResponse) StatusCode() int + type DomainNameserversInputBody struct + Nameservers *[]string + Schema *string + type DomainNameserversSetJSONRequestBody = DomainNameserversInputBody + type DomainNameserversSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainBody + func ParseDomainNameserversSetResponse(rsp *http.Response) (*DomainNameserversSetResponse, error) + func (r DomainNameserversSetResponse) ContentType() string + func (r DomainNameserversSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainNameserversSetResponse) GetBody() []byte + func (r DomainNameserversSetResponse) GetJSON200() *DomainBody + func (r DomainNameserversSetResponse) Status() string + func (r DomainNameserversSetResponse) StatusCode() int + type DomainOutputBody struct + ChargeCurrency string + ChargedMinor int64 + Domain DomainBody + Schema *string + type DomainPrivacySetJSONRequestBody = DomainFlagInputBody + type DomainPrivacySetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainBody + func ParseDomainPrivacySetResponse(rsp *http.Response) (*DomainPrivacySetResponse, error) + func (r DomainPrivacySetResponse) ContentType() string + func (r DomainPrivacySetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainPrivacySetResponse) GetBody() []byte + func (r DomainPrivacySetResponse) GetJSON200() *DomainBody + func (r DomainPrivacySetResponse) Status() string + func (r DomainPrivacySetResponse) StatusCode() int + type DomainProjectSetJSONRequestBody = ProjectAssignmentBody + type DomainProjectSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseDomainProjectSetResponse(rsp *http.Response) (*DomainProjectSetResponse, error) + func (r DomainProjectSetResponse) ContentType() string + func (r DomainProjectSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainProjectSetResponse) GetBody() []byte + func (r DomainProjectSetResponse) Status() string + func (r DomainProjectSetResponse) StatusCode() int + type DomainRegisterInputBody struct + AutoRenew *bool + ContactId string + Name string + Privacy *bool + ProjectId *string + Schema *string + Tags *[]string + Years int64 + type DomainRegisterJSONRequestBody = DomainRegisterInputBody + type DomainRegisterParams struct + IdempotencyKey *string + type DomainRegisterResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainOutputBody + func ParseDomainRegisterResponse(rsp *http.Response) (*DomainRegisterResponse, error) + func (r DomainRegisterResponse) ContentType() string + func (r DomainRegisterResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainRegisterResponse) GetBody() []byte + func (r DomainRegisterResponse) GetJSON200() *DomainOutputBody + func (r DomainRegisterResponse) Status() string + func (r DomainRegisterResponse) StatusCode() int + type DomainRenewInputBody struct + Schema *string + Years int64 + type DomainRenewJSONRequestBody = DomainRenewInputBody + type DomainRenewResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainOutputBody + func ParseDomainRenewResponse(rsp *http.Response) (*DomainRenewResponse, error) + func (r DomainRenewResponse) ContentType() string + func (r DomainRenewResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainRenewResponse) GetBody() []byte + func (r DomainRenewResponse) GetJSON200() *DomainOutputBody + func (r DomainRenewResponse) Status() string + func (r DomainRenewResponse) StatusCode() int + type DomainSearchCandidateBody struct + Name string + PriceCurrency *string + RegisterPriceMinor *int64 + Status DomainSearchCandidateBodyStatus + Tld string + Typed bool + type DomainSearchCandidateBodyStatus string + const DomainSearchCandidateBodyStatusAvailable + const DomainSearchCandidateBodyStatusPremium + const DomainSearchCandidateBodyStatusReserved + const DomainSearchCandidateBodyStatusTaken + const DomainSearchCandidateBodyStatusUnknown + func (e DomainSearchCandidateBodyStatus) Valid() bool + type DomainSearchInputBody struct + Query string + Schema *string + Tlds *[]string + type DomainSearchJSONRequestBody = DomainSearchInputBody + type DomainSearchOutputBody struct + Candidates *[]DomainSearchCandidateBody + Query string + Schema *string + UnofferedTld *string + type DomainSearchResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainSearchOutputBody + func ParseDomainSearchResponse(rsp *http.Response) (*DomainSearchResponse, error) + func (r DomainSearchResponse) ContentType() string + func (r DomainSearchResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainSearchResponse) GetBody() []byte + func (r DomainSearchResponse) GetJSON200() *DomainSearchOutputBody + func (r DomainSearchResponse) Status() string + func (r DomainSearchResponse) StatusCode() int + type DomainTLDBody struct + MaxYears int64 + MinYears int64 + PriceCurrency string + RegisterPriceMinor int64 + RenewPriceMinor int64 + SupportsPrivacy bool + SupportsTransfer bool + Tld string + TransferPriceMinor int64 + type DomainTLDsOutputBody struct + Enabled bool + Schema *string + Tlds *[]DomainTLDBody + type DomainTagsSetJSONRequestBody = TagsBody + type DomainTagsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TagsBody + func ParseDomainTagsSetResponse(rsp *http.Response) (*DomainTagsSetResponse, error) + func (r DomainTagsSetResponse) ContentType() string + func (r DomainTagsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainTagsSetResponse) GetBody() []byte + func (r DomainTagsSetResponse) GetJSON200() *TagsBody + func (r DomainTagsSetResponse) Status() string + func (r DomainTagsSetResponse) StatusCode() int + type DomainTldsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainTLDsOutputBody + func ParseDomainTldsListResponse(rsp *http.Response) (*DomainTldsListResponse, error) + func (r DomainTldsListResponse) ContentType() string + func (r DomainTldsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainTldsListResponse) GetBody() []byte + func (r DomainTldsListResponse) GetJSON200() *DomainTLDsOutputBody + func (r DomainTldsListResponse) Status() string + func (r DomainTldsListResponse) StatusCode() int + type DomainTransferInputBody struct + AuthCode string + AutoRenew *bool + ContactId string + Name string + Privacy *bool + ProjectId *string + Schema *string + Tags *[]string + type DomainTransferJSONRequestBody = DomainTransferInputBody + type DomainTransferResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainOutputBody + func ParseDomainTransferResponse(rsp *http.Response) (*DomainTransferResponse, error) + func (r DomainTransferResponse) ContentType() string + func (r DomainTransferResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainTransferResponse) GetBody() []byte + func (r DomainTransferResponse) GetJSON200() *DomainOutputBody + func (r DomainTransferResponse) Status() string + func (r DomainTransferResponse) StatusCode() int + type DomainsListOutputBody struct + Domains *[]DomainBody + Schema *string + Summary SummaryStruct + Total int64 + type DomainsListParams struct + Limit *int32 + Offset *int32 + Project *string + Q *string + State *string + Tag *[]string + type DomainsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *DomainsListOutputBody + func ParseDomainsListResponse(rsp *http.Response) (*DomainsListResponse, error) + func (r DomainsListResponse) ContentType() string + func (r DomainsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r DomainsListResponse) GetBody() []byte + func (r DomainsListResponse) GetJSON200() *DomainsListOutputBody + func (r DomainsListResponse) Status() string + func (r DomainsListResponse) StatusCode() int + type EmailChangeConfirmInputBody struct + Schema *string + Token string + type EmailChangeConfirmOutputBody struct + Email string + Schema *string + type EmailChangeInputBody struct + NewEmail openapi_types.Email + Password *string + Schema *string + type EnvVarBody struct + Key string + Phase *EnvVarBodyPhase + Secret *bool + Value string + type EnvVarBodyPhase string + const EnvVarBodyPhaseBoth + const EnvVarBodyPhaseBuild + const EnvVarBodyPhaseRun + func (e EnvVarBodyPhase) Valid() bool + type ErrorDetail struct + Location *string + Message *string + Value interface{} + type ErrorModel struct + Detail *string + Errors *[]ErrorDetail + Instance *string + Schema *string + Status *int64 + Title *string + Type *string + type EventBody struct + At time.Time + Id int64 + Kind string + Message string + Payload interface{} + type EventsOutputBody struct + Events *[]EventBody + Schema *string + type ExecStartInputBody struct + BuildId *string + Kind ExecStartInputBodyKind + Replica *int32 + Schema *string + type ExecStartInputBodyKind string + const ExecStartInputBodyKindBuild + const ExecStartInputBodyKindHttps + const ExecStartInputBodyKindLogs + const ExecStartInputBodyKindShell + func (e ExecStartInputBodyKind) Valid() bool + type ExecStartOutputBody struct + ExpiresAt time.Time + Schema *string + SessionId string + Token string + type ExportAccountSummaryRow struct + Country *string + CreatedAt time.Time + DeletionRequestedAt *time.Time + DeletionScheduledFor *time.Time + Email string + EmailVerifiedAt *time.Time + FirstName string + FullName string + ID string + KvkkConsents []byte + LastName string + Locale string + Phone *string + PhoneVerifiedAt *time.Time + SuspendedAt *time.Time + Timezone *string + type ExportUserBillingProfilesRow struct + Address string + City string + Country string + CreatedAt time.Time + District string + Kind string + OrganizationID string + OrganizationName string + Phone string + PostalCode string + TaxID string + TaxOffice string + Title string + UpdatedAt time.Time + type ExportUserIdentitiesRow struct + CreatedAt time.Time + Email string + LastLoginAt *time.Time + Provider string + type ExportUserOrganizationsRow struct + ID string + IsOwner bool + IsPersonal bool + JoinedAt time.Time + Name string + Role string + type ExportUserPaymentsRow struct + AmountMinor int64 + CreatedAt time.Time + Currency string + InvoiceIssuedAt *time.Time + InvoiceNo *string + MerchantOid string + Method string + PaidAt *time.Time + State string + VatRateBp *int32 + type ExportUserResourcesRow struct + Code string + CreatedAt time.Time + DeletedAt *time.Time + Kind string + Name string + State string + type ExportUserSSHKeysRow struct + CreatedAt time.Time + Fingerprint string + Name string + type ExportUserTicketsRow struct + Code string + CreatedAt time.Time + Status string + Subject string + type FeatureBody struct + Enabled bool + Group string + InUse bool + Key string + Label string + Stage FeatureBodyStage + type FeatureBodyStage string + const Beta + const Ga + const Soon + func (e FeatureBodyStage) Valid() bool + type FilesystemBody struct + At time.Time + Mountpoint string + TotalBytes int64 + Type string + UsedBytes int64 + type FilesystemsOutputBody struct + Filesystems *[]FilesystemBody + Schema *string + type FirewallBody struct + CreatedAt time.Time + Id string + Name string + RuleCount int64 + Schema *string + ServerCount int64 + type FirewallCreateInputBody struct + Name string + Schema *string + type FirewallCreateJSONRequestBody = FirewallCreateInputBody + type FirewallCreateParams struct + IdempotencyKey *string + type FirewallCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *FirewallBody + func ParseFirewallCreateResponse(rsp *http.Response) (*FirewallCreateResponse, error) + func (r FirewallCreateResponse) ContentType() string + func (r FirewallCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FirewallCreateResponse) GetBody() []byte + func (r FirewallCreateResponse) GetJSON201() *FirewallBody + func (r FirewallCreateResponse) Status() string + func (r FirewallCreateResponse) StatusCode() int + type FirewallDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseFirewallDeleteResponse(rsp *http.Response) (*FirewallDeleteResponse, error) + func (r FirewallDeleteResponse) ContentType() string + func (r FirewallDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FirewallDeleteResponse) GetBody() []byte + func (r FirewallDeleteResponse) Status() string + func (r FirewallDeleteResponse) StatusCode() int + type FirewallGetOutputBody struct + Firewall FirewallBody + Rules *[]FirewallRuleBody + Schema *string + Servers *[]FirewallServerBody + type FirewallGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *FirewallGetOutputBody + func ParseFirewallGetResponse(rsp *http.Response) (*FirewallGetResponse, error) + func (r FirewallGetResponse) ContentType() string + func (r FirewallGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FirewallGetResponse) GetBody() []byte + func (r FirewallGetResponse) GetJSON200() *FirewallGetOutputBody + func (r FirewallGetResponse) Status() string + func (r FirewallGetResponse) StatusCode() int + type FirewallRuleBody struct + Direction FirewallRuleBodyDirection + PortFrom *int64 + PortTo *int64 + Protocol FirewallRuleBodyProtocol + Source string + type FirewallRuleBodyDirection string + const FirewallRuleBodyDirectionIn + const FirewallRuleBodyDirectionOut + func (e FirewallRuleBodyDirection) Valid() bool + type FirewallRuleBodyProtocol string + const FirewallRuleBodyProtocolIcmp + const FirewallRuleBodyProtocolTcp + const FirewallRuleBodyProtocolUdp + func (e FirewallRuleBodyProtocol) Valid() bool + type FirewallRulesPutInputBody struct + Rules *[]FirewallRuleBody + Schema *string + type FirewallRulesReplaceJSONRequestBody = FirewallRulesPutInputBody + type FirewallRulesReplaceResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseFirewallRulesReplaceResponse(rsp *http.Response) (*FirewallRulesReplaceResponse, error) + func (r FirewallRulesReplaceResponse) ContentType() string + func (r FirewallRulesReplaceResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FirewallRulesReplaceResponse) GetBody() []byte + func (r FirewallRulesReplaceResponse) Status() string + func (r FirewallRulesReplaceResponse) StatusCode() int + type FirewallServerAttachResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseFirewallServerAttachResponse(rsp *http.Response) (*FirewallServerAttachResponse, error) + func (r FirewallServerAttachResponse) ContentType() string + func (r FirewallServerAttachResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FirewallServerAttachResponse) GetBody() []byte + func (r FirewallServerAttachResponse) Status() string + func (r FirewallServerAttachResponse) StatusCode() int + type FirewallServerBody struct + Name string + ServerId string + State string + type FirewallServerDetachResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseFirewallServerDetachResponse(rsp *http.Response) (*FirewallServerDetachResponse, error) + func (r FirewallServerDetachResponse) ContentType() string + func (r FirewallServerDetachResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FirewallServerDetachResponse) GetBody() []byte + func (r FirewallServerDetachResponse) Status() string + func (r FirewallServerDetachResponse) StatusCode() int + type FirewallUpdateInputBody struct + Name string + Schema *string + type FirewallUpdateJSONRequestBody = FirewallUpdateInputBody + type FirewallUpdateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseFirewallUpdateResponse(rsp *http.Response) (*FirewallUpdateResponse, error) + func (r FirewallUpdateResponse) ContentType() string + func (r FirewallUpdateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FirewallUpdateResponse) GetBody() []byte + func (r FirewallUpdateResponse) Status() string + func (r FirewallUpdateResponse) StatusCode() int + type FirewallsListOutputBody struct + Firewalls *[]FirewallBody + Schema *string + Total int64 + type FirewallsListParams struct + Limit *int32 + Offset *int32 + type FirewallsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *FirewallsListOutputBody + func ParseFirewallsListResponse(rsp *http.Response) (*FirewallsListResponse, error) + func (r FirewallsListResponse) ContentType() string + func (r FirewallsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FirewallsListResponse) GetBody() []byte + func (r FirewallsListResponse) GetJSON200() *FirewallsListOutputBody + func (r FirewallsListResponse) Status() string + func (r FirewallsListResponse) StatusCode() int + type FloatingIPBody struct + Address string + CreatedAt time.Time + Id string + RegionName *string + RegionSlug *string + Schema *string + Server *FloatingIPServerRef + State FloatingIPBodyState + type FloatingIPBodyState string + const FloatingIPBodyStateActive + const FloatingIPBodyStateDeleting + const FloatingIPBodyStateError + const FloatingIPBodyStateProvisioning + func (e FloatingIPBodyState) Valid() bool + type FloatingIPServerRef struct + Code *string + Id string + Name *string + type FloatingIpAttachInputBody struct + Schema *string + ServerId string + type FloatingIpAttachJSONRequestBody = FloatingIpAttachInputBody + type FloatingIpAttachResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseFloatingIpAttachResponse(rsp *http.Response) (*FloatingIpAttachResponse, error) + func (r FloatingIpAttachResponse) ContentType() string + func (r FloatingIpAttachResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FloatingIpAttachResponse) GetBody() []byte + func (r FloatingIpAttachResponse) Status() string + func (r FloatingIpAttachResponse) StatusCode() int + type FloatingIpCreateInputBody struct + Region *string + Schema *string + type FloatingIpCreateJSONRequestBody = FloatingIpCreateInputBody + type FloatingIpCreateParams struct + IdempotencyKey *string + type FloatingIpCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *FloatingIPBody + func ParseFloatingIpCreateResponse(rsp *http.Response) (*FloatingIpCreateResponse, error) + func (r FloatingIpCreateResponse) ContentType() string + func (r FloatingIpCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FloatingIpCreateResponse) GetBody() []byte + func (r FloatingIpCreateResponse) GetJSON201() *FloatingIPBody + func (r FloatingIpCreateResponse) Status() string + func (r FloatingIpCreateResponse) StatusCode() int + type FloatingIpDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseFloatingIpDeleteResponse(rsp *http.Response) (*FloatingIpDeleteResponse, error) + func (r FloatingIpDeleteResponse) ContentType() string + func (r FloatingIpDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FloatingIpDeleteResponse) GetBody() []byte + func (r FloatingIpDeleteResponse) Status() string + func (r FloatingIpDeleteResponse) StatusCode() int + type FloatingIpDetachResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseFloatingIpDetachResponse(rsp *http.Response) (*FloatingIpDetachResponse, error) + func (r FloatingIpDetachResponse) ContentType() string + func (r FloatingIpDetachResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FloatingIpDetachResponse) GetBody() []byte + func (r FloatingIpDetachResponse) Status() string + func (r FloatingIpDetachResponse) StatusCode() int + type FloatingIpGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *FloatingIPBody + func ParseFloatingIpGetResponse(rsp *http.Response) (*FloatingIpGetResponse, error) + func (r FloatingIpGetResponse) ContentType() string + func (r FloatingIpGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FloatingIpGetResponse) GetBody() []byte + func (r FloatingIpGetResponse) GetJSON200() *FloatingIPBody + func (r FloatingIpGetResponse) Status() string + func (r FloatingIpGetResponse) StatusCode() int + type FloatingIpsListOutputBody struct + FloatingIps *[]FloatingIPBody + Schema *string + type FloatingIpsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *FloatingIpsListOutputBody + func ParseFloatingIpsListResponse(rsp *http.Response) (*FloatingIpsListResponse, error) + func (r FloatingIpsListResponse) ContentType() string + func (r FloatingIpsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FloatingIpsListResponse) GetBody() []byte + func (r FloatingIpsListResponse) GetJSON200() *FloatingIpsListOutputBody + func (r FloatingIpsListResponse) Status() string + func (r FloatingIpsListResponse) StatusCode() int + type FxOutputBody struct + AsOf string + Schema *string + UsdTry float64 + type FxRateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *FxOutputBody + func ParseFxRateResponse(rsp *http.Response) (*FxRateResponse, error) + func (r FxRateResponse) ContentType() string + func (r FxRateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r FxRateResponse) GetBody() []byte + func (r FxRateResponse) GetJSON200() *FxOutputBody + func (r FxRateResponse) Status() string + func (r FxRateResponse) StatusCode() int + type GitConnectionBody struct + AccountLogin string + AccountType string + CreatedAt time.Time + Id string + Provider string + Suspended bool + type GitConnectionDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseGitConnectionDeleteResponse(rsp *http.Response) (*GitConnectionDeleteResponse, error) + func (r GitConnectionDeleteResponse) ContentType() string + func (r GitConnectionDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r GitConnectionDeleteResponse) GetBody() []byte + func (r GitConnectionDeleteResponse) Status() string + func (r GitConnectionDeleteResponse) StatusCode() int + type GitConnectionsListOutputBody struct + Connections *[]GitConnectionBody + Schema *string + type GitConnectionsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *GitConnectionsListOutputBody + func ParseGitConnectionsListResponse(rsp *http.Response) (*GitConnectionsListResponse, error) + func (r GitConnectionsListResponse) ContentType() string + func (r GitConnectionsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r GitConnectionsListResponse) GetBody() []byte + func (r GitConnectionsListResponse) GetJSON200() *GitConnectionsListOutputBody + func (r GitConnectionsListResponse) Status() string + func (r GitConnectionsListResponse) StatusCode() int + type GitInstallCallbackParams struct + Code *string + CpGit *Cookie + Error *string + State *string + type GitInstallCallbackParamsProvider string + const GitInstallCallbackParamsProviderGithub + func (e GitInstallCallbackParamsProvider) Valid() bool + type GitInstallCallbackResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers302 *GitInstallCallbackResponse302Headers + func ParseGitInstallCallbackResponse(rsp *http.Response) (*GitInstallCallbackResponse, error) + func (r GitInstallCallbackResponse) ContentType() string + func (r GitInstallCallbackResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r GitInstallCallbackResponse) GetBody() []byte + func (r GitInstallCallbackResponse) Status() string + func (r GitInstallCallbackResponse) StatusCode() int + type GitInstallCallbackResponse302Headers struct + Location *string + SetCookie *string + type GitInstallSetupParams struct + CpGit *Cookie + InstallationId *string + SetupAction *string + State *string + type GitInstallSetupParamsProvider string + const GitInstallSetupParamsProviderGithub + func (e GitInstallSetupParamsProvider) Valid() bool + type GitInstallSetupResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers302 *GitInstallSetupResponse302Headers + func ParseGitInstallSetupResponse(rsp *http.Response) (*GitInstallSetupResponse, error) + func (r GitInstallSetupResponse) ContentType() string + func (r GitInstallSetupResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r GitInstallSetupResponse) GetBody() []byte + func (r GitInstallSetupResponse) Status() string + func (r GitInstallSetupResponse) StatusCode() int + type GitInstallSetupResponse302Headers struct + Location *string + SetCookie *string + type GitInstallStartParamsProvider string + const GitInstallStartParamsProviderGithub + func (e GitInstallStartParamsProvider) Valid() bool + type GitInstallStartResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers302 *GitInstallStartResponse302Headers + func ParseGitInstallStartResponse(rsp *http.Response) (*GitInstallStartResponse, error) + func (r GitInstallStartResponse) ContentType() string + func (r GitInstallStartResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r GitInstallStartResponse) GetBody() []byte + func (r GitInstallStartResponse) Status() string + func (r GitInstallStartResponse) StatusCode() int + type GitInstallStartResponse302Headers struct + Location *string + SetCookie *string + type GitProvidersListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *GitProvidersOutputBody + func ParseGitProvidersListResponse(rsp *http.Response) (*GitProvidersListResponse, error) + func (r GitProvidersListResponse) ContentType() string + func (r GitProvidersListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r GitProvidersListResponse) GetBody() []byte + func (r GitProvidersListResponse) GetJSON200() *GitProvidersOutputBody + func (r GitProvidersListResponse) Status() string + func (r GitProvidersListResponse) StatusCode() int + type GitProvidersOutputBody struct + Providers *[]string + Schema *string + type GitRepositoriesListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *GitRepositoriesOutputBody + func ParseGitRepositoriesListResponse(rsp *http.Response) (*GitRepositoriesListResponse, error) + func (r GitRepositoriesListResponse) ContentType() string + func (r GitRepositoriesListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r GitRepositoriesListResponse) GetBody() []byte + func (r GitRepositoriesListResponse) GetJSON200() *GitRepositoriesOutputBody + func (r GitRepositoriesListResponse) Status() string + func (r GitRepositoriesListResponse) StatusCode() int + type GitRepositoriesOutputBody struct + AppsUsing int64 + Repositories *[]GitRepositoryBody + Schema *string + type GitRepositoryBody struct + CloneUrl string + DefaultBranch string + FullName string + Private bool + type HttpRequestDoer interface + Do func(req *http.Request) (*http.Response, error) + type IdentitiesOutputBody struct + Identities *[]IdentityItem + Schema *string + type IdentityItem struct + CreatedAt time.Time + Email string + LastLoginAt *time.Time + Provider string + type ImageBody struct + AppVersion *string + BaseName *string + BaseSlug *string + BuiltAt *string + ImageOs *string + Kind string + MinDiskGb int64 + MinRamMb *int64 + Name string + Packages *[]ImagePackageBody + Slug string + type ImagePackageBody struct + License string + Name string + Version string + type ImageSnapshot struct + AppVersion *string + BackupVolid *string + Kind *string + MinDiskGb int64 + Name string + Recipe *string + Slug string + Source *string + TemplateId string + type ImagesListParams struct + Kind *ImagesListParamsKind + type ImagesListParamsKind string + const ImagesListParamsKindApp + const ImagesListParamsKindOs + func (e ImagesListParamsKind) Valid() bool + type ImagesListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ImagesOutputBody + func ParseImagesListResponse(rsp *http.Response) (*ImagesListResponse, error) + func (r ImagesListResponse) ContentType() string + func (r ImagesListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ImagesListResponse) GetBody() []byte + func (r ImagesListResponse) GetJSON200() *ImagesOutputBody + func (r ImagesListResponse) Status() string + func (r ImagesListResponse) StatusCode() int + type ImagesOutputBody struct + Images *[]ImageBody + Schema *string + type ImpersonateInputBody struct + Schema *string + Token string + type ImpersonateOutputBody struct + ExpiresAt time.Time + Impersonation ImpersonationBody + Schema *string + User UserBody + type ImpersonationBody struct + AdminName string + Mode ImpersonationBodyMode + type ImpersonationBodyMode string + const ImpersonationBodyModeFull + const ImpersonationBodyModeRead + func (e ImpersonationBodyMode) Valid() bool + type IntentBody struct + AmountMinor int64 + BankTransferCode *string + CreatedAt time.Time + ExpiresAt time.Time + Id string + InvoiceIssuedAt *time.Time + InvoiceNo *string + Method string + NetMinor *int64 + PaidAt *time.Time + Provider string + State string + VatMinor *int64 + VatRateBp *int32 + type IntentsOutputBody struct + Intents *[]IntentBody + Schema *string + type IsoBody struct + Checksum *string + CreatedAt time.Time + ErrorMessage *string + Filename string + Id string + IsSystem bool + Name string + OrgId string + SizeBytes int64 + SourceType string + Status IsoBodyStatus + Url *string + type IsoBodyStatus string + const IsoBodyStatusDownloading + const IsoBodyStatusError + const IsoBodyStatusPending + const IsoBodyStatusReady + func (e IsoBodyStatus) Valid() bool + type IsoCreateInputBody struct + Checksum *string + Name string + Schema *string + SourceType IsoCreateInputBodySourceType + Url *string + type IsoCreateInputBodySourceType string + const Url + func (e IsoCreateInputBodySourceType) Valid() bool + type IsoCreateJSONRequestBody = IsoCreateInputBody + type IsoCreateOutputBody struct + Iso IsoBody + Schema *string + type IsoCreateParams struct + IdempotencyKey *string + type IsoCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *IsoCreateOutputBody + func ParseIsoCreateResponse(rsp *http.Response) (*IsoCreateResponse, error) + func (r IsoCreateResponse) ContentType() string + func (r IsoCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r IsoCreateResponse) GetBody() []byte + func (r IsoCreateResponse) GetJSON200() *IsoCreateOutputBody + func (r IsoCreateResponse) Status() string + func (r IsoCreateResponse) StatusCode() int + type IsoDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseIsoDeleteResponse(rsp *http.Response) (*IsoDeleteResponse, error) + func (r IsoDeleteResponse) ContentType() string + func (r IsoDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r IsoDeleteResponse) GetBody() []byte + func (r IsoDeleteResponse) Status() string + func (r IsoDeleteResponse) StatusCode() int + type IsoGetOutputBody struct + Iso IsoBody + Schema *string + type IsoGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *IsoGetOutputBody + func ParseIsoGetResponse(rsp *http.Response) (*IsoGetResponse, error) + func (r IsoGetResponse) ContentType() string + func (r IsoGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r IsoGetResponse) GetBody() []byte + func (r IsoGetResponse) GetJSON200() *IsoGetOutputBody + func (r IsoGetResponse) Status() string + func (r IsoGetResponse) StatusCode() int + type IsoListOutputBody struct + Isos *[]IsoBody + Schema *string + type IsoListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *IsoListOutputBody + func ParseIsoListResponse(rsp *http.Response) (*IsoListResponse, error) + func (r IsoListResponse) ContentType() string + func (r IsoListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r IsoListResponse) GetBody() []byte + func (r IsoListResponse) GetJSON200() *IsoListOutputBody + func (r IsoListResponse) Status() string + func (r IsoListResponse) StatusCode() int + type Item struct + CreatedAt time.Time + Email string + ExpiresAt time.Time + Id string + InvitedByName *string + Role string + type KeyCreateInputBody struct + Name string + PublicKey string + Schema *string + type KeyListOutputBody struct + Keys *[]SshKeyBody + Schema *string + type LedgerDailyOutputBody struct + Currency string + Days *[]LedgerDayBody + Schema *string + type LedgerDayBody struct + Day string + IncomingMinor int64 + OutgoingMinor int64 + type LedgerEntryBody struct + AmountMinor int64 + CreatedAt time.Time + Description string + DescriptionKey *string + DescriptionParams *map[string]string + Id string + Kind string + type LedgerOutputBody struct + Entries *[]LedgerEntryBody + Schema *string + Summary LedgerSummary + Total int64 + type LedgerSummary struct + Incoming int64 + Outgoing int64 + Total int64 + type ListOutputBody struct + Schema *string + Servers *[]ServerBody + Summary ListSummary + Total int64 + type ListSummary struct + ChargeCurrency string + MonthlyChargeMinor int64 + Running int64 + Total int64 + type LoadBalancerBackendBody struct + CheckedAt *time.Time + Code string + Health LoadBalancerBackendBodyHealth + Name string + PrivateIp *string + ServerId string + ServerState string + TargetIp *string + type LoadBalancerBackendBodyHealth string + const LoadBalancerBackendBodyHealthHealthy + const LoadBalancerBackendBodyHealthUnhealthy + const LoadBalancerBackendBodyHealthUnknown + func (e LoadBalancerBackendBodyHealth) Valid() bool + type LoadBalancerBackendsPutInputBody struct + Schema *string + ServerIds *[]string + type LoadBalancerBackendsSetJSONRequestBody = LoadBalancerBackendsPutInputBody + type LoadBalancerBackendsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseLoadBalancerBackendsSetResponse(rsp *http.Response) (*LoadBalancerBackendsSetResponse, error) + func (r LoadBalancerBackendsSetResponse) ContentType() string + func (r LoadBalancerBackendsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r LoadBalancerBackendsSetResponse) GetBody() []byte + func (r LoadBalancerBackendsSetResponse) Status() string + func (r LoadBalancerBackendsSetResponse) StatusCode() int + type LoadBalancerBody struct + Algorithm LoadBalancerBodyAlgorithm + BackendCount int64 + CreatedAt time.Time + ErrorCode *string + HealthCheck LoadBalancerHealthCheckBody + HealthyCount int64 + Id string + Ip *string + Name string + NetworkId *string + NetworkName *string + PaidThrough *time.Time + PendingApply bool + PlanSlug *string + ProjectId *string + RegionName *string + RegionSlug *string + RuleCount int64 + Schema *string + State LoadBalancerBodyState + Tags *[]string + type LoadBalancerBodyAlgorithm string + const LoadBalancerBodyAlgorithmLeastConnections + const LoadBalancerBodyAlgorithmRoundRobin + func (e LoadBalancerBodyAlgorithm) Valid() bool + type LoadBalancerBodyState string + const LoadBalancerBodyStateActive + const LoadBalancerBodyStateDeleted + const LoadBalancerBodyStateDeleting + const LoadBalancerBodyStateErrorDelete + const LoadBalancerBodyStateErrorProvisioning + const LoadBalancerBodyStateProvisioning + const LoadBalancerBodyStateStoppedDunning + func (e LoadBalancerBodyState) Valid() bool + type LoadBalancerCreateInputBody struct + Algorithm *LoadBalancerCreateInputBodyAlgorithm + BackendIds *[]string + HealthCheck *LoadBalancerHealthCheckBody + Name string + NetworkId string + Plan *string + ProjectId *string + Region *string + RestrictBackends *bool + Rules *[]LoadBalancerRuleBody + Schema *string + Tags *[]string + type LoadBalancerCreateInputBodyAlgorithm string + const LoadBalancerCreateInputBodyAlgorithmEmpty + const LoadBalancerCreateInputBodyAlgorithmLeastConnections + const LoadBalancerCreateInputBodyAlgorithmRoundRobin + func (e LoadBalancerCreateInputBodyAlgorithm) Valid() bool + type LoadBalancerCreateJSONRequestBody = LoadBalancerCreateInputBody + type LoadBalancerCreateParams struct + IdempotencyKey *string + type LoadBalancerCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *LoadBalancerBody + func ParseLoadBalancerCreateResponse(rsp *http.Response) (*LoadBalancerCreateResponse, error) + func (r LoadBalancerCreateResponse) ContentType() string + func (r LoadBalancerCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r LoadBalancerCreateResponse) GetBody() []byte + func (r LoadBalancerCreateResponse) GetJSON202() *LoadBalancerBody + func (r LoadBalancerCreateResponse) Status() string + func (r LoadBalancerCreateResponse) StatusCode() int + type LoadBalancerDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseLoadBalancerDeleteResponse(rsp *http.Response) (*LoadBalancerDeleteResponse, error) + func (r LoadBalancerDeleteResponse) ContentType() string + func (r LoadBalancerDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r LoadBalancerDeleteResponse) GetBody() []byte + func (r LoadBalancerDeleteResponse) Status() string + func (r LoadBalancerDeleteResponse) StatusCode() int + type LoadBalancerGetOutputBody struct + Backends *[]LoadBalancerBackendBody + LoadBalancer LoadBalancerBody + Rules *[]LoadBalancerRuleBody + Schema *string + type LoadBalancerGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *LoadBalancerGetOutputBody + func ParseLoadBalancerGetResponse(rsp *http.Response) (*LoadBalancerGetResponse, error) + func (r LoadBalancerGetResponse) ContentType() string + func (r LoadBalancerGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r LoadBalancerGetResponse) GetBody() []byte + func (r LoadBalancerGetResponse) GetJSON200() *LoadBalancerGetOutputBody + func (r LoadBalancerGetResponse) Status() string + func (r LoadBalancerGetResponse) StatusCode() int + type LoadBalancerHealthCheckBody struct + IntervalSeconds *int64 + Path *string + Protocol *LoadBalancerHealthCheckBodyProtocol + type LoadBalancerHealthCheckBodyProtocol string + const LoadBalancerHealthCheckBodyProtocolHttp + const LoadBalancerHealthCheckBodyProtocolTcp + func (e LoadBalancerHealthCheckBodyProtocol) Valid() bool + type LoadBalancerProjectSetJSONRequestBody = ProjectAssignmentBody + type LoadBalancerProjectSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseLoadBalancerProjectSetResponse(rsp *http.Response) (*LoadBalancerProjectSetResponse, error) + func (r LoadBalancerProjectSetResponse) ContentType() string + func (r LoadBalancerProjectSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r LoadBalancerProjectSetResponse) GetBody() []byte + func (r LoadBalancerProjectSetResponse) Status() string + func (r LoadBalancerProjectSetResponse) StatusCode() int + type LoadBalancerRuleBody struct + EntryPort int64 + Protocol LoadBalancerRuleBodyProtocol + TargetPort int64 + type LoadBalancerRuleBodyProtocol string + const LoadBalancerRuleBodyProtocolHttp + const LoadBalancerRuleBodyProtocolTcp + func (e LoadBalancerRuleBodyProtocol) Valid() bool + type LoadBalancerRulesPutInputBody struct + Algorithm *LoadBalancerRulesPutInputBodyAlgorithm + HealthCheck *LoadBalancerHealthCheckBody + Rules *[]LoadBalancerRuleBody + Schema *string + type LoadBalancerRulesPutInputBodyAlgorithm string + const LoadBalancerRulesPutInputBodyAlgorithmEmpty + const LoadBalancerRulesPutInputBodyAlgorithmLeastConnections + const LoadBalancerRulesPutInputBodyAlgorithmRoundRobin + func (e LoadBalancerRulesPutInputBodyAlgorithm) Valid() bool + type LoadBalancerRulesReplaceJSONRequestBody = LoadBalancerRulesPutInputBody + type LoadBalancerRulesReplaceResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseLoadBalancerRulesReplaceResponse(rsp *http.Response) (*LoadBalancerRulesReplaceResponse, error) + func (r LoadBalancerRulesReplaceResponse) ContentType() string + func (r LoadBalancerRulesReplaceResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r LoadBalancerRulesReplaceResponse) GetBody() []byte + func (r LoadBalancerRulesReplaceResponse) Status() string + func (r LoadBalancerRulesReplaceResponse) StatusCode() int + type LoadBalancerTagsSetJSONRequestBody = TagsBody + type LoadBalancerTagsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TagsBody + func ParseLoadBalancerTagsSetResponse(rsp *http.Response) (*LoadBalancerTagsSetResponse, error) + func (r LoadBalancerTagsSetResponse) ContentType() string + func (r LoadBalancerTagsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r LoadBalancerTagsSetResponse) GetBody() []byte + func (r LoadBalancerTagsSetResponse) GetJSON200() *TagsBody + func (r LoadBalancerTagsSetResponse) Status() string + func (r LoadBalancerTagsSetResponse) StatusCode() int + type LoadBalancersListOutputBody struct + LoadBalancers *[]LoadBalancerBody + Schema *string + Total int64 + type LoadBalancersListParams struct + Limit *int32 + Offset *int32 + Project *string + Tag *[]string + type LoadBalancersListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *LoadBalancersListOutputBody + func ParseLoadBalancersListResponse(rsp *http.Response) (*LoadBalancersListResponse, error) + func (r LoadBalancersListResponse) ContentType() string + func (r LoadBalancersListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r LoadBalancersListResponse) GetBody() []byte + func (r LoadBalancersListResponse) GetJSON200() *LoadBalancersListOutputBody + func (r LoadBalancersListResponse) Status() string + func (r LoadBalancersListResponse) StatusCode() int + type LogRequestBody struct + CreatedAt time.Time + Error *string + FinishedAt *time.Time + Id string + Lines int32 + Output *string + Schema *string + State string + type LogRequestInputBody struct + Lines *int64 + Schema *string + type LoginInputBody struct + Email openapi_types.Email + Password string + Schema *string + TurnstileToken *string + type LoginResponse struct + MfaRequired bool + Schema *string + User *UserBody + type MetricPointBody struct + At time.Time + CpuPct float32 + DiskRead int64 + DiskWrite int64 + MemBytes int64 + NetIn int64 + NetOut int64 + type MetricsOutputBody struct + Points *[]MetricPointBody + Schema *string + type MfaVerifyInputBody struct + Code string + Schema *string + type NetAttachInputBody struct + NetworkId string + Schema *string + type NetworkBody struct + Cidr string + CreatedAt time.Time + Id string + MemberCount int64 + Name string + ProjectId *string + Schema *string + State NetworkBodyState + Tags *[]string + type NetworkBodyState string + const NetworkBodyStateActive + const NetworkBodyStateCreating + const NetworkBodyStateDeleting + const NetworkBodyStateError + func (e NetworkBodyState) Valid() bool + type NetworkCreateInputBody struct + Cidr string + Name string + ProjectId *string + Schema *string + Tags *[]string + type NetworkCreateJSONRequestBody = NetworkCreateInputBody + type NetworkCreateParams struct + IdempotencyKey *string + type NetworkCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *NetworkBody + func ParseNetworkCreateResponse(rsp *http.Response) (*NetworkCreateResponse, error) + func (r NetworkCreateResponse) ContentType() string + func (r NetworkCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r NetworkCreateResponse) GetBody() []byte + func (r NetworkCreateResponse) GetJSON201() *NetworkBody + func (r NetworkCreateResponse) Status() string + func (r NetworkCreateResponse) StatusCode() int + type NetworkDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseNetworkDeleteResponse(rsp *http.Response) (*NetworkDeleteResponse, error) + func (r NetworkDeleteResponse) ContentType() string + func (r NetworkDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r NetworkDeleteResponse) GetBody() []byte + func (r NetworkDeleteResponse) Status() string + func (r NetworkDeleteResponse) StatusCode() int + type NetworkGetOutputBody struct + Members *[]NetworkMemberBody + Network NetworkBody + Schema *string + type NetworkGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *NetworkGetOutputBody + func ParseNetworkGetResponse(rsp *http.Response) (*NetworkGetResponse, error) + func (r NetworkGetResponse) ContentType() string + func (r NetworkGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r NetworkGetResponse) GetBody() []byte + func (r NetworkGetResponse) GetJSON200() *NetworkGetOutputBody + func (r NetworkGetResponse) Status() string + func (r NetworkGetResponse) StatusCode() int + type NetworkMemberBody struct + Name string + PrivateIp string + ServerId string + type NetworkProjectSetJSONRequestBody = ProjectAssignmentBody + type NetworkProjectSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseNetworkProjectSetResponse(rsp *http.Response) (*NetworkProjectSetResponse, error) + func (r NetworkProjectSetResponse) ContentType() string + func (r NetworkProjectSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r NetworkProjectSetResponse) GetBody() []byte + func (r NetworkProjectSetResponse) Status() string + func (r NetworkProjectSetResponse) StatusCode() int + type NetworkTagsSetJSONRequestBody = TagsBody + type NetworkTagsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TagsBody + func ParseNetworkTagsSetResponse(rsp *http.Response) (*NetworkTagsSetResponse, error) + func (r NetworkTagsSetResponse) ContentType() string + func (r NetworkTagsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r NetworkTagsSetResponse) GetBody() []byte + func (r NetworkTagsSetResponse) GetJSON200() *TagsBody + func (r NetworkTagsSetResponse) Status() string + func (r NetworkTagsSetResponse) StatusCode() int + type NetworksListOutputBody struct + Networks *[]NetworkBody + Schema *string + Total int64 + type NetworksListParams struct + Limit *int32 + Offset *int32 + Project *string + Tag *[]string + type NetworksListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *NetworksListOutputBody + func ParseNetworksListResponse(rsp *http.Response) (*NetworksListResponse, error) + func (r NetworksListResponse) ContentType() string + func (r NetworksListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r NetworksListResponse) GetBody() []byte + func (r NetworksListResponse) GetJSON200() *NetworksListOutputBody + func (r NetworksListResponse) Status() string + func (r NetworksListResponse) StatusCode() int + type NotificationBody struct + Body *string + CreatedAt time.Time + Id int64 + Kind string + Params map[string]string + ReadAt *time.Time + Severity NotificationBodySeverity + Title string + Url *string + type NotificationBodySeverity string + const Critical + const Info + const Success + const Warning + func (e NotificationBodySeverity) Valid() bool + type NotificationDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseNotificationDeleteResponse(rsp *http.Response) (*NotificationDeleteResponse, error) + func (r NotificationDeleteResponse) ContentType() string + func (r NotificationDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r NotificationDeleteResponse) GetBody() []byte + func (r NotificationDeleteResponse) Status() string + func (r NotificationDeleteResponse) StatusCode() int + type NotificationsListOutputBody struct + Notifications *[]NotificationBody + Schema *string + UnreadCount int64 + type NotificationsListParams struct + Before *int64 + Limit *int64 + UnreadOnly *bool + type NotificationsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *NotificationsListOutputBody + func ParseNotificationsListResponse(rsp *http.Response) (*NotificationsListResponse, error) + func (r NotificationsListResponse) ContentType() string + func (r NotificationsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r NotificationsListResponse) GetBody() []byte + func (r NotificationsListResponse) GetJSON200() *NotificationsListOutputBody + func (r NotificationsListResponse) Status() string + func (r NotificationsListResponse) StatusCode() int + type NotificationsMarkReadJSONRequestBody = NotificationsReadInputBody + type NotificationsMarkReadResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *NotificationsReadOutputBody + func ParseNotificationsMarkReadResponse(rsp *http.Response) (*NotificationsMarkReadResponse, error) + func (r NotificationsMarkReadResponse) ContentType() string + func (r NotificationsMarkReadResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r NotificationsMarkReadResponse) GetBody() []byte + func (r NotificationsMarkReadResponse) GetJSON200() *NotificationsReadOutputBody + func (r NotificationsMarkReadResponse) Status() string + func (r NotificationsMarkReadResponse) StatusCode() int + type NotificationsReadInputBody struct + Ids *[]int64 + Schema *string + type NotificationsReadOutputBody struct + Schema *string + UnreadCount int64 + type OrganizationCreateInputBody struct + Name string + Schema *string + type OrganizationDetail struct + CreatedAt time.Time + Id string + IsActive bool + IsPersonal bool + Name string + Role string + Schema *string + SuspendedAt *time.Time + type OrganizationInvitationAcceptResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseOrganizationInvitationAcceptResponse(rsp *http.Response) (*OrganizationInvitationAcceptResponse, error) + func (r OrganizationInvitationAcceptResponse) ContentType() string + func (r OrganizationInvitationAcceptResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationInvitationAcceptResponse) GetBody() []byte + func (r OrganizationInvitationAcceptResponse) Status() string + func (r OrganizationInvitationAcceptResponse) StatusCode() int + type OrganizationInvitationGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *PublicInvitationOutputBody + func ParseOrganizationInvitationGetResponse(rsp *http.Response) (*OrganizationInvitationGetResponse, error) + func (r OrganizationInvitationGetResponse) ContentType() string + func (r OrganizationInvitationGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationInvitationGetResponse) GetBody() []byte + func (r OrganizationInvitationGetResponse) GetJSON200() *PublicInvitationOutputBody + func (r OrganizationInvitationGetResponse) Status() string + func (r OrganizationInvitationGetResponse) StatusCode() int + type OrganizationInvitationsCreateJSONRequestBody = OrganizationInviteInputBody + type OrganizationInvitationsCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *OrganizationInviteOutputBody + func ParseOrganizationInvitationsCreateResponse(rsp *http.Response) (*OrganizationInvitationsCreateResponse, error) + func (r OrganizationInvitationsCreateResponse) ContentType() string + func (r OrganizationInvitationsCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationInvitationsCreateResponse) GetBody() []byte + func (r OrganizationInvitationsCreateResponse) GetJSON200() *OrganizationInviteOutputBody + func (r OrganizationInvitationsCreateResponse) Status() string + func (r OrganizationInvitationsCreateResponse) StatusCode() int + type OrganizationInvitationsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *OrganizationInvitationsOutputBody + func ParseOrganizationInvitationsListResponse(rsp *http.Response) (*OrganizationInvitationsListResponse, error) + func (r OrganizationInvitationsListResponse) ContentType() string + func (r OrganizationInvitationsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationInvitationsListResponse) GetBody() []byte + func (r OrganizationInvitationsListResponse) GetJSON200() *OrganizationInvitationsOutputBody + func (r OrganizationInvitationsListResponse) Status() string + func (r OrganizationInvitationsListResponse) StatusCode() int + type OrganizationInvitationsOutputBody struct + Invitations *[]Item + Schema *string + type OrganizationInvitationsRevokeResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseOrganizationInvitationsRevokeResponse(rsp *http.Response) (*OrganizationInvitationsRevokeResponse, error) + func (r OrganizationInvitationsRevokeResponse) ContentType() string + func (r OrganizationInvitationsRevokeResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationInvitationsRevokeResponse) GetBody() []byte + func (r OrganizationInvitationsRevokeResponse) Status() string + func (r OrganizationInvitationsRevokeResponse) StatusCode() int + type OrganizationInviteInputBody struct + Email openapi_types.Email + Role OrganizationInviteInputBodyRole + Schema *string + type OrganizationInviteInputBodyRole string + const OrganizationInviteInputBodyRoleAdmin + const OrganizationInviteInputBodyRoleMember + func (e OrganizationInviteInputBodyRole) Valid() bool + type OrganizationInviteOutputBody struct + ExpiresAt time.Time + Id string + Schema *string + type OrganizationItem struct + CreatedAt time.Time + Id string + IsActive bool + IsPersonal bool + Name string + Role string + Schema *string + SuspendedAt *time.Time + type OrganizationMemberItem struct + CreatedAt time.Time + Email string + FullName string + Role string + SuspendedAt *time.Time + UserId string + type OrganizationMemberRoleUpdateJSONRequestBody = OrganizationRoleInputBody + type OrganizationMemberRoleUpdateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseOrganizationMemberRoleUpdateResponse(rsp *http.Response) (*OrganizationMemberRoleUpdateResponse, error) + func (r OrganizationMemberRoleUpdateResponse) ContentType() string + func (r OrganizationMemberRoleUpdateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationMemberRoleUpdateResponse) GetBody() []byte + func (r OrganizationMemberRoleUpdateResponse) Status() string + func (r OrganizationMemberRoleUpdateResponse) StatusCode() int + type OrganizationMembersListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *OrganizationMembersOutputBody + func ParseOrganizationMembersListResponse(rsp *http.Response) (*OrganizationMembersListResponse, error) + func (r OrganizationMembersListResponse) ContentType() string + func (r OrganizationMembersListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationMembersListResponse) GetBody() []byte + func (r OrganizationMembersListResponse) GetJSON200() *OrganizationMembersOutputBody + func (r OrganizationMembersListResponse) Status() string + func (r OrganizationMembersListResponse) StatusCode() int + type OrganizationMembersOutputBody struct + Members *[]OrganizationMemberItem + Schema *string + type OrganizationMembersRemoveResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseOrganizationMembersRemoveResponse(rsp *http.Response) (*OrganizationMembersRemoveResponse, error) + func (r OrganizationMembersRemoveResponse) ContentType() string + func (r OrganizationMembersRemoveResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationMembersRemoveResponse) GetBody() []byte + func (r OrganizationMembersRemoveResponse) Status() string + func (r OrganizationMembersRemoveResponse) StatusCode() int + type OrganizationRenameInputBody struct + Name string + Schema *string + type OrganizationRoleInputBody struct + Role OrganizationRoleInputBodyRole + Schema *string + type OrganizationRoleInputBodyRole string + const OrganizationRoleInputBodyRoleAdmin + const OrganizationRoleInputBodyRoleMember + const OrganizationRoleInputBodyRoleOwner + func (e OrganizationRoleInputBodyRole) Valid() bool + type OrganizationsActivateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseOrganizationsActivateResponse(rsp *http.Response) (*OrganizationsActivateResponse, error) + func (r OrganizationsActivateResponse) ContentType() string + func (r OrganizationsActivateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationsActivateResponse) GetBody() []byte + func (r OrganizationsActivateResponse) Status() string + func (r OrganizationsActivateResponse) StatusCode() int + type OrganizationsCreateJSONRequestBody = OrganizationCreateInputBody + type OrganizationsCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *OrganizationItem + func ParseOrganizationsCreateResponse(rsp *http.Response) (*OrganizationsCreateResponse, error) + func (r OrganizationsCreateResponse) ContentType() string + func (r OrganizationsCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationsCreateResponse) GetBody() []byte + func (r OrganizationsCreateResponse) GetJSON200() *OrganizationItem + func (r OrganizationsCreateResponse) Status() string + func (r OrganizationsCreateResponse) StatusCode() int + type OrganizationsDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseOrganizationsDeleteResponse(rsp *http.Response) (*OrganizationsDeleteResponse, error) + func (r OrganizationsDeleteResponse) ContentType() string + func (r OrganizationsDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationsDeleteResponse) GetBody() []byte + func (r OrganizationsDeleteResponse) Status() string + func (r OrganizationsDeleteResponse) StatusCode() int + type OrganizationsGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *OrganizationDetail + func ParseOrganizationsGetResponse(rsp *http.Response) (*OrganizationsGetResponse, error) + func (r OrganizationsGetResponse) ContentType() string + func (r OrganizationsGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationsGetResponse) GetBody() []byte + func (r OrganizationsGetResponse) GetJSON200() *OrganizationDetail + func (r OrganizationsGetResponse) Status() string + func (r OrganizationsGetResponse) StatusCode() int + type OrganizationsLeaveResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseOrganizationsLeaveResponse(rsp *http.Response) (*OrganizationsLeaveResponse, error) + func (r OrganizationsLeaveResponse) ContentType() string + func (r OrganizationsLeaveResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationsLeaveResponse) GetBody() []byte + func (r OrganizationsLeaveResponse) Status() string + func (r OrganizationsLeaveResponse) StatusCode() int + type OrganizationsListOutputBody struct + Organizations *[]OrganizationItem + Schema *string + type OrganizationsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *OrganizationsListOutputBody + func ParseOrganizationsListResponse(rsp *http.Response) (*OrganizationsListResponse, error) + func (r OrganizationsListResponse) ContentType() string + func (r OrganizationsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationsListResponse) GetBody() []byte + func (r OrganizationsListResponse) GetJSON200() *OrganizationsListOutputBody + func (r OrganizationsListResponse) Status() string + func (r OrganizationsListResponse) StatusCode() int + type OrganizationsRenameJSONRequestBody = OrganizationRenameInputBody + type OrganizationsRenameResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseOrganizationsRenameResponse(rsp *http.Response) (*OrganizationsRenameResponse, error) + func (r OrganizationsRenameResponse) ContentType() string + func (r OrganizationsRenameResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r OrganizationsRenameResponse) GetBody() []byte + func (r OrganizationsRenameResponse) Status() string + func (r OrganizationsRenameResponse) StatusCode() int + type PasswordChangeInputBody struct + CurrentPassword string + NewPassword string + Schema *string + type PasswordResetOutputBody struct + Action ActionBody + RootPassword string + Schema *string + type PaymentIntentsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *IntentsOutputBody + func ParsePaymentIntentsListResponse(rsp *http.Response) (*PaymentIntentsListResponse, error) + func (r PaymentIntentsListResponse) ContentType() string + func (r PaymentIntentsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r PaymentIntentsListResponse) GetBody() []byte + func (r PaymentIntentsListResponse) GetJSON200() *IntentsOutputBody + func (r PaymentIntentsListResponse) Status() string + func (r PaymentIntentsListResponse) StatusCode() int + type PaymentTopupInitJSONRequestBody = TopupInputBody + type PaymentTopupInitParams struct + IdempotencyKey *string + type PaymentTopupInitResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *TopupOutputBody + func ParsePaymentTopupInitResponse(rsp *http.Response) (*PaymentTopupInitResponse, error) + func (r PaymentTopupInitResponse) ContentType() string + func (r PaymentTopupInitResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r PaymentTopupInitResponse) GetBody() []byte + func (r PaymentTopupInitResponse) GetJSON202() *TopupOutputBody + func (r PaymentTopupInitResponse) Status() string + func (r PaymentTopupInitResponse) StatusCode() int + type PhoneStartInputBody struct + Phone string + Schema *string + type PhoneStatusBody struct + Pending *string + Phone *string + Schema *string + Verified bool + type PhoneVerifyInputBody struct + Code string + Schema *string + type PlanBody struct + BandwidthMbps int64 + Cores int64 + Currency string + DiskGb int64 + HourlyPriceMinor int64 + MemoryMb int64 + MonthlyPriceMinor int64 + Name string + PlanTypeId *string + PlanTypeName *string + PlanTypeSlug *string + Slug string + TrafficGb int64 + UsdHourlyPriceMinor int64 + UsdMonthlyPriceMinor int64 + type PlanSnapshot struct + BandwidthMbps int64 + Cores int64 + Currency string + DiskGb int64 + MemoryMb int64 + MonthlyPriceMinor int64 + Name string + Slug string + SnapshotGbPriceCurrency *string + SnapshotGbPriceMinor *int64 + TrafficGb int64 + TrafficOverageCurrency *string + TrafficOverageMinor *int64 + TrafficOverageTbMinor *int64 + type PlanTypeBody struct + Description string + Icon string + Id string + Name string + Slug string + SortOrder int64 + type PlanTypesListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *PlanTypesOutputBody + func ParsePlanTypesListResponse(rsp *http.Response) (*PlanTypesListResponse, error) + func (r PlanTypesListResponse) ContentType() string + func (r PlanTypesListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r PlanTypesListResponse) GetBody() []byte + func (r PlanTypesListResponse) GetJSON200() *PlanTypesOutputBody + func (r PlanTypesListResponse) Status() string + func (r PlanTypesListResponse) StatusCode() int + type PlanTypesOutputBody struct + PlanTypes *[]PlanTypeBody + Schema *string + type PlansListParams struct + Kind *PlansListParamsKind + type PlansListParamsKind string + const PlansListParamsKindApp + const PlansListParamsKindDatabase + const PlansListParamsKindLoadBalancer + const PlansListParamsKindServer + func (e PlansListParamsKind) Valid() bool + type PlansListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *SizesOutputBody + func ParsePlansListResponse(rsp *http.Response) (*PlansListResponse, error) + func (r PlansListResponse) ContentType() string + func (r PlansListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r PlansListResponse) GetBody() []byte + func (r PlansListResponse) GetJSON200() *SizesOutputBody + func (r PlansListResponse) Status() string + func (r PlansListResponse) StatusCode() int + type ProfileBody struct + Address string + City string + Country string + District string + Kind ProfileBodyKind + Phone *string + PostalCode string + Schema *string + TaxId string + TaxOffice *string + Title string + type ProfileBodyKind string + const Company + const Individual + func (e ProfileBodyKind) Valid() bool + type ProjectAssignmentBody struct + ProjectId *string + Schema *string + type ProjectBody struct + CreatedAt time.Time + Id string + Name string + Schema *string + ServerCount int64 + type ProjectCreateInputBody struct + Name string + Schema *string + type ProjectCreateJSONRequestBody = ProjectCreateInputBody + type ProjectCreateParams struct + IdempotencyKey *string + type ProjectCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *ProjectBody + func ParseProjectCreateResponse(rsp *http.Response) (*ProjectCreateResponse, error) + func (r ProjectCreateResponse) ContentType() string + func (r ProjectCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ProjectCreateResponse) GetBody() []byte + func (r ProjectCreateResponse) GetJSON201() *ProjectBody + func (r ProjectCreateResponse) Status() string + func (r ProjectCreateResponse) StatusCode() int + type ProjectDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseProjectDeleteResponse(rsp *http.Response) (*ProjectDeleteResponse, error) + func (r ProjectDeleteResponse) ContentType() string + func (r ProjectDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ProjectDeleteResponse) GetBody() []byte + func (r ProjectDeleteResponse) Status() string + func (r ProjectDeleteResponse) StatusCode() int + type ProjectGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ProjectBody + func ParseProjectGetResponse(rsp *http.Response) (*ProjectGetResponse, error) + func (r ProjectGetResponse) ContentType() string + func (r ProjectGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ProjectGetResponse) GetBody() []byte + func (r ProjectGetResponse) GetJSON200() *ProjectBody + func (r ProjectGetResponse) Status() string + func (r ProjectGetResponse) StatusCode() int + type ProjectUpdateInputBody struct + Name string + Schema *string + type ProjectUpdateJSONRequestBody = ProjectUpdateInputBody + type ProjectUpdateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseProjectUpdateResponse(rsp *http.Response) (*ProjectUpdateResponse, error) + func (r ProjectUpdateResponse) ContentType() string + func (r ProjectUpdateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ProjectUpdateResponse) GetBody() []byte + func (r ProjectUpdateResponse) Status() string + func (r ProjectUpdateResponse) StatusCode() int + type ProjectsListOutputBody struct + Projects *[]ProjectBody + Schema *string + type ProjectsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ProjectsListOutputBody + func ParseProjectsListResponse(rsp *http.Response) (*ProjectsListResponse, error) + func (r ProjectsListResponse) ContentType() string + func (r ProjectsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ProjectsListResponse) GetBody() []byte + func (r ProjectsListResponse) GetJSON200() *ProjectsListOutputBody + func (r ProjectsListResponse) Status() string + func (r ProjectsListResponse) StatusCode() int + type PromoRedeemBody struct + Code string + Schema *string + type PromoRedeemOutputBody struct + AmountMinor int64 + BalanceMinor int64 + Code string + Schema *string + type PromoRedemptionBody struct + AmountMinor int64 + Code string + Description string + RedeemedAt time.Time + type PromoRedemptionsOutputBody struct + Redemptions *[]PromoRedemptionBody + Schema *string + type ProvidersOutputBody struct + Providers *[]string + Schema *string + type PublicInvitationOutputBody struct + Email string + ExpiresAt time.Time + InvitedByName *string + OrganizationId string + OrganizationName string + Role string + Schema *string + type RdnsClearResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseRdnsClearResponse(rsp *http.Response) (*RdnsClearResponse, error) + func (r RdnsClearResponse) ContentType() string + func (r RdnsClearResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r RdnsClearResponse) GetBody() []byte + func (r RdnsClearResponse) Status() string + func (r RdnsClearResponse) StatusCode() int + type RdnsEntryBody struct + Address string + Hostname *string + Id string + IsFloating bool + ReverseZone *string + type RdnsEntryOutputBody struct + Entry RdnsEntryBody + Schema *string + type RdnsListOutputBody struct + Entries *[]RdnsEntryBody + Schema *string + type RdnsSetInputBody struct + Hostname string + Schema *string + type RdnsSetJSONRequestBody = RdnsSetInputBody + type RdnsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *RdnsEntryOutputBody + func ParseRdnsSetResponse(rsp *http.Response) (*RdnsSetResponse, error) + func (r RdnsSetResponse) ContentType() string + func (r RdnsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r RdnsSetResponse) GetBody() []byte + func (r RdnsSetResponse) GetJSON200() *RdnsEntryOutputBody + func (r RdnsSetResponse) Status() string + func (r RdnsSetResponse) StatusCode() int + type RebuildInputBody struct + Image *string + Schema *string + type RebuildOutputBody struct + Action ActionBody + RootPassword *string + Schema *string + type RecordCreateInputBody struct + Content string + Name string + Priority *int32 + Schema *string + Ttl *int64 + Type string + type RecordUpdateInputBody struct + Content string + Priority *int32 + Schema *string + Ttl *int64 + type RecoveryCodesOutputBody struct + RecoveryCodes *[]string + Schema *string + type RegionBody struct + AppRuntimes *[]string + AvailableSizeSlugs *[]string + CountryCode string + Name string + Slug string + type RegionRef struct + Name string + Slug string + type RegionsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *RegionsOutputBody + func ParseRegionsListResponse(rsp *http.Response) (*RegionsListResponse, error) + func (r RegionsListResponse) ContentType() string + func (r RegionsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r RegionsListResponse) GetBody() []byte + func (r RegionsListResponse) GetJSON200() *RegionsOutputBody + func (r RegionsListResponse) Status() string + func (r RegionsListResponse) StatusCode() int + type RegionsOutputBody struct + Regions *[]RegionBody + Schema *string + type RegisterInputBody struct + Email openapi_types.Email + FirstName string + KvkkConsent bool + LastName string + Locale *RegisterInputBodyLocale + Password string + Schema *string + Timezone *string + TurnstileToken *string + type RegisterInputBodyLocale string + const RegisterInputBodyLocaleEn + const RegisterInputBodyLocaleTr + func (e RegisterInputBodyLocale) Valid() bool + type ReleaseBody struct + ActorName *string + BuildId *string + CommitAuthor *string + CommitMessage *string + CommitSha *string + CreatedAt string + Deployable bool + GitRef *string + ImageRef *string + Number int32 + Trigger ReleaseBodyTrigger + type ReleaseBodyTrigger string + const ReleaseBodyTriggerCreate + const ReleaseBodyTriggerDeploy + const ReleaseBodyTriggerEnv + const ReleaseBodyTriggerRollback + func (e ReleaseBodyTrigger) Valid() bool + type ReleaseListOutputBody struct + Current int32 + Releases *[]ReleaseBody + Schema *string + type RenameInputBody struct + Name string + Schema *string + type RequestEditorFn func(ctx context.Context, req *http.Request) error + type ResendInputBody struct + Email openapi_types.Email + Schema *string + TurnstileToken *string + type ResetInputBody struct + Password string + Schema *string + Token string + type ResetRequestInputBody struct + Email openapi_types.Email + Schema *string + TurnstileToken *string + type ResizeInputBody struct + Plan string + Schema *string + type ResourcePriceBody struct + Currency string + Kind string + MonthlyPriceMinor int64 + type ResourcePricesListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ResourcePricesOutputBody + func ParseResourcePricesListResponse(rsp *http.Response) (*ResourcePricesListResponse, error) + func (r ResourcePricesListResponse) ContentType() string + func (r ResourcePricesListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ResourcePricesListResponse) GetBody() []byte + func (r ResourcePricesListResponse) GetJSON200() *ResourcePricesOutputBody + func (r ResourcePricesListResponse) Status() string + func (r ResourcePricesListResponse) StatusCode() int + type ResourcePricesOutputBody struct + Prices *[]ResourcePriceBody + Schema *string + type ServerActionCreateJSONRequestBody = ActionInputBody + type ServerActionCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *ActionBody + func ParseServerActionCreateResponse(rsp *http.Response) (*ServerActionCreateResponse, error) + func (r ServerActionCreateResponse) ContentType() string + func (r ServerActionCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerActionCreateResponse) GetBody() []byte + func (r ServerActionCreateResponse) GetJSON202() *ActionBody + func (r ServerActionCreateResponse) Status() string + func (r ServerActionCreateResponse) StatusCode() int + type ServerActionGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ActionBody + func ParseServerActionGetResponse(rsp *http.Response) (*ServerActionGetResponse, error) + func (r ServerActionGetResponse) ContentType() string + func (r ServerActionGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerActionGetResponse) GetBody() []byte + func (r ServerActionGetResponse) GetJSON200() *ActionBody + func (r ServerActionGetResponse) Status() string + func (r ServerActionGetResponse) StatusCode() int + type ServerAlertDeleteParamsMetric string + const ServerAlertDeleteParamsMetricCpu + const ServerAlertDeleteParamsMetricDisk + const ServerAlertDeleteParamsMetricMemory + const ServerAlertDeleteParamsMetricNetOut + const ServerAlertDeleteParamsMetricTraffic + func (e ServerAlertDeleteParamsMetric) Valid() bool + type ServerAlertDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseServerAlertDeleteResponse(rsp *http.Response) (*ServerAlertDeleteResponse, error) + func (r ServerAlertDeleteResponse) ContentType() string + func (r ServerAlertDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerAlertDeleteResponse) GetBody() []byte + func (r ServerAlertDeleteResponse) Status() string + func (r ServerAlertDeleteResponse) StatusCode() int + type ServerAlertSaveJSONRequestBody = AlertSaveInputBody + type ServerAlertSaveResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AlertBody + func ParseServerAlertSaveResponse(rsp *http.Response) (*ServerAlertSaveResponse, error) + func (r ServerAlertSaveResponse) ContentType() string + func (r ServerAlertSaveResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerAlertSaveResponse) GetBody() []byte + func (r ServerAlertSaveResponse) GetJSON200() *AlertBody + func (r ServerAlertSaveResponse) Status() string + func (r ServerAlertSaveResponse) StatusCode() int + type ServerAlertsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *AlertsListOutputBody + func ParseServerAlertsListResponse(rsp *http.Response) (*ServerAlertsListResponse, error) + func (r ServerAlertsListResponse) ContentType() string + func (r ServerAlertsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerAlertsListResponse) GetBody() []byte + func (r ServerAlertsListResponse) GetJSON200() *AlertsListOutputBody + func (r ServerAlertsListResponse) Status() string + func (r ServerAlertsListResponse) StatusCode() int + type ServerAppRetryResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *AppRetryOutputBody + func ParseServerAppRetryResponse(rsp *http.Response) (*ServerAppRetryResponse, error) + func (r ServerAppRetryResponse) ContentType() string + func (r ServerAppRetryResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerAppRetryResponse) GetBody() []byte + func (r ServerAppRetryResponse) GetJSON202() *AppRetryOutputBody + func (r ServerAppRetryResponse) Status() string + func (r ServerAppRetryResponse) StatusCode() int + type ServerBackupCreateJSONRequestBody = BackupCreateInputBody + type ServerBackupCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *BackupBody + func ParseServerBackupCreateResponse(rsp *http.Response) (*ServerBackupCreateResponse, error) + func (r ServerBackupCreateResponse) ContentType() string + func (r ServerBackupCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerBackupCreateResponse) GetBody() []byte + func (r ServerBackupCreateResponse) GetJSON202() *BackupBody + func (r ServerBackupCreateResponse) Status() string + func (r ServerBackupCreateResponse) StatusCode() int + type ServerBackupDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseServerBackupDeleteResponse(rsp *http.Response) (*ServerBackupDeleteResponse, error) + func (r ServerBackupDeleteResponse) ContentType() string + func (r ServerBackupDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerBackupDeleteResponse) GetBody() []byte + func (r ServerBackupDeleteResponse) Status() string + func (r ServerBackupDeleteResponse) StatusCode() int + type ServerBackupListAllParams struct + Limit *int32 + Offset *int32 + type ServerBackupListAllResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *BackupListAllOutputBody + func ParseServerBackupListAllResponse(rsp *http.Response) (*ServerBackupListAllResponse, error) + func (r ServerBackupListAllResponse) ContentType() string + func (r ServerBackupListAllResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerBackupListAllResponse) GetBody() []byte + func (r ServerBackupListAllResponse) GetJSON200() *BackupListAllOutputBody + func (r ServerBackupListAllResponse) Status() string + func (r ServerBackupListAllResponse) StatusCode() int + type ServerBackupListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *BackupListOutputBody + func ParseServerBackupListResponse(rsp *http.Response) (*ServerBackupListResponse, error) + func (r ServerBackupListResponse) ContentType() string + func (r ServerBackupListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerBackupListResponse) GetBody() []byte + func (r ServerBackupListResponse) GetJSON200() *BackupListOutputBody + func (r ServerBackupListResponse) Status() string + func (r ServerBackupListResponse) StatusCode() int + type ServerBackupRestoreResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *ActionBody + func ParseServerBackupRestoreResponse(rsp *http.Response) (*ServerBackupRestoreResponse, error) + func (r ServerBackupRestoreResponse) ContentType() string + func (r ServerBackupRestoreResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerBackupRestoreResponse) GetBody() []byte + func (r ServerBackupRestoreResponse) GetJSON202() *ActionBody + func (r ServerBackupRestoreResponse) Status() string + func (r ServerBackupRestoreResponse) StatusCode() int + type ServerBackupSettingsGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *BackupSettingsBody + func ParseServerBackupSettingsGetResponse(rsp *http.Response) (*ServerBackupSettingsGetResponse, error) + func (r ServerBackupSettingsGetResponse) ContentType() string + func (r ServerBackupSettingsGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerBackupSettingsGetResponse) GetBody() []byte + func (r ServerBackupSettingsGetResponse) GetJSON200() *BackupSettingsBody + func (r ServerBackupSettingsGetResponse) Status() string + func (r ServerBackupSettingsGetResponse) StatusCode() int + type ServerBackupSettingsUpdateJSONRequestBody = BackupSettingsUpdateInputBody + type ServerBackupSettingsUpdateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *BackupSettingsBody + func ParseServerBackupSettingsUpdateResponse(rsp *http.Response) (*ServerBackupSettingsUpdateResponse, error) + func (r ServerBackupSettingsUpdateResponse) ContentType() string + func (r ServerBackupSettingsUpdateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerBackupSettingsUpdateResponse) GetBody() []byte + func (r ServerBackupSettingsUpdateResponse) GetJSON200() *BackupSettingsBody + func (r ServerBackupSettingsUpdateResponse) Status() string + func (r ServerBackupSettingsUpdateResponse) StatusCode() int + type ServerBillingAttached struct + BackupAutoEnabled bool + BackupCount int64 + BackupGb int64 + BackupMonthlyMinor int64 + BackupSubMonthlyMinor int64 + FloatingIpCount int64 + FloatingIpMonthlyMinor int64 + SnapshotCount int64 + SnapshotGb int64 + SnapshotMonthlyMinor int64 + TotalMonthlyMinor int64 + VolumeCount int64 + VolumeGb int64 + VolumeMonthlyMinor int64 + type ServerBillingBody struct + Attached ServerBillingAttached + BillingMode string + ChargeCurrency string + LedgerEntryCount int64 + LifetimeChargedMinor int64 + LifetimeRefundedMinor int64 + LifetimeUnavailable bool + Period ServerBillingPeriod + PlanMonthlyMinor int64 + Schema *string + TotalMonthlyMinor int64 + Traffic ServerBillingTraffic + type ServerBillingGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ServerBillingBody + func ParseServerBillingGetResponse(rsp *http.Response) (*ServerBillingGetResponse, error) + func (r ServerBillingGetResponse) ContentType() string + func (r ServerBillingGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerBillingGetResponse) GetBody() []byte + func (r ServerBillingGetResponse) GetJSON200() *ServerBillingBody + func (r ServerBillingGetResponse) Status() string + func (r ServerBillingGetResponse) StatusCode() int + type ServerBillingPeriod struct + PaidMinor int64 + PaidThrough *time.Time + type ServerBillingTraffic struct + OverageChargedMinor int64 + QuotaBytes int64 + UsedBytes int64 + type ServerBody struct + AppState *string + BillingMode string + ChargeCurrency string + Code string + CreatedAt time.Time + ErrorCode *string + Firewalls *[]ServerFirewallRef + FloatingIps *[]ServerFloatingIPRef + Hostname *string + Id string + Image ImageSnapshot + Ip *string + IsoId *string + IsoMountedAt *time.Time + MonthlyChargeMinor int64 + Name string + Network *ServerNetworkRef + PaidThrough *time.Time + Plan PlanSnapshot + PriceChange *ServerPriceChange + PrivateIp *string + ProjectId *string + ProvisionStep *string + Region *RegionRef + RescueStartedAt *time.Time + Schema *string + SnapshotGbChargeMinor *int64 + State ServerBodyState + StateSince time.Time + Tags *[]string + TrafficUsedBytes *int64 + Usage *ActionUsage + UsageCpuPct *float32 + UsageMemBytes *int64 + type ServerBodyState string + const ServerBodyStateAbuseSuspended + const ServerBodyStateDeleted + const ServerBodyStateDeleting + const ServerBodyStateErrorDelete + const ServerBodyStateErrorProvisioning + const ServerBodyStateErrorRebuild + const ServerBodyStateErrorReconfigure + const ServerBodyStateErrorResize + const ServerBodyStateErrorRestore + const ServerBodyStateProvisioning + const ServerBodyStateRebooting + const ServerBodyStateRebuilding + const ServerBodyStateReconfiguring + const ServerBodyStateResizing + const ServerBodyStateRestoring + const ServerBodyStateRunning + const ServerBodyStateStarting + const ServerBodyStateStopped + const ServerBodyStateStopping + const ServerBodyStateSuspended + const ServerBodyStateSuspending + func (e ServerBodyState) Valid() bool + type ServerConsoleCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *ConsoleOutputBody + func ParseServerConsoleCreateResponse(rsp *http.Response) (*ServerConsoleCreateResponse, error) + func (r ServerConsoleCreateResponse) ContentType() string + func (r ServerConsoleCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerConsoleCreateResponse) GetBody() []byte + func (r ServerConsoleCreateResponse) GetJSON201() *ConsoleOutputBody + func (r ServerConsoleCreateResponse) Status() string + func (r ServerConsoleCreateResponse) StatusCode() int + type ServerCreateJSONRequestBody = CreateInputBody + type ServerCreateParams struct + IdempotencyKey *string + type ServerCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *CreateOutputBody + func ParseServerCreateResponse(rsp *http.Response) (*ServerCreateResponse, error) + func (r ServerCreateResponse) ContentType() string + func (r ServerCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerCreateResponse) GetBody() []byte + func (r ServerCreateResponse) GetJSON202() *CreateOutputBody + func (r ServerCreateResponse) Status() string + func (r ServerCreateResponse) StatusCode() int + type ServerDeleteParams struct + DeleteBackups *bool + type ServerDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseServerDeleteResponse(rsp *http.Response) (*ServerDeleteResponse, error) + func (r ServerDeleteResponse) ContentType() string + func (r ServerDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerDeleteResponse) GetBody() []byte + func (r ServerDeleteResponse) Status() string + func (r ServerDeleteResponse) StatusCode() int + type ServerEventsListParams struct + AfterId *int64 + type ServerEventsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *EventsOutputBody + func ParseServerEventsListResponse(rsp *http.Response) (*ServerEventsListResponse, error) + func (r ServerEventsListResponse) ContentType() string + func (r ServerEventsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerEventsListResponse) GetBody() []byte + func (r ServerEventsListResponse) GetJSON200() *EventsOutputBody + func (r ServerEventsListResponse) Status() string + func (r ServerEventsListResponse) StatusCode() int + type ServerFilesystemsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *FilesystemsOutputBody + func ParseServerFilesystemsListResponse(rsp *http.Response) (*ServerFilesystemsListResponse, error) + func (r ServerFilesystemsListResponse) ContentType() string + func (r ServerFilesystemsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerFilesystemsListResponse) GetBody() []byte + func (r ServerFilesystemsListResponse) GetJSON200() *FilesystemsOutputBody + func (r ServerFilesystemsListResponse) Status() string + func (r ServerFilesystemsListResponse) StatusCode() int + type ServerFirewallRef struct + Id string + Name string + type ServerFloatingIPRef struct + Address string + Id string + type ServerGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ServerBody + func ParseServerGetResponse(rsp *http.Response) (*ServerGetResponse, error) + func (r ServerGetResponse) ContentType() string + func (r ServerGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerGetResponse) GetBody() []byte + func (r ServerGetResponse) GetJSON200() *ServerBody + func (r ServerGetResponse) Status() string + func (r ServerGetResponse) StatusCode() int + type ServerLedgerListParams struct + Limit *int32 + Offset *int32 + type ServerLedgerListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ServerLedgerOutputBody + func ParseServerLedgerListResponse(rsp *http.Response) (*ServerLedgerListResponse, error) + func (r ServerLedgerListResponse) ContentType() string + func (r ServerLedgerListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerLedgerListResponse) GetBody() []byte + func (r ServerLedgerListResponse) GetJSON200() *ServerLedgerOutputBody + func (r ServerLedgerListResponse) Status() string + func (r ServerLedgerListResponse) StatusCode() int + type ServerLedgerOutputBody struct + Entries *[]LedgerEntryBody + Schema *string + Total int64 + type ServerMetricsListParams struct + Window *ServerMetricsListParamsWindow + type ServerMetricsListParamsWindow string + const ServerMetricsListParamsWindowDay + const ServerMetricsListParamsWindowHour + const ServerMetricsListParamsWindowWeek + func (e ServerMetricsListParamsWindow) Valid() bool + type ServerMetricsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *MetricsOutputBody + func ParseServerMetricsListResponse(rsp *http.Response) (*ServerMetricsListResponse, error) + func (r ServerMetricsListResponse) ContentType() string + func (r ServerMetricsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerMetricsListResponse) GetBody() []byte + func (r ServerMetricsListResponse) GetJSON200() *MetricsOutputBody + func (r ServerMetricsListResponse) Status() string + func (r ServerMetricsListResponse) StatusCode() int + type ServerMountISOInputBody struct + IsoId string + Schema *string + type ServerMountISOJSONRequestBody = ServerMountISOInputBody + type ServerMountISOOutputBody struct + ActionId string + Schema *string + Status string + type ServerMountISOResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ServerMountISOOutputBody + func ParseServerMountISOResponse(rsp *http.Response) (*ServerMountISOResponse, error) + func (r ServerMountISOResponse) ContentType() string + func (r ServerMountISOResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerMountISOResponse) GetBody() []byte + func (r ServerMountISOResponse) GetJSON200() *ServerMountISOOutputBody + func (r ServerMountISOResponse) Status() string + func (r ServerMountISOResponse) StatusCode() int + type ServerNetworkAttachJSONRequestBody = NetAttachInputBody + type ServerNetworkAttachResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *ActionBody + func ParseServerNetworkAttachResponse(rsp *http.Response) (*ServerNetworkAttachResponse, error) + func (r ServerNetworkAttachResponse) ContentType() string + func (r ServerNetworkAttachResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerNetworkAttachResponse) GetBody() []byte + func (r ServerNetworkAttachResponse) GetJSON202() *ActionBody + func (r ServerNetworkAttachResponse) Status() string + func (r ServerNetworkAttachResponse) StatusCode() int + type ServerNetworkDetachResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *ActionBody + func ParseServerNetworkDetachResponse(rsp *http.Response) (*ServerNetworkDetachResponse, error) + func (r ServerNetworkDetachResponse) ContentType() string + func (r ServerNetworkDetachResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerNetworkDetachResponse) GetBody() []byte + func (r ServerNetworkDetachResponse) GetJSON202() *ActionBody + func (r ServerNetworkDetachResponse) Status() string + func (r ServerNetworkDetachResponse) StatusCode() int + type ServerNetworkRef struct + Id string + Name string + type ServerPasswordResetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *PasswordResetOutputBody + func ParseServerPasswordResetResponse(rsp *http.Response) (*ServerPasswordResetResponse, error) + func (r ServerPasswordResetResponse) ContentType() string + func (r ServerPasswordResetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerPasswordResetResponse) GetBody() []byte + func (r ServerPasswordResetResponse) GetJSON202() *PasswordResetOutputBody + func (r ServerPasswordResetResponse) Status() string + func (r ServerPasswordResetResponse) StatusCode() int + type ServerPriceChange struct + CurrentChargeMinor int64 + EffectiveAt time.Time + Floating bool + NewChargeMinor int64 + type ServerProjectSetJSONRequestBody = ProjectAssignmentBody + type ServerProjectSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseServerProjectSetResponse(rsp *http.Response) (*ServerProjectSetResponse, error) + func (r ServerProjectSetResponse) ContentType() string + func (r ServerProjectSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerProjectSetResponse) GetBody() []byte + func (r ServerProjectSetResponse) Status() string + func (r ServerProjectSetResponse) StatusCode() int + type ServerRDNSListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *RdnsListOutputBody + func ParseServerRDNSListResponse(rsp *http.Response) (*ServerRDNSListResponse, error) + func (r ServerRDNSListResponse) ContentType() string + func (r ServerRDNSListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerRDNSListResponse) GetBody() []byte + func (r ServerRDNSListResponse) GetJSON200() *RdnsListOutputBody + func (r ServerRDNSListResponse) Status() string + func (r ServerRDNSListResponse) StatusCode() int + type ServerRebuildJSONRequestBody = RebuildInputBody + type ServerRebuildResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *RebuildOutputBody + func ParseServerRebuildResponse(rsp *http.Response) (*ServerRebuildResponse, error) + func (r ServerRebuildResponse) ContentType() string + func (r ServerRebuildResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerRebuildResponse) GetBody() []byte + func (r ServerRebuildResponse) GetJSON202() *RebuildOutputBody + func (r ServerRebuildResponse) Status() string + func (r ServerRebuildResponse) StatusCode() int + type ServerRenameJSONRequestBody = RenameInputBody + type ServerRenameResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ServerBody + func ParseServerRenameResponse(rsp *http.Response) (*ServerRenameResponse, error) + func (r ServerRenameResponse) ContentType() string + func (r ServerRenameResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerRenameResponse) GetBody() []byte + func (r ServerRenameResponse) GetJSON200() *ServerBody + func (r ServerRenameResponse) Status() string + func (r ServerRenameResponse) StatusCode() int + type ServerRescueEnterResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *ServerRescueOutputBody + func ParseServerRescueEnterResponse(rsp *http.Response) (*ServerRescueEnterResponse, error) + func (r ServerRescueEnterResponse) ContentType() string + func (r ServerRescueEnterResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerRescueEnterResponse) GetBody() []byte + func (r ServerRescueEnterResponse) GetJSON202() *ServerRescueOutputBody + func (r ServerRescueEnterResponse) Status() string + func (r ServerRescueEnterResponse) StatusCode() int + type ServerRescueExitResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *ServerRescueOutputBody + func ParseServerRescueExitResponse(rsp *http.Response) (*ServerRescueExitResponse, error) + func (r ServerRescueExitResponse) ContentType() string + func (r ServerRescueExitResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerRescueExitResponse) GetBody() []byte + func (r ServerRescueExitResponse) GetJSON202() *ServerRescueOutputBody + func (r ServerRescueExitResponse) Status() string + func (r ServerRescueExitResponse) StatusCode() int + type ServerRescueOutputBody struct + ActionId string + Schema *string + Status string + type ServerResizeJSONRequestBody = ResizeInputBody + type ServerResizeResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *ActionBody + func ParseServerResizeResponse(rsp *http.Response) (*ServerResizeResponse, error) + func (r ServerResizeResponse) ContentType() string + func (r ServerResizeResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerResizeResponse) GetBody() []byte + func (r ServerResizeResponse) GetJSON202() *ActionBody + func (r ServerResizeResponse) Status() string + func (r ServerResizeResponse) StatusCode() int + type ServerSnapshotCreateJSONRequestBody = SnapshotCreateInputBody + type ServerSnapshotCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *SnapshotBody + func ParseServerSnapshotCreateResponse(rsp *http.Response) (*ServerSnapshotCreateResponse, error) + func (r ServerSnapshotCreateResponse) ContentType() string + func (r ServerSnapshotCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerSnapshotCreateResponse) GetBody() []byte + func (r ServerSnapshotCreateResponse) GetJSON202() *SnapshotBody + func (r ServerSnapshotCreateResponse) Status() string + func (r ServerSnapshotCreateResponse) StatusCode() int + type ServerSnapshotDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseServerSnapshotDeleteResponse(rsp *http.Response) (*ServerSnapshotDeleteResponse, error) + func (r ServerSnapshotDeleteResponse) ContentType() string + func (r ServerSnapshotDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerSnapshotDeleteResponse) GetBody() []byte + func (r ServerSnapshotDeleteResponse) Status() string + func (r ServerSnapshotDeleteResponse) StatusCode() int + type ServerSnapshotListAllParams struct + Limit *int32 + Offset *int32 + type ServerSnapshotListAllResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *SnapshotListAllOutputBody + func ParseServerSnapshotListAllResponse(rsp *http.Response) (*ServerSnapshotListAllResponse, error) + func (r ServerSnapshotListAllResponse) ContentType() string + func (r ServerSnapshotListAllResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerSnapshotListAllResponse) GetBody() []byte + func (r ServerSnapshotListAllResponse) GetJSON200() *SnapshotListAllOutputBody + func (r ServerSnapshotListAllResponse) Status() string + func (r ServerSnapshotListAllResponse) StatusCode() int + type ServerSnapshotListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *SnapshotListOutputBody + func ParseServerSnapshotListResponse(rsp *http.Response) (*ServerSnapshotListResponse, error) + func (r ServerSnapshotListResponse) ContentType() string + func (r ServerSnapshotListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerSnapshotListResponse) GetBody() []byte + func (r ServerSnapshotListResponse) GetJSON200() *SnapshotListOutputBody + func (r ServerSnapshotListResponse) Status() string + func (r ServerSnapshotListResponse) StatusCode() int + type ServerSnapshotRestoreResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *ActionBody + func ParseServerSnapshotRestoreResponse(rsp *http.Response) (*ServerSnapshotRestoreResponse, error) + func (r ServerSnapshotRestoreResponse) ContentType() string + func (r ServerSnapshotRestoreResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerSnapshotRestoreResponse) GetBody() []byte + func (r ServerSnapshotRestoreResponse) GetJSON202() *ActionBody + func (r ServerSnapshotRestoreResponse) Status() string + func (r ServerSnapshotRestoreResponse) StatusCode() int + type ServerTagsSetJSONRequestBody = TagsBody + type ServerTagsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TagsBody + func ParseServerTagsSetResponse(rsp *http.Response) (*ServerTagsSetResponse, error) + func (r ServerTagsSetResponse) ContentType() string + func (r ServerTagsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerTagsSetResponse) GetBody() []byte + func (r ServerTagsSetResponse) GetJSON200() *TagsBody + func (r ServerTagsSetResponse) Status() string + func (r ServerTagsSetResponse) StatusCode() int + type ServerUnmountISOOutputBody struct + ActionId string + Schema *string + Status string + type ServerUnmountISOResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ServerUnmountISOOutputBody + func ParseServerUnmountISOResponse(rsp *http.Response) (*ServerUnmountISOResponse, error) + func (r ServerUnmountISOResponse) ContentType() string + func (r ServerUnmountISOResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServerUnmountISOResponse) GetBody() []byte + func (r ServerUnmountISOResponse) GetJSON200() *ServerUnmountISOOutputBody + func (r ServerUnmountISOResponse) Status() string + func (r ServerUnmountISOResponse) StatusCode() int + type ServersListParams struct + Limit *int32 + Offset *int32 + Project *string + Search *string + State *ServersListParamsState + Tag *[]string + type ServersListParamsState string + const ServersListParamsStateEmpty + const ServersListParamsStateOther + const ServersListParamsStateRunning + const ServersListParamsStateStopped + func (e ServersListParamsState) Valid() bool + type ServersListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *ListOutputBody + func ParseServersListResponse(rsp *http.Response) (*ServersListResponse, error) + func (r ServersListResponse) ContentType() string + func (r ServersListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r ServersListResponse) GetBody() []byte + func (r ServersListResponse) GetJSON200() *ListOutputBody + func (r ServersListResponse) Status() string + func (r ServersListResponse) StatusCode() int + type SessionItem struct + CreatedAt time.Time + Current bool + Id string + Ip *string + LastSeenAt time.Time + Support *bool + SupportAdminName *string + SupportMode *SessionItemSupportMode + UserAgent string + type SessionItemSupportMode string + const SessionItemSupportModeFull + const SessionItemSupportModeRead + func (e SessionItemSupportMode) Valid() bool + type SessionsOutputBody struct + Schema *string + Sessions *[]SessionItem + type SizesOutputBody struct + Plans *[]PlanBody + Schema *string + type SnapshotAllBody struct + CreatedAt time.Time + Id string + Name string + ServerDeleted bool + ServerId string + ServerName string + SizeGb int64 + State string + type SnapshotBody struct + CreatedAt time.Time + Id string + Name string + Schema *string + SizeGb int64 + State string + type SnapshotCreateInputBody struct + Name string + Schema *string + type SnapshotListAllOutputBody struct + Schema *string + Snapshots *[]SnapshotAllBody + Total int64 + TotalSizeGb int64 + type SnapshotListOutputBody struct + Schema *string + Snapshots *[]SnapshotBody + type SshKeyBody struct + CreatedAt time.Time + Fingerprint string + Id string + Name string + Schema *string + type SshKeyCreateJSONRequestBody = KeyCreateInputBody + type SshKeyCreateParams struct + IdempotencyKey *string + type SshKeyCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *SshKeyBody + func ParseSshKeyCreateResponse(rsp *http.Response) (*SshKeyCreateResponse, error) + func (r SshKeyCreateResponse) ContentType() string + func (r SshKeyCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r SshKeyCreateResponse) GetBody() []byte + func (r SshKeyCreateResponse) GetJSON201() *SshKeyBody + func (r SshKeyCreateResponse) Status() string + func (r SshKeyCreateResponse) StatusCode() int + type SshKeyDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseSshKeyDeleteResponse(rsp *http.Response) (*SshKeyDeleteResponse, error) + func (r SshKeyDeleteResponse) ContentType() string + func (r SshKeyDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r SshKeyDeleteResponse) GetBody() []byte + func (r SshKeyDeleteResponse) Status() string + func (r SshKeyDeleteResponse) StatusCode() int + type SshKeyGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *SshKeyBody + func ParseSshKeyGetResponse(rsp *http.Response) (*SshKeyGetResponse, error) + func (r SshKeyGetResponse) ContentType() string + func (r SshKeyGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r SshKeyGetResponse) GetBody() []byte + func (r SshKeyGetResponse) GetJSON200() *SshKeyBody + func (r SshKeyGetResponse) Status() string + func (r SshKeyGetResponse) StatusCode() int + type SshKeysListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *KeyListOutputBody + func ParseSshKeysListResponse(rsp *http.Response) (*SshKeysListResponse, error) + func (r SshKeysListResponse) ContentType() string + func (r SshKeysListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r SshKeysListResponse) GetBody() []byte + func (r SshKeysListResponse) GetJSON200() *KeyListOutputBody + func (r SshKeysListResponse) Status() string + func (r SshKeysListResponse) StatusCode() int + type SummaryStruct struct + Total int64 + type SupportAccessItem struct + AdminName string + EndedAt *time.Time + Id string + Mode SupportAccessItemMode + Reason string + StartedAt time.Time + type SupportAccessItemMode string + const SupportAccessItemModeFull + const SupportAccessItemModeRead + func (e SupportAccessItemMode) Valid() bool + type SupportAccessOutputBody struct + Access *[]SupportAccessItem + Schema *string + type TagCountBody struct + Count int64 + Tag string + type TagsBody struct + Schema *string + Tags *[]string + type TagsListOutputBody struct + Schema *string + Tags *[]TagCountBody + type TagsListParams struct + Kind *TagsListParamsKind + type TagsListParamsKind string + const TagsListParamsKindApp + const TagsListParamsKindDatabase + const TagsListParamsKindDnsZone + const TagsListParamsKindDomain + const TagsListParamsKindEmpty + const TagsListParamsKindLoadBalancer + const TagsListParamsKindNetwork + const TagsListParamsKindServer + const TagsListParamsKindVolume + func (e TagsListParamsKind) Valid() bool + type TagsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TagsListOutputBody + func ParseTagsListResponse(rsp *http.Response) (*TagsListResponse, error) + func (r TagsListResponse) ContentType() string + func (r TagsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r TagsListResponse) GetBody() []byte + func (r TagsListResponse) GetJSON200() *TagsListOutputBody + func (r TagsListResponse) Status() string + func (r TagsListResponse) StatusCode() int + type TicketAttachmentBody struct + ContentType string + Filename string + Id int64 + Inline bool + MessageId int64 + SizeBytes int64 + type TicketAttachmentDownloadResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + Headers200 *TicketAttachmentDownloadResponse200Headers + JSON200 *[]byte + func ParseTicketAttachmentDownloadResponse(rsp *http.Response) (*TicketAttachmentDownloadResponse, error) + func (r TicketAttachmentDownloadResponse) ContentType() string + func (r TicketAttachmentDownloadResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r TicketAttachmentDownloadResponse) GetBody() []byte + func (r TicketAttachmentDownloadResponse) GetJSON200() *[]byte + func (r TicketAttachmentDownloadResponse) Status() string + func (r TicketAttachmentDownloadResponse) StatusCode() int + type TicketAttachmentDownloadResponse200Headers struct + CacheControl *string + ContentDisposition *string + ContentType *string + XContentTypeOptions *string + type TicketAttachmentUpload struct + DataBase64 string + Filename string + type TicketBody struct + Category TicketBodyCategory + ClosedAt *time.Time + Code string + CreatedAt time.Time + Id string + LastActor TicketBodyLastActor + LastMessageAt time.Time + MessageCount *int64 + Priority TicketBodyPriority + Reopenable bool + Schema *string + ServerCode *string + ServerName *string + Status TicketBodyStatus + Subject string + Unread bool + type TicketBodyCategory string + const TicketBodyCategoryAbuse + const TicketBodyCategoryBilling + const TicketBodyCategoryOther + const TicketBodyCategoryTechnical + func (e TicketBodyCategory) Valid() bool + type TicketBodyLastActor string + const TicketBodyLastActorCustomer + const TicketBodyLastActorStaff + func (e TicketBodyLastActor) Valid() bool + type TicketBodyPriority string + const High + const Low + const Normal + const Urgent + func (e TicketBodyPriority) Valid() bool + type TicketBodyStatus string + const TicketBodyStatusAnswered + const TicketBodyStatusClosed + const TicketBodyStatusOpen + const TicketBodyStatusPending + func (e TicketBodyStatus) Valid() bool + type TicketCloseResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TicketBody + func ParseTicketCloseResponse(rsp *http.Response) (*TicketCloseResponse, error) + func (r TicketCloseResponse) ContentType() string + func (r TicketCloseResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r TicketCloseResponse) GetBody() []byte + func (r TicketCloseResponse) GetJSON200() *TicketBody + func (r TicketCloseResponse) Status() string + func (r TicketCloseResponse) StatusCode() int + type TicketCreateInputBody struct + Attachments *[]TicketAttachmentUpload + Category TicketCreateInputBodyCategory + Message string + Schema *string + ServerCode *string + Subject string + type TicketCreateInputBodyCategory string + const TicketCreateInputBodyCategoryAbuse + const TicketCreateInputBodyCategoryBilling + const TicketCreateInputBodyCategoryOther + const TicketCreateInputBodyCategoryTechnical + func (e TicketCreateInputBodyCategory) Valid() bool + type TicketCreateJSONRequestBody = TicketCreateInputBody + type TicketCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *TicketBody + func ParseTicketCreateResponse(rsp *http.Response) (*TicketCreateResponse, error) + func (r TicketCreateResponse) ContentType() string + func (r TicketCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r TicketCreateResponse) GetBody() []byte + func (r TicketCreateResponse) GetJSON201() *TicketBody + func (r TicketCreateResponse) Status() string + func (r TicketCreateResponse) StatusCode() int + type TicketGetOutputBody struct + Messages *[]TicketMessageBody + Schema *string + Ticket TicketBody + type TicketGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TicketGetOutputBody + func ParseTicketGetResponse(rsp *http.Response) (*TicketGetResponse, error) + func (r TicketGetResponse) ContentType() string + func (r TicketGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r TicketGetResponse) GetBody() []byte + func (r TicketGetResponse) GetJSON200() *TicketGetOutputBody + func (r TicketGetResponse) Status() string + func (r TicketGetResponse) StatusCode() int + type TicketMessageBody struct + AuthorName *string + AuthorType TicketMessageBodyAuthorType + Body string + CreatedAt time.Time + Files *[]TicketAttachmentBody + Id int64 + Internal *bool + SystemKind *string + SystemParams *map[string]string + type TicketMessageBodyAuthorType string + const TicketMessageBodyAuthorTypeCustomer + const TicketMessageBodyAuthorTypeStaff + const TicketMessageBodyAuthorTypeSystem + func (e TicketMessageBodyAuthorType) Valid() bool + type TicketReopenResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TicketBody + func ParseTicketReopenResponse(rsp *http.Response) (*TicketReopenResponse, error) + func (r TicketReopenResponse) ContentType() string + func (r TicketReopenResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r TicketReopenResponse) GetBody() []byte + func (r TicketReopenResponse) GetJSON200() *TicketBody + func (r TicketReopenResponse) Status() string + func (r TicketReopenResponse) StatusCode() int + type TicketReplyInputBody struct + Attachments *[]TicketAttachmentUpload + Message string + Schema *string + type TicketReplyJSONRequestBody = TicketReplyInputBody + type TicketReplyResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON201 *TicketBody + func ParseTicketReplyResponse(rsp *http.Response) (*TicketReplyResponse, error) + func (r TicketReplyResponse) ContentType() string + func (r TicketReplyResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r TicketReplyResponse) GetBody() []byte + func (r TicketReplyResponse) GetJSON201() *TicketBody + func (r TicketReplyResponse) Status() string + func (r TicketReplyResponse) StatusCode() int + type TicketsListOutputBody struct + OpenCount int64 + Schema *string + Tickets *[]TicketBody + Total int64 + type TicketsListParams struct + Limit *int32 + Offset *int32 + type TicketsListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TicketsListOutputBody + func ParseTicketsListResponse(rsp *http.Response) (*TicketsListResponse, error) + func (r TicketsListResponse) ContentType() string + func (r TicketsListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r TicketsListResponse) GetBody() []byte + func (r TicketsListResponse) GetJSON200() *TicketsListOutputBody + func (r TicketsListResponse) Status() string + func (r TicketsListResponse) StatusCode() int + type TopupInputBody struct + AmountMinor int64 + Method TopupInputBodyMethod + Schema *string + type TopupInputBodyMethod string + const BankTransfer + const Card + func (e TopupInputBodyMethod) Valid() bool + type TopupOutputBody struct + BankTransferCode *string + IframeToken *string + IframeUrl *string + Intent IntentBody + Schema *string + type TotpSetupInputBody struct + CurrentPassword *string + Schema *string + type TotpSetupOutputBody struct + OtpauthUrl string + Schema *string + Secret string + type TotpStatusOutputBody struct + Enabled bool + EnabledAt *time.Time + PendingSetup bool + RecoveryCodesLeft int64 + Schema *string + type UserBody struct + ActiveOrganizationId *string + Country *string + DeletionScheduledFor *time.Time + Email string + EmailVerified bool + FirstName string + FullName string + HasPassword bool + Id string + Impersonation *ImpersonationBody + LastName string + Locale string + OrganizationIsPersonal *bool + OrganizationRole *string + OrganizationSuspended *bool + PhoneVerified bool + Schema *string + Timezone *string + TotpEnabled bool + type VerifyInputBody struct + Schema *string + Token string + type VolumeAttachInputBody struct + Automount *bool + Schema *string + ServerId string + type VolumeAttachJSONRequestBody = VolumeAttachInputBody + type VolumeAttachResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseVolumeAttachResponse(rsp *http.Response) (*VolumeAttachResponse, error) + func (r VolumeAttachResponse) ContentType() string + func (r VolumeAttachResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeAttachResponse) GetBody() []byte + func (r VolumeAttachResponse) Status() string + func (r VolumeAttachResponse) StatusCode() int + type VolumeBody struct + Automount bool + CreatedAt time.Time + FsType *string + Id string + MountError *string + MountPath *string + MountState string + Name string + ProjectId *string + Schema *string + Serial string + ServerId *string + SizeGb int64 + Slot *int64 + State VolumeBodyState + Tags *[]string + type VolumeBodyState string + const VolumeBodyStateAttached + const VolumeBodyStateAttaching + const VolumeBodyStateAvailable + const VolumeBodyStateCreating + const VolumeBodyStateDeleting + const VolumeBodyStateDetaching + const VolumeBodyStateError + const VolumeBodyStateResizing + func (e VolumeBodyState) Valid() bool + type VolumeCreateInputBody struct + Automount *bool + FsType *VolumeCreateInputBodyFsType + Name string + ProjectId *string + Schema *string + ServerId *string + SizeGb int64 + Tags *[]string + type VolumeCreateInputBodyFsType string + const Ext4 + const Xfs + func (e VolumeCreateInputBodyFsType) Valid() bool + type VolumeCreateJSONRequestBody = VolumeCreateInputBody + type VolumeCreateParams struct + IdempotencyKey *string + type VolumeCreateResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON202 *VolumeBody + func ParseVolumeCreateResponse(rsp *http.Response) (*VolumeCreateResponse, error) + func (r VolumeCreateResponse) ContentType() string + func (r VolumeCreateResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeCreateResponse) GetBody() []byte + func (r VolumeCreateResponse) GetJSON202() *VolumeBody + func (r VolumeCreateResponse) Status() string + func (r VolumeCreateResponse) StatusCode() int + type VolumeDeleteResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseVolumeDeleteResponse(rsp *http.Response) (*VolumeDeleteResponse, error) + func (r VolumeDeleteResponse) ContentType() string + func (r VolumeDeleteResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeDeleteResponse) GetBody() []byte + func (r VolumeDeleteResponse) Status() string + func (r VolumeDeleteResponse) StatusCode() int + type VolumeDetachResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseVolumeDetachResponse(rsp *http.Response) (*VolumeDetachResponse, error) + func (r VolumeDetachResponse) ContentType() string + func (r VolumeDetachResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeDetachResponse) GetBody() []byte + func (r VolumeDetachResponse) Status() string + func (r VolumeDetachResponse) StatusCode() int + type VolumeGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *VolumeBody + func ParseVolumeGetResponse(rsp *http.Response) (*VolumeGetResponse, error) + func (r VolumeGetResponse) ContentType() string + func (r VolumeGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeGetResponse) GetBody() []byte + func (r VolumeGetResponse) GetJSON200() *VolumeBody + func (r VolumeGetResponse) Status() string + func (r VolumeGetResponse) StatusCode() int + type VolumeLimitsOutputBody struct + HasRoom bool + MaxCount int64 + MaxGb int64 + MaxTotalGb int64 + MinGb int64 + PerVolumeMaxGb int64 + RemainingCount int64 + RemainingTotalGb int64 + Schema *string + UsedCount int64 + UsedTotalGb int64 + type VolumeLimitsResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *VolumeLimitsOutputBody + func ParseVolumeLimitsResponse(rsp *http.Response) (*VolumeLimitsResponse, error) + func (r VolumeLimitsResponse) ContentType() string + func (r VolumeLimitsResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeLimitsResponse) GetBody() []byte + func (r VolumeLimitsResponse) GetJSON200() *VolumeLimitsOutputBody + func (r VolumeLimitsResponse) Status() string + func (r VolumeLimitsResponse) StatusCode() int + type VolumeListOutputBody struct + Schema *string + Total int64 + Volumes *[]VolumeBody + type VolumeListParams struct + Limit *int32 + Offset *int32 + Project *string + ServerId *string + Tag *[]string + type VolumeListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *VolumeListOutputBody + func ParseVolumeListResponse(rsp *http.Response) (*VolumeListResponse, error) + func (r VolumeListResponse) ContentType() string + func (r VolumeListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeListResponse) GetBody() []byte + func (r VolumeListResponse) GetJSON200() *VolumeListOutputBody + func (r VolumeListResponse) Status() string + func (r VolumeListResponse) StatusCode() int + type VolumeProjectSetJSONRequestBody = ProjectAssignmentBody + type VolumeProjectSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseVolumeProjectSetResponse(rsp *http.Response) (*VolumeProjectSetResponse, error) + func (r VolumeProjectSetResponse) ContentType() string + func (r VolumeProjectSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeProjectSetResponse) GetBody() []byte + func (r VolumeProjectSetResponse) Status() string + func (r VolumeProjectSetResponse) StatusCode() int + type VolumeResizeInputBody struct + Schema *string + SizeGb int64 + type VolumeResizeJSONRequestBody = VolumeResizeInputBody + type VolumeResizeResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + func ParseVolumeResizeResponse(rsp *http.Response) (*VolumeResizeResponse, error) + func (r VolumeResizeResponse) ContentType() string + func (r VolumeResizeResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeResizeResponse) GetBody() []byte + func (r VolumeResizeResponse) Status() string + func (r VolumeResizeResponse) StatusCode() int + type VolumeTagsSetJSONRequestBody = TagsBody + type VolumeTagsSetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *TagsBody + func ParseVolumeTagsSetResponse(rsp *http.Response) (*VolumeTagsSetResponse, error) + func (r VolumeTagsSetResponse) ContentType() string + func (r VolumeTagsSetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r VolumeTagsSetResponse) GetBody() []byte + func (r VolumeTagsSetResponse) GetJSON200() *TagsBody + func (r VolumeTagsSetResponse) Status() string + func (r VolumeTagsSetResponse) StatusCode() int + type WalletBody struct + BalanceMinor int64 + BurnPerHourMinor int64 + Currency string + NegativeSince *time.Time + RunwayHours *int64 + Schema *string + type WalletGetResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *WalletBody + func ParseWalletGetResponse(rsp *http.Response) (*WalletGetResponse, error) + func (r WalletGetResponse) ContentType() string + func (r WalletGetResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r WalletGetResponse) GetBody() []byte + func (r WalletGetResponse) GetJSON200() *WalletBody + func (r WalletGetResponse) Status() string + func (r WalletGetResponse) StatusCode() int + type WalletLedgerDailyParams struct + Days *int32 + Tz *string + type WalletLedgerDailyResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *LedgerDailyOutputBody + func ParseWalletLedgerDailyResponse(rsp *http.Response) (*WalletLedgerDailyResponse, error) + func (r WalletLedgerDailyResponse) ContentType() string + func (r WalletLedgerDailyResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r WalletLedgerDailyResponse) GetBody() []byte + func (r WalletLedgerDailyResponse) GetJSON200() *LedgerDailyOutputBody + func (r WalletLedgerDailyResponse) Status() string + func (r WalletLedgerDailyResponse) StatusCode() int + type WalletLedgerListParams struct + Direction *WalletLedgerListParamsDirection + Limit *int32 + Offset *int32 + type WalletLedgerListParamsDirection string + const WalletLedgerListParamsDirectionEmpty + const WalletLedgerListParamsDirectionIn + const WalletLedgerListParamsDirectionOut + func (e WalletLedgerListParamsDirection) Valid() bool + type WalletLedgerListResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *LedgerOutputBody + func ParseWalletLedgerListResponse(rsp *http.Response) (*WalletLedgerListResponse, error) + func (r WalletLedgerListResponse) ContentType() string + func (r WalletLedgerListResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r WalletLedgerListResponse) GetBody() []byte + func (r WalletLedgerListResponse) GetJSON200() *LedgerOutputBody + func (r WalletLedgerListResponse) Status() string + func (r WalletLedgerListResponse) StatusCode() int + type WalletPromoRedeemJSONRequestBody = PromoRedeemBody + type WalletPromoRedeemResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *PromoRedeemOutputBody + func ParseWalletPromoRedeemResponse(rsp *http.Response) (*WalletPromoRedeemResponse, error) + func (r WalletPromoRedeemResponse) ContentType() string + func (r WalletPromoRedeemResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r WalletPromoRedeemResponse) GetBody() []byte + func (r WalletPromoRedeemResponse) GetJSON200() *PromoRedeemOutputBody + func (r WalletPromoRedeemResponse) Status() string + func (r WalletPromoRedeemResponse) StatusCode() int + type WalletPromoRedemptionsResponse struct + ApplicationproblemJSONDefault *ErrorModel + Body []byte + HTTPResponse *http.Response + JSON200 *PromoRedemptionsOutputBody + func ParseWalletPromoRedemptionsResponse(rsp *http.Response) (*WalletPromoRedemptionsResponse, error) + func (r WalletPromoRedemptionsResponse) ContentType() string + func (r WalletPromoRedemptionsResponse) GetApplicationproblemJSONDefault() *ErrorModel + func (r WalletPromoRedemptionsResponse) GetBody() []byte + func (r WalletPromoRedemptionsResponse) GetJSON200() *PromoRedemptionsOutputBody + func (r WalletPromoRedemptionsResponse) Status() string + func (r WalletPromoRedemptionsResponse) StatusCode() int + type ZoneCreateInputBody struct + Name string + ProjectId *string + Schema *string + ServerId *string + Tags *[]string + type ZoneDetailOutputBody struct + Records *[]DnsRecordBody + Schema *string + Zone DnsZoneBody + type ZonesListOutputBody struct + Schema *string + Total int64 + Zones *[]DnsZoneBody