aiven

package module
v0.138.0 Latest Latest
Warning

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

Go to latest
Published: Dec 18, 2025 License: Apache-2.0 Imports: 61 Imported by: 6

README

go-client-codegen

go-client-codegen is an automatically code generated Aiven Go Client from the Aiven API specification.

Warning: this client is under heavy development.

Setup

go get github.com/aiven/go-client-codegen
Configuration and Usage
Via Environment Variables
Name Type Description
AIVEN_TOKEN string Aiven API Authentication Token
AIVEN_WEB_URL string Aiven API URL
AIVEN_USER_AGENT string User Agent
AIVEN_DEBUG bool Debug Output Flag (stderr)
Via Constructor Options
import "github.com/aiven/go-client-codegen"

client, err := aiven.NewClient(DebugOpt(true), UserAgentOpt("foo"))
if err != nil {
	return err
}

services, err := client.ServiceList(ctx, "bar-project")

See CONTRIBUTING.md for instructions on how to contribute to the development of go-client-codegen.

License

go-client-codegen is licensed under the Apache license, version 2.0. Full license text is available in the LICENSE file.

Please note that the project explicitly does not require a CLA (Contributor License Agreement) from its contributors.

Contact

Bug reports and patches are very welcome, please post them as GitHub issues and pull requests at https://github.com/aiven/go-client-codegen. To report any possible vulnerabilities or other serious issues please see our security policy.

Documentation

Overview

Package aiven provides a client for interacting with the Aiven API.

Package aiven provides a client for interacting with the Aiven API.

Package aiven provides a client for interacting with the Aiven API.

Package aiven provides a client for interacting with the Aiven API.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func IsAlreadyExists

func IsAlreadyExists(err error) bool

IsAlreadyExists returns true if the error message and error code that indicates that entity already exists

func IsNotFound

func IsNotFound(err error) bool

IsNotFound returns true if the specified error has status 404

func Version added in v0.5.0

func Version() string

Version returns aiven-go-client version string

Types

type Doer

type Doer interface {
	Do(req *http.Request) (*http.Response, error)
}

Doer aka http.Client

type Error

type Error struct {
	// Aiven error response fields https://api.aiven.io/doc/#section/Responses/Failed-responses
	Message string `json:"message"`
	Errors  any    `json:"errors"`

	// Internal fields
	OperationID string `json:"-"`
	Status      int    `json:"-"`
}

Error represents an Aiven API Error.

func (Error) Error

func (e Error) Error() string

Error concatenates all the fields.

type MockClient added in v0.129.0

type MockClient struct {
	mock.Mock
}

MockClient is an autogenerated mock type for the Client type

func NewMockClient added in v0.129.0

func NewMockClient(t interface {
	mock.TestingT
	Cleanup(func())
}) *MockClient

NewMockClient creates a new instance of MockClient. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. The first argument is typically a *testing.T value.

func (*MockClient) AccessTokenCreate added in v0.129.0

func (_mock *MockClient) AccessTokenCreate(ctx context.Context, in *user.AccessTokenCreateIn) (*user.AccessTokenCreateOut, error)

AccessTokenCreate provides a mock function for the type MockClient

func (*MockClient) AccessTokenList added in v0.129.0

func (_mock *MockClient) AccessTokenList(ctx context.Context) ([]user.TokenOut, error)

AccessTokenList provides a mock function for the type MockClient

func (*MockClient) AccessTokenRevoke added in v0.129.0

func (_mock *MockClient) AccessTokenRevoke(ctx context.Context, tokenPrefix string) error

AccessTokenRevoke provides a mock function for the type MockClient

func (*MockClient) AccessTokenUpdate added in v0.129.0

func (_mock *MockClient) AccessTokenUpdate(ctx context.Context, tokenPrefix string, in *user.AccessTokenUpdateIn) (*user.AccessTokenUpdateOut, error)

AccessTokenUpdate provides a mock function for the type MockClient

func (*MockClient) AccountAttachPaymentMethod added in v0.129.0

func (_mock *MockClient) AccountAttachPaymentMethod(ctx context.Context, accountId string, in *account.AccountAttachPaymentMethodIn) (*account.AccountAttachPaymentMethodOut, error)

AccountAttachPaymentMethod provides a mock function for the type MockClient

func (*MockClient) AccountAuthenticationMethodCreate added in v0.129.0

AccountAuthenticationMethodCreate provides a mock function for the type MockClient

func (*MockClient) AccountAuthenticationMethodDelete added in v0.129.0

func (_mock *MockClient) AccountAuthenticationMethodDelete(ctx context.Context, accountId string, accountAuthenticationMethodId string) error

AccountAuthenticationMethodDelete provides a mock function for the type MockClient

func (*MockClient) AccountAuthenticationMethodGet added in v0.129.0

func (_mock *MockClient) AccountAuthenticationMethodGet(ctx context.Context, accountId string, accountAuthenticationMethodId string) (*accountauthentication.AccountAuthenticationMethodGetOut, error)

AccountAuthenticationMethodGet provides a mock function for the type MockClient

func (*MockClient) AccountAuthenticationMethodUpdate added in v0.129.0

func (_mock *MockClient) AccountAuthenticationMethodUpdate(ctx context.Context, accountId string, accountAuthenticationMethodId string, in *accountauthentication.AccountAuthenticationMethodUpdateIn) (*accountauthentication.AccountAuthenticationMethodUpdateOut, error)

AccountAuthenticationMethodUpdate provides a mock function for the type MockClient

func (*MockClient) AccountAuthenticationMethodsList added in v0.129.0

func (_mock *MockClient) AccountAuthenticationMethodsList(ctx context.Context, accountId string) ([]accountauthentication.AuthenticationMethodOut, error)

AccountAuthenticationMethodsList provides a mock function for the type MockClient

func (*MockClient) AccountBillingGroupList added in v0.129.0

func (_mock *MockClient) AccountBillingGroupList(ctx context.Context, accountId string) ([]account.AccountBillingGroupOut, error)

AccountBillingGroupList provides a mock function for the type MockClient

func (*MockClient) AccountCreate added in v0.129.0

func (_mock *MockClient) AccountCreate(ctx context.Context, in *account.AccountCreateIn) (*account.AccountCreateOut, error)

AccountCreate provides a mock function for the type MockClient

func (*MockClient) AccountDelete added in v0.129.0

func (_mock *MockClient) AccountDelete(ctx context.Context, accountId string) error

AccountDelete provides a mock function for the type MockClient

func (*MockClient) AccountEventList added in v0.129.0

func (_mock *MockClient) AccountEventList(ctx context.Context, accountId string) ([]account.EventOut, error)

AccountEventList provides a mock function for the type MockClient

func (*MockClient) AccountGet added in v0.129.0

func (_mock *MockClient) AccountGet(ctx context.Context, accountId string) (*account.AccountGetOut, error)

AccountGet provides a mock function for the type MockClient

func (*MockClient) AccountList added in v0.129.0

func (_mock *MockClient) AccountList(ctx context.Context) ([]account.AccountOut, error)

AccountList provides a mock function for the type MockClient

func (*MockClient) AccountMove added in v0.129.0

func (_mock *MockClient) AccountMove(ctx context.Context, accountId string, in *account.AccountMoveIn) (*account.AccountMoveOut, error)

AccountMove provides a mock function for the type MockClient

func (*MockClient) AccountPaymentMethodDelete added in v0.129.0

func (_mock *MockClient) AccountPaymentMethodDelete(ctx context.Context, accountId string, cardId string) error

AccountPaymentMethodDelete provides a mock function for the type MockClient

func (*MockClient) AccountPaymentMethodsList added in v0.129.0

func (_mock *MockClient) AccountPaymentMethodsList(ctx context.Context, accountId string) ([]account.CardOut, error)

AccountPaymentMethodsList provides a mock function for the type MockClient

func (*MockClient) AccountProjectsList added in v0.129.0

func (_mock *MockClient) AccountProjectsList(ctx context.Context, accountId string) (*account.AccountProjectsListOut, error)

AccountProjectsList provides a mock function for the type MockClient

func (*MockClient) AccountProjectsTeamsList added in v0.129.0

func (_mock *MockClient) AccountProjectsTeamsList(ctx context.Context, accountId string, projectName string) ([]account.TeamOut, error)

AccountProjectsTeamsList provides a mock function for the type MockClient

func (*MockClient) AccountTeamCreate added in v0.129.0

func (_mock *MockClient) AccountTeamCreate(ctx context.Context, accountId string, in *accountteam.AccountTeamCreateIn) (*accountteam.AccountTeamCreateOut, error)

AccountTeamCreate provides a mock function for the type MockClient

func (*MockClient) AccountTeamDelete added in v0.129.0

func (_mock *MockClient) AccountTeamDelete(ctx context.Context, accountId string, teamId string) error

AccountTeamDelete provides a mock function for the type MockClient

func (*MockClient) AccountTeamGet added in v0.129.0

func (_mock *MockClient) AccountTeamGet(ctx context.Context, accountId string, teamId string) (*accountteam.AccountTeamGetOut, error)

AccountTeamGet provides a mock function for the type MockClient

func (*MockClient) AccountTeamInvitesList added in v0.129.0

func (_mock *MockClient) AccountTeamInvitesList(ctx context.Context, accountId string, teamId string) ([]accountteam.AccountInviteOut, error)

AccountTeamInvitesList provides a mock function for the type MockClient

func (*MockClient) AccountTeamList added in v0.129.0

func (_mock *MockClient) AccountTeamList(ctx context.Context, accountId string) ([]accountteam.TeamOut, error)

AccountTeamList provides a mock function for the type MockClient

func (*MockClient) AccountTeamMemberCancelInvite added in v0.129.0

func (_mock *MockClient) AccountTeamMemberCancelInvite(ctx context.Context, accountId string, teamId string, userEmail string) error

AccountTeamMemberCancelInvite provides a mock function for the type MockClient

func (*MockClient) AccountTeamMemberVerifyInvite added in v0.129.0

func (_mock *MockClient) AccountTeamMemberVerifyInvite(ctx context.Context, accountId string, inviteVerificationCode string) (*accountteammember.AccountTeamMemberVerifyInviteOut, error)

AccountTeamMemberVerifyInvite provides a mock function for the type MockClient

func (*MockClient) AccountTeamMembersDelete added in v0.129.0

func (_mock *MockClient) AccountTeamMembersDelete(ctx context.Context, accountId string, teamId string, userId string) error

AccountTeamMembersDelete provides a mock function for the type MockClient

func (*MockClient) AccountTeamMembersInvite added in v0.129.0

func (_mock *MockClient) AccountTeamMembersInvite(ctx context.Context, accountId string, teamId string, in *accountteammember.AccountTeamMembersInviteIn) error

AccountTeamMembersInvite provides a mock function for the type MockClient

func (*MockClient) AccountTeamMembersList added in v0.129.0

func (_mock *MockClient) AccountTeamMembersList(ctx context.Context, accountId string, teamId string) ([]accountteammember.MemberOut, error)

AccountTeamMembersList provides a mock function for the type MockClient

func (*MockClient) AccountTeamProjectAssociate added in v0.129.0

func (_mock *MockClient) AccountTeamProjectAssociate(ctx context.Context, accountId string, teamId string, project string, in *accountteam.AccountTeamProjectAssociateIn) error

AccountTeamProjectAssociate provides a mock function for the type MockClient

func (*MockClient) AccountTeamProjectAssociationUpdate added in v0.129.0

func (_mock *MockClient) AccountTeamProjectAssociationUpdate(ctx context.Context, accountId string, teamId string, project string, in *accountteam.AccountTeamProjectAssociationUpdateIn) error

AccountTeamProjectAssociationUpdate provides a mock function for the type MockClient

func (*MockClient) AccountTeamProjectDisassociate added in v0.129.0

func (_mock *MockClient) AccountTeamProjectDisassociate(ctx context.Context, accountId string, teamId string, project string) error

AccountTeamProjectDisassociate provides a mock function for the type MockClient

func (*MockClient) AccountTeamProjectList added in v0.129.0

func (_mock *MockClient) AccountTeamProjectList(ctx context.Context, accountId string, teamId string) ([]accountteam.ProjectOut, error)

AccountTeamProjectList provides a mock function for the type MockClient

func (*MockClient) AccountTeamUpdate added in v0.129.0

func (_mock *MockClient) AccountTeamUpdate(ctx context.Context, accountId string, teamId string, in *accountteam.AccountTeamUpdateIn) (*accountteam.AccountTeamUpdateOut, error)

AccountTeamUpdate provides a mock function for the type MockClient

func (*MockClient) AccountUpdate added in v0.129.0

func (_mock *MockClient) AccountUpdate(ctx context.Context, accountId string, in *account.AccountUpdateIn) (*account.AccountUpdateOut, error)

AccountUpdate provides a mock function for the type MockClient

func (*MockClient) AccountUserProjectsList added in v0.129.0

func (_mock *MockClient) AccountUserProjectsList(ctx context.Context, accountId string, userId string) ([]account.UserProjectOut, error)

AccountUserProjectsList provides a mock function for the type MockClient

func (*MockClient) AccountUserTeamsList added in v0.129.0

func (_mock *MockClient) AccountUserTeamsList(ctx context.Context, accountId string, userId string) ([]account.AccountUserTeamsListOut, error)

AccountUserTeamsList provides a mock function for the type MockClient

func (*MockClient) AccountUsersSearch added in v0.129.0

func (_mock *MockClient) AccountUsersSearch(ctx context.Context, accountId string, in *account.AccountUsersSearchIn) ([]account.UserOut, error)

AccountUsersSearch provides a mock function for the type MockClient

func (*MockClient) AlloyDbOmniGoogleCloudPrivateKeyIdentify added in v0.129.0

func (_mock *MockClient) AlloyDbOmniGoogleCloudPrivateKeyIdentify(ctx context.Context, project string, serviceName string) (*alloydbomni.AlloyDbOmniGoogleCloudPrivateKeyIdentifyOut, error)

AlloyDbOmniGoogleCloudPrivateKeyIdentify provides a mock function for the type MockClient

func (*MockClient) AlloyDbOmniGoogleCloudPrivateKeyRemove added in v0.129.0

func (_mock *MockClient) AlloyDbOmniGoogleCloudPrivateKeyRemove(ctx context.Context, project string, serviceName string) (*alloydbomni.AlloyDbOmniGoogleCloudPrivateKeyRemoveOut, error)

AlloyDbOmniGoogleCloudPrivateKeyRemove provides a mock function for the type MockClient

func (*MockClient) AlloyDbOmniGoogleCloudPrivateKeySet added in v0.129.0

func (_mock *MockClient) AlloyDbOmniGoogleCloudPrivateKeySet(ctx context.Context, project string, serviceName string, in *alloydbomni.AlloyDbOmniGoogleCloudPrivateKeySetIn) (*alloydbomni.AlloyDbOmniGoogleCloudPrivateKeySetOut, error)

AlloyDbOmniGoogleCloudPrivateKeySet provides a mock function for the type MockClient

func (*MockClient) ApplicationUserAccessTokenCreate added in v0.129.0

func (_mock *MockClient) ApplicationUserAccessTokenCreate(ctx context.Context, organizationId string, userId string, in *applicationuser.ApplicationUserAccessTokenCreateIn) (*applicationuser.ApplicationUserAccessTokenCreateOut, error)

ApplicationUserAccessTokenCreate provides a mock function for the type MockClient

func (*MockClient) ApplicationUserAccessTokenDelete added in v0.129.0

func (_mock *MockClient) ApplicationUserAccessTokenDelete(ctx context.Context, organizationId string, userId string, tokenPrefix string) error

ApplicationUserAccessTokenDelete provides a mock function for the type MockClient

func (*MockClient) ApplicationUserAccessTokensList added in v0.129.0

func (_mock *MockClient) ApplicationUserAccessTokensList(ctx context.Context, organizationId string, userId string) ([]applicationuser.TokenOut, error)

ApplicationUserAccessTokensList provides a mock function for the type MockClient

func (*MockClient) ApplicationUserCreate added in v0.129.0

func (_mock *MockClient) ApplicationUserCreate(ctx context.Context, organizationId string, in *applicationuser.ApplicationUserCreateIn) (*applicationuser.ApplicationUserCreateOut, error)

ApplicationUserCreate provides a mock function for the type MockClient

func (*MockClient) ApplicationUserDelete added in v0.129.0

func (_mock *MockClient) ApplicationUserDelete(ctx context.Context, organizationId string, userId string) error

ApplicationUserDelete provides a mock function for the type MockClient

func (*MockClient) ApplicationUserGet added in v0.129.0

func (_mock *MockClient) ApplicationUserGet(ctx context.Context, organizationId string, userId string) (*applicationuser.ApplicationUserGetOut, error)

ApplicationUserGet provides a mock function for the type MockClient

func (*MockClient) ApplicationUserUpdate added in v0.129.0

func (_mock *MockClient) ApplicationUserUpdate(ctx context.Context, organizationId string, userId string, in *applicationuser.ApplicationUserUpdateIn) (*applicationuser.ApplicationUserUpdateOut, error)

ApplicationUserUpdate provides a mock function for the type MockClient

func (*MockClient) ApplicationUsersList added in v0.129.0

func (_mock *MockClient) ApplicationUsersList(ctx context.Context, organizationId string) ([]applicationuser.ApplicationUserOut, error)

ApplicationUsersList provides a mock function for the type MockClient

func (*MockClient) BillingGroupCreate added in v0.129.0

BillingGroupCreate provides a mock function for the type MockClient

func (*MockClient) BillingGroupCreditsClaim added in v0.129.0

func (_mock *MockClient) BillingGroupCreditsClaim(ctx context.Context, billingGroupId string, in *billinggroup.BillingGroupCreditsClaimIn) (*billinggroup.BillingGroupCreditsClaimOut, error)

BillingGroupCreditsClaim provides a mock function for the type MockClient

func (*MockClient) BillingGroupCreditsList added in v0.129.0

func (_mock *MockClient) BillingGroupCreditsList(ctx context.Context, billingGroupId string) ([]billinggroup.CreditOut, error)

BillingGroupCreditsList provides a mock function for the type MockClient

func (*MockClient) BillingGroupDelete added in v0.129.0

func (_mock *MockClient) BillingGroupDelete(ctx context.Context, billingGroupId string) error

BillingGroupDelete provides a mock function for the type MockClient

func (*MockClient) BillingGroupEventList added in v0.129.0

func (_mock *MockClient) BillingGroupEventList(ctx context.Context, billingGroupId string) ([]billinggroup.EventOut, error)

BillingGroupEventList provides a mock function for the type MockClient

func (*MockClient) BillingGroupGet added in v0.129.0

func (_mock *MockClient) BillingGroupGet(ctx context.Context, billingGroupId string) (*billinggroup.BillingGroupGetOut, error)

BillingGroupGet provides a mock function for the type MockClient

func (*MockClient) BillingGroupInvoiceLinesList added in v0.129.0

func (_mock *MockClient) BillingGroupInvoiceLinesList(ctx context.Context, billingGroupId string, invoiceNumber string) ([]billinggroup.LineOut, error)

BillingGroupInvoiceLinesList provides a mock function for the type MockClient

func (*MockClient) BillingGroupInvoiceList added in v0.129.0

func (_mock *MockClient) BillingGroupInvoiceList(ctx context.Context, billingGroupId string) ([]billinggroup.InvoiceOut, error)

BillingGroupInvoiceList provides a mock function for the type MockClient

func (*MockClient) BillingGroupList added in v0.129.0

func (_mock *MockClient) BillingGroupList(ctx context.Context) ([]billinggroup.BillingGroupOut, error)

BillingGroupList provides a mock function for the type MockClient

func (*MockClient) BillingGroupProjectAssign added in v0.129.0

func (_mock *MockClient) BillingGroupProjectAssign(ctx context.Context, billingGroupId string, project string) error

BillingGroupProjectAssign provides a mock function for the type MockClient

func (*MockClient) BillingGroupProjectList added in v0.129.0

func (_mock *MockClient) BillingGroupProjectList(ctx context.Context, billingGroupId string) ([]billinggroup.ProjectOut, error)

BillingGroupProjectList provides a mock function for the type MockClient

func (*MockClient) BillingGroupProjectsAssign added in v0.129.0

func (_mock *MockClient) BillingGroupProjectsAssign(ctx context.Context, billingGroupId string, in *billinggroup.BillingGroupProjectsAssignIn) error

BillingGroupProjectsAssign provides a mock function for the type MockClient

func (*MockClient) BillingGroupUpdate added in v0.129.0

func (_mock *MockClient) BillingGroupUpdate(ctx context.Context, billingGroupId string, in *billinggroup.BillingGroupUpdateIn) (*billinggroup.BillingGroupUpdateOut, error)

BillingGroupUpdate provides a mock function for the type MockClient

func (*MockClient) CheckPasswordStrengthExistingUser added in v0.129.0

CheckPasswordStrengthExistingUser provides a mock function for the type MockClient

func (*MockClient) CheckPasswordStrengthNewUser added in v0.129.0

func (_mock *MockClient) CheckPasswordStrengthNewUser(ctx context.Context, in *user.CheckPasswordStrengthNewUserIn) (*user.CheckPasswordStrengthNewUserOut, error)

CheckPasswordStrengthNewUser provides a mock function for the type MockClient

func (*MockClient) CustomCloudEnvironmentCreate added in v0.129.0

func (_mock *MockClient) CustomCloudEnvironmentCreate(ctx context.Context, organizationId string, in *byoc.CustomCloudEnvironmentCreateIn) (*byoc.CustomCloudEnvironmentCreateOut, error)

CustomCloudEnvironmentCreate provides a mock function for the type MockClient

func (*MockClient) CustomCloudEnvironmentDelete added in v0.129.0

func (_mock *MockClient) CustomCloudEnvironmentDelete(ctx context.Context, organizationId string, customCloudEnvironmentId string) error

CustomCloudEnvironmentDelete provides a mock function for the type MockClient

func (*MockClient) CustomCloudEnvironmentGet added in v0.129.0

func (_mock *MockClient) CustomCloudEnvironmentGet(ctx context.Context, organizationId string, customCloudEnvironmentId string) (*byoc.CustomCloudEnvironmentGetOut, error)

CustomCloudEnvironmentGet provides a mock function for the type MockClient

func (*MockClient) CustomCloudEnvironmentPermissionsGet added in v0.129.0

func (_mock *MockClient) CustomCloudEnvironmentPermissionsGet(ctx context.Context, organizationId string, customCloudEnvironmentId string) (*byoc.CustomCloudEnvironmentPermissionsGetOut, error)

CustomCloudEnvironmentPermissionsGet provides a mock function for the type MockClient

func (*MockClient) CustomCloudEnvironmentPermissionsSet added in v0.129.0

func (_mock *MockClient) CustomCloudEnvironmentPermissionsSet(ctx context.Context, organizationId string, customCloudEnvironmentId string, in *byoc.CustomCloudEnvironmentPermissionsSetIn) error

CustomCloudEnvironmentPermissionsSet provides a mock function for the type MockClient

func (*MockClient) CustomCloudEnvironmentProvision added in v0.129.0

func (_mock *MockClient) CustomCloudEnvironmentProvision(ctx context.Context, organizationId string, customCloudEnvironmentId string, in *byoc.CustomCloudEnvironmentProvisionIn) (*byoc.CustomCloudEnvironmentProvisionOut, error)

CustomCloudEnvironmentProvision provides a mock function for the type MockClient

func (*MockClient) CustomCloudEnvironmentUpdate added in v0.129.0

func (_mock *MockClient) CustomCloudEnvironmentUpdate(ctx context.Context, organizationId string, customCloudEnvironmentId string, in *byoc.CustomCloudEnvironmentUpdateIn) (*byoc.CustomCloudEnvironmentUpdateOut, error)

CustomCloudEnvironmentUpdate provides a mock function for the type MockClient

func (*MockClient) EXPECT added in v0.129.0

func (_m *MockClient) EXPECT() *MockClient_Expecter

func (*MockClient) InvoiceGet added in v0.129.0

func (_mock *MockClient) InvoiceGet(ctx context.Context, invoiceNumber string) (*projectbilling.InvoiceGetOut, error)

InvoiceGet provides a mock function for the type MockClient

func (*MockClient) ListClouds added in v0.129.0

func (_mock *MockClient) ListClouds(ctx context.Context) ([]cloud.CloudOut, error)

ListClouds provides a mock function for the type MockClient

func (*MockClient) ListProjectClouds added in v0.129.0

func (_mock *MockClient) ListProjectClouds(ctx context.Context, project string) ([]cloud.CloudOut, error)

ListProjectClouds provides a mock function for the type MockClient

func (*MockClient) ListProjectServiceTypes added in v0.129.0

func (_mock *MockClient) ListProjectServiceTypes(ctx context.Context, project string) (*service.ListProjectServiceTypesOut, error)

ListProjectServiceTypes provides a mock function for the type MockClient

func (*MockClient) ListProjectVpcPeeringConnectionTypes added in v0.129.0

func (_mock *MockClient) ListProjectVpcPeeringConnectionTypes(ctx context.Context, project1 string) ([]project.VpcPeeringConnectionTypeOut, error)

ListProjectVpcPeeringConnectionTypes provides a mock function for the type MockClient

func (*MockClient) ListPublicServiceTypes added in v0.129.0

func (_mock *MockClient) ListPublicServiceTypes(ctx context.Context) (*service.ListPublicServiceTypesOut, error)

ListPublicServiceTypes provides a mock function for the type MockClient

func (*MockClient) ListServiceVersions added in v0.129.0

func (_mock *MockClient) ListServiceVersions(ctx context.Context) ([]service.ServiceVersionOut, error)

ListServiceVersions provides a mock function for the type MockClient

func (*MockClient) MySQLServiceQueryStatistics added in v0.129.0

func (_mock *MockClient) MySQLServiceQueryStatistics(ctx context.Context, project1 string, serviceName string, in *mysql.MySqlserviceQueryStatisticsIn) ([]mysql.QueryOut, error)

MySQLServiceQueryStatistics provides a mock function for the type MockClient

func (*MockClient) OrganizationAddressCreate added in v0.129.0

func (_mock *MockClient) OrganizationAddressCreate(ctx context.Context, organizationId string, in *organization.OrganizationAddressCreateIn) (*organization.OrganizationAddressCreateOut, error)

OrganizationAddressCreate provides a mock function for the type MockClient

func (*MockClient) OrganizationAddressDelete added in v0.129.0

func (_mock *MockClient) OrganizationAddressDelete(ctx context.Context, organizationId string, addressId string) error

OrganizationAddressDelete provides a mock function for the type MockClient

func (*MockClient) OrganizationAddressGet added in v0.129.0

func (_mock *MockClient) OrganizationAddressGet(ctx context.Context, organizationId string, addressId string) (*organization.OrganizationAddressGetOut, error)

OrganizationAddressGet provides a mock function for the type MockClient

func (*MockClient) OrganizationAddressList added in v0.129.0

func (_mock *MockClient) OrganizationAddressList(ctx context.Context, organizationId string) ([]organization.AddresseOut, error)

OrganizationAddressList provides a mock function for the type MockClient

func (*MockClient) OrganizationAddressUpdate added in v0.129.0

func (_mock *MockClient) OrganizationAddressUpdate(ctx context.Context, organizationId string, addressId string, in *organization.OrganizationAddressUpdateIn) (*organization.OrganizationAddressUpdateOut, error)

OrganizationAddressUpdate provides a mock function for the type MockClient

func (_mock *MockClient) OrganizationAuthDomainLink(ctx context.Context, organizationId string, authenticationMethodId string, in *organization.OrganizationAuthDomainLinkIn) error

OrganizationAuthDomainLink provides a mock function for the type MockClient

func (*MockClient) OrganizationAuthDomainList added in v0.129.0

func (_mock *MockClient) OrganizationAuthDomainList(ctx context.Context, organizationId string, authenticationMethodId string) ([]organization.DomainOut, error)

OrganizationAuthDomainList provides a mock function for the type MockClient

func (_mock *MockClient) OrganizationAuthDomainUnlink(ctx context.Context, organizationId string, authenticationMethodId string, domainId string) error

OrganizationAuthDomainUnlink provides a mock function for the type MockClient

func (*MockClient) OrganizationAuthenticationConfigGet added in v0.129.0

func (_mock *MockClient) OrganizationAuthenticationConfigGet(ctx context.Context, organizationId string) (*organization.OrganizationAuthenticationConfigGetOut, error)

OrganizationAuthenticationConfigGet provides a mock function for the type MockClient

func (*MockClient) OrganizationAuthenticationConfigUpdate added in v0.129.0

OrganizationAuthenticationConfigUpdate provides a mock function for the type MockClient

func (*MockClient) OrganizationBillingGroupCreate added in v0.129.0

OrganizationBillingGroupCreate provides a mock function for the type MockClient

func (*MockClient) OrganizationBillingGroupDelete added in v0.129.0

func (_mock *MockClient) OrganizationBillingGroupDelete(ctx context.Context, organizationId string, billingGroupId string) error

OrganizationBillingGroupDelete provides a mock function for the type MockClient

func (*MockClient) OrganizationBillingGroupGet added in v0.129.0

func (_mock *MockClient) OrganizationBillingGroupGet(ctx context.Context, organizationId string, billingGroupId string) (*organizationbilling.OrganizationBillingGroupGetOut, error)

OrganizationBillingGroupGet provides a mock function for the type MockClient

func (*MockClient) OrganizationBillingGroupList added in v0.129.0

func (_mock *MockClient) OrganizationBillingGroupList(ctx context.Context, organizationId string) ([]organizationbilling.BillingGroupOut, error)

OrganizationBillingGroupList provides a mock function for the type MockClient

func (*MockClient) OrganizationBillingGroupUpdate added in v0.129.0

func (_mock *MockClient) OrganizationBillingGroupUpdate(ctx context.Context, organizationId string, billingGroupId string, in *organizationbilling.OrganizationBillingGroupUpdateIn) (*organizationbilling.OrganizationBillingGroupUpdateOut, error)

OrganizationBillingGroupUpdate provides a mock function for the type MockClient

func (*MockClient) OrganizationDelete added in v0.129.0

func (_mock *MockClient) OrganizationDelete(ctx context.Context, organizationId string, query ...[2]string) error

OrganizationDelete provides a mock function for the type MockClient

func (*MockClient) OrganizationDomainAdd added in v0.129.0

func (_mock *MockClient) OrganizationDomainAdd(ctx context.Context, organizationId string, in *domain.OrganizationDomainAddIn) (*domain.OrganizationDomainAddOut, error)

OrganizationDomainAdd provides a mock function for the type MockClient

func (*MockClient) OrganizationDomainUpdate added in v0.129.0

func (_mock *MockClient) OrganizationDomainUpdate(ctx context.Context, organizationId string, domainId string, in *domain.OrganizationDomainUpdateIn) (*domain.OrganizationDomainUpdateOut, error)

OrganizationDomainUpdate provides a mock function for the type MockClient

func (*MockClient) OrganizationDomainVerify added in v0.129.0

func (_mock *MockClient) OrganizationDomainVerify(ctx context.Context, organizationId string, domainId string) (*domain.OrganizationDomainVerifyOut, error)

OrganizationDomainVerify provides a mock function for the type MockClient

func (*MockClient) OrganizationDomainsList added in v0.129.0

func (_mock *MockClient) OrganizationDomainsList(ctx context.Context, organizationId string) ([]domain.DomainOut, error)

OrganizationDomainsList provides a mock function for the type MockClient

func (*MockClient) OrganizationDomainsRemove added in v0.129.0

func (_mock *MockClient) OrganizationDomainsRemove(ctx context.Context, organizationId string, domainId string) error

OrganizationDomainsRemove provides a mock function for the type MockClient

func (*MockClient) OrganizationGet added in v0.129.0

func (_mock *MockClient) OrganizationGet(ctx context.Context, organizationId string) (*organization.OrganizationGetOut, error)

OrganizationGet provides a mock function for the type MockClient

func (*MockClient) OrganizationGovernanceAccessCreate added in v0.129.0

OrganizationGovernanceAccessCreate provides a mock function for the type MockClient

func (*MockClient) OrganizationGovernanceAccessDelete added in v0.129.0

func (_mock *MockClient) OrganizationGovernanceAccessDelete(ctx context.Context, organizationId string, accessId string) (string, error)

OrganizationGovernanceAccessDelete provides a mock function for the type MockClient

func (*MockClient) OrganizationGovernanceAccessGet added in v0.129.0

func (_mock *MockClient) OrganizationGovernanceAccessGet(ctx context.Context, organizationId string, accessId string) (*organizationgovernance.OrganizationGovernanceAccessGetOut, error)

OrganizationGovernanceAccessGet provides a mock function for the type MockClient

func (*MockClient) OrganizationGovernanceAccessList added in v0.129.0

func (_mock *MockClient) OrganizationGovernanceAccessList(ctx context.Context, organizationId string, query ...[2]string) (*organizationgovernance.OrganizationGovernanceAccessListOut, error)

OrganizationGovernanceAccessList provides a mock function for the type MockClient

func (*MockClient) OrganizationMemberGroupsList added in v0.129.0

func (_mock *MockClient) OrganizationMemberGroupsList(ctx context.Context, organizationId string, memberUserId string) ([]user.UserGroupOut, error)

OrganizationMemberGroupsList provides a mock function for the type MockClient

func (*MockClient) OrganizationProjectsCreate added in v0.129.0

OrganizationProjectsCreate provides a mock function for the type MockClient

func (*MockClient) OrganizationProjectsDelete added in v0.129.0

func (_mock *MockClient) OrganizationProjectsDelete(ctx context.Context, organizationId string, projectId string) error

OrganizationProjectsDelete provides a mock function for the type MockClient

func (*MockClient) OrganizationProjectsGet added in v0.129.0

func (_mock *MockClient) OrganizationProjectsGet(ctx context.Context, organizationId string, projectId string) (*organizationprojects.OrganizationProjectsGetOut, error)

OrganizationProjectsGet provides a mock function for the type MockClient

func (*MockClient) OrganizationProjectsList added in v0.129.0

func (_mock *MockClient) OrganizationProjectsList(ctx context.Context, organizationId string) (*organizationprojects.OrganizationProjectsListOut, error)

OrganizationProjectsList provides a mock function for the type MockClient

func (*MockClient) OrganizationProjectsUpdate added in v0.129.0

func (_mock *MockClient) OrganizationProjectsUpdate(ctx context.Context, organizationId string, projectId string, in *organizationprojects.OrganizationProjectsUpdateIn) (*organizationprojects.OrganizationProjectsUpdateOut, error)

OrganizationProjectsUpdate provides a mock function for the type MockClient

func (*MockClient) OrganizationUpdate added in v0.129.0

func (_mock *MockClient) OrganizationUpdate(ctx context.Context, organizationId string, in *organization.OrganizationUpdateIn) (*organization.OrganizationUpdateOut, error)

OrganizationUpdate provides a mock function for the type MockClient

func (*MockClient) OrganizationUserAuthenticationMethodsList added in v0.129.0

func (_mock *MockClient) OrganizationUserAuthenticationMethodsList(ctx context.Context, organizationId string, memberUserId string) ([]organizationuser.AuthenticationMethodOut, error)

OrganizationUserAuthenticationMethodsList provides a mock function for the type MockClient

func (*MockClient) OrganizationUserDelete added in v0.129.0

func (_mock *MockClient) OrganizationUserDelete(ctx context.Context, organizationId string, memberUserId string) error

OrganizationUserDelete provides a mock function for the type MockClient

func (*MockClient) OrganizationUserGet added in v0.129.0

func (_mock *MockClient) OrganizationUserGet(ctx context.Context, organizationId string, memberUserId string) (*organizationuser.OrganizationUserGetOut, error)

OrganizationUserGet provides a mock function for the type MockClient

func (*MockClient) OrganizationUserInvitationAccept added in v0.129.0

func (_mock *MockClient) OrganizationUserInvitationAccept(ctx context.Context, organizationId string, userEmail string, in *organizationuser.OrganizationUserInvitationAcceptIn) error

OrganizationUserInvitationAccept provides a mock function for the type MockClient

func (*MockClient) OrganizationUserInvitationDelete added in v0.129.0

func (_mock *MockClient) OrganizationUserInvitationDelete(ctx context.Context, organizationId string, userEmail string) error

OrganizationUserInvitationDelete provides a mock function for the type MockClient

func (*MockClient) OrganizationUserInvitationsList added in v0.129.0

func (_mock *MockClient) OrganizationUserInvitationsList(ctx context.Context, organizationId string) ([]organizationuser.InvitationOut, error)

OrganizationUserInvitationsList provides a mock function for the type MockClient

func (*MockClient) OrganizationUserInvite added in v0.129.0

func (_mock *MockClient) OrganizationUserInvite(ctx context.Context, organizationId string, in *organizationuser.OrganizationUserInviteIn) error

OrganizationUserInvite provides a mock function for the type MockClient

func (*MockClient) OrganizationUserList added in v0.129.0

func (_mock *MockClient) OrganizationUserList(ctx context.Context, organizationId string) ([]organizationuser.UserOut, error)

OrganizationUserList provides a mock function for the type MockClient

func (*MockClient) OrganizationUserPasswordReset added in v0.129.0

func (_mock *MockClient) OrganizationUserPasswordReset(ctx context.Context, organizationId string, memberUserId string) error

OrganizationUserPasswordReset provides a mock function for the type MockClient

func (*MockClient) OrganizationUserRevokeToken added in v0.129.0

func (_mock *MockClient) OrganizationUserRevokeToken(ctx context.Context, organizationId string, memberUserId string, tokenPrefix string) error

OrganizationUserRevokeToken provides a mock function for the type MockClient

func (*MockClient) OrganizationUserTokensList added in v0.129.0

func (_mock *MockClient) OrganizationUserTokensList(ctx context.Context, organizationId string, memberUserId string) ([]organizationuser.TokenOut, error)

OrganizationUserTokensList provides a mock function for the type MockClient

func (*MockClient) OrganizationUserUpdate added in v0.129.0

func (_mock *MockClient) OrganizationUserUpdate(ctx context.Context, organizationId string, memberUserId string, in *organizationuser.OrganizationUserUpdateIn) (*organizationuser.OrganizationUserUpdateOut, error)

OrganizationUserUpdate provides a mock function for the type MockClient

func (*MockClient) OrganizationVpcCreate added in v0.129.0

func (_mock *MockClient) OrganizationVpcCreate(ctx context.Context, organizationId string, in *organizationvpc.OrganizationVpcCreateIn) (*organizationvpc.OrganizationVpcCreateOut, error)

OrganizationVpcCreate provides a mock function for the type MockClient

func (*MockClient) OrganizationVpcDelete added in v0.129.0

func (_mock *MockClient) OrganizationVpcDelete(ctx context.Context, organizationId string, organizationVpcId string) (*organizationvpc.OrganizationVpcDeleteOut, error)

OrganizationVpcDelete provides a mock function for the type MockClient

func (*MockClient) OrganizationVpcGet added in v0.129.0

func (_mock *MockClient) OrganizationVpcGet(ctx context.Context, organizationId string, organizationVpcId string) (*organizationvpc.OrganizationVpcGetOut, error)

OrganizationVpcGet provides a mock function for the type MockClient

func (*MockClient) OrganizationVpcList added in v0.129.0

func (_mock *MockClient) OrganizationVpcList(ctx context.Context, organizationId string) ([]organizationvpc.VpcOut, error)

OrganizationVpcList provides a mock function for the type MockClient

func (*MockClient) OrganizationVpcPeeringConnectionCreate added in v0.129.0

func (_mock *MockClient) OrganizationVpcPeeringConnectionCreate(ctx context.Context, organizationId string, organizationVpcId string, in *organizationvpc.OrganizationVpcPeeringConnectionCreateIn) (*organizationvpc.OrganizationVpcPeeringConnectionCreateOut, error)

OrganizationVpcPeeringConnectionCreate provides a mock function for the type MockClient

func (*MockClient) OrganizationVpcPeeringConnectionDeleteById added in v0.129.0

func (_mock *MockClient) OrganizationVpcPeeringConnectionDeleteById(ctx context.Context, organizationId string, organizationVpcId string, peeringConnectionId string) (*organizationvpc.OrganizationVpcPeeringConnectionDeleteByIdOut, error)

OrganizationVpcPeeringConnectionDeleteById provides a mock function for the type MockClient

func (*MockClient) PGServiceAvailableExtensions added in v0.129.0

func (_mock *MockClient) PGServiceAvailableExtensions(ctx context.Context, project1 string, serviceName string) ([]postgresql.ExtensionOut, error)

PGServiceAvailableExtensions provides a mock function for the type MockClient

func (*MockClient) PGServiceQueryStatistics added in v0.129.0

func (_mock *MockClient) PGServiceQueryStatistics(ctx context.Context, project1 string, serviceName string, in *postgresql.PgserviceQueryStatisticsIn) ([]postgresql.QueryOut, error)

PGServiceQueryStatistics provides a mock function for the type MockClient

func (*MockClient) PermissionsGet added in v0.129.0

func (_mock *MockClient) PermissionsGet(ctx context.Context, organizationId string, resourceType organization.ResourceType, resourceId string) ([]organization.PermissionOut, error)

PermissionsGet provides a mock function for the type MockClient

func (*MockClient) PermissionsSet added in v0.129.0

func (_mock *MockClient) PermissionsSet(ctx context.Context, organizationId string, resourceType organization.ResourceType, resourceId string, in *organization.PermissionsSetIn) error

PermissionsSet provides a mock function for the type MockClient

func (*MockClient) PermissionsUpdate added in v0.129.0

func (_mock *MockClient) PermissionsUpdate(ctx context.Context, organizationId string, resourceType organization.ResourceType, resourceId string, in *organization.PermissionsUpdateIn) error

PermissionsUpdate provides a mock function for the type MockClient

func (*MockClient) PgAvailableExtensions added in v0.129.0

func (_mock *MockClient) PgAvailableExtensions(ctx context.Context, tenant string) ([]postgresql.PgOut, error)

PgAvailableExtensions provides a mock function for the type MockClient

func (*MockClient) ProjectAlertsList added in v0.129.0

func (_mock *MockClient) ProjectAlertsList(ctx context.Context, project1 string) ([]project.AlertOut, error)

ProjectAlertsList provides a mock function for the type MockClient

func (*MockClient) ProjectCreate added in v0.129.0

func (_mock *MockClient) ProjectCreate(ctx context.Context, in *project.ProjectCreateIn) (*project.ProjectCreateOut, error)

ProjectCreate provides a mock function for the type MockClient

func (*MockClient) ProjectCreditsClaim added in v0.129.0

ProjectCreditsClaim provides a mock function for the type MockClient

func (*MockClient) ProjectCreditsList added in v0.129.0

func (_mock *MockClient) ProjectCreditsList(ctx context.Context, project1 string) ([]projectbilling.CreditOut, error)

ProjectCreditsList provides a mock function for the type MockClient

func (*MockClient) ProjectDelete added in v0.129.0

func (_mock *MockClient) ProjectDelete(ctx context.Context, project1 string) error

ProjectDelete provides a mock function for the type MockClient

func (*MockClient) ProjectGenerateSbomDownloadUrl added in v0.129.0

func (_mock *MockClient) ProjectGenerateSbomDownloadUrl(ctx context.Context, project1 string, fileFormat string) (string, error)

ProjectGenerateSbomDownloadUrl provides a mock function for the type MockClient

func (*MockClient) ProjectGet added in v0.129.0

func (_mock *MockClient) ProjectGet(ctx context.Context, project1 string) (*project.ProjectGetOut, error)

ProjectGet provides a mock function for the type MockClient

func (*MockClient) ProjectGetEventLogs added in v0.129.0

func (_mock *MockClient) ProjectGetEventLogs(ctx context.Context, project1 string) ([]project.EventOut, error)

ProjectGetEventLogs provides a mock function for the type MockClient

func (*MockClient) ProjectGetServiceLogs added in v0.129.0

func (_mock *MockClient) ProjectGetServiceLogs(ctx context.Context, project1 string, serviceName string, in *service.ProjectGetServiceLogsIn) (*service.ProjectGetServiceLogsOut, error)

ProjectGetServiceLogs provides a mock function for the type MockClient

func (*MockClient) ProjectInvite added in v0.129.0

func (_mock *MockClient) ProjectInvite(ctx context.Context, project1 string, in *project.ProjectInviteIn) error

ProjectInvite provides a mock function for the type MockClient

func (*MockClient) ProjectInviteAccept added in v0.129.0

func (_mock *MockClient) ProjectInviteAccept(ctx context.Context, project1 string, inviteVerificationCode string) (*project.ProjectInviteAcceptOut, error)

ProjectInviteAccept provides a mock function for the type MockClient

func (*MockClient) ProjectInviteDelete added in v0.129.0

func (_mock *MockClient) ProjectInviteDelete(ctx context.Context, project1 string, invitedEmail string) error

ProjectInviteDelete provides a mock function for the type MockClient

func (*MockClient) ProjectInvoiceList added in v0.129.0

func (_mock *MockClient) ProjectInvoiceList(ctx context.Context, project1 string) ([]projectbilling.InvoiceOut, error)

ProjectInvoiceList provides a mock function for the type MockClient

func (*MockClient) ProjectKmsGetCA added in v0.129.0

func (_mock *MockClient) ProjectKmsGetCA(ctx context.Context, project1 string) (string, error)

ProjectKmsGetCA provides a mock function for the type MockClient

func (*MockClient) ProjectList added in v0.129.0

func (_mock *MockClient) ProjectList(ctx context.Context) (*project.ProjectListOut, error)

ProjectList provides a mock function for the type MockClient

func (*MockClient) ProjectPrivatelinkAvailabilityList added in v0.129.0

func (_mock *MockClient) ProjectPrivatelinkAvailabilityList(ctx context.Context, project1 string) ([]project.PrivatelinkAvailabilityOut, error)

ProjectPrivatelinkAvailabilityList provides a mock function for the type MockClient

func (*MockClient) ProjectServicePlanList added in v0.129.0

func (_mock *MockClient) ProjectServicePlanList(ctx context.Context, project1 string, serviceType string) ([]project.ServicePlanOut, error)

ProjectServicePlanList provides a mock function for the type MockClient

func (*MockClient) ProjectServicePlanPriceGet added in v0.129.0

func (_mock *MockClient) ProjectServicePlanPriceGet(ctx context.Context, project1 string, serviceType string, servicePlan string, cloud1 string) (*project.ProjectServicePlanPriceGetOut, error)

ProjectServicePlanPriceGet provides a mock function for the type MockClient

func (*MockClient) ProjectServicePlanSpecsGet added in v0.129.0

func (_mock *MockClient) ProjectServicePlanSpecsGet(ctx context.Context, project1 string, serviceType string, servicePlan string) (*project.ProjectServicePlanSpecsGetOut, error)

ProjectServicePlanSpecsGet provides a mock function for the type MockClient

func (*MockClient) ProjectServiceTagsList added in v0.129.0

func (_mock *MockClient) ProjectServiceTagsList(ctx context.Context, project1 string, serviceName string) (map[string]string, error)

ProjectServiceTagsList provides a mock function for the type MockClient

func (*MockClient) ProjectServiceTagsReplace added in v0.129.0

func (_mock *MockClient) ProjectServiceTagsReplace(ctx context.Context, project1 string, serviceName string, in *service.ProjectServiceTagsReplaceIn) error

ProjectServiceTagsReplace provides a mock function for the type MockClient

func (*MockClient) ProjectServiceTagsUpdate added in v0.129.0

func (_mock *MockClient) ProjectServiceTagsUpdate(ctx context.Context, project1 string, serviceName string, in *service.ProjectServiceTagsUpdateIn) error

ProjectServiceTagsUpdate provides a mock function for the type MockClient

func (*MockClient) ProjectServiceTypesGet added in v0.129.0

func (_mock *MockClient) ProjectServiceTypesGet(ctx context.Context, project1 string, serviceType string) (*project.ProjectServiceTypesGetOut, error)

ProjectServiceTypesGet provides a mock function for the type MockClient

func (*MockClient) ProjectServiceTypesList added in v0.129.0

func (_mock *MockClient) ProjectServiceTypesList(ctx context.Context, project1 string) (*project.ProjectServiceTypesListOut, error)

ProjectServiceTypesList provides a mock function for the type MockClient

func (*MockClient) ProjectStaticIPAssociate added in v0.129.0

func (_mock *MockClient) ProjectStaticIPAssociate(ctx context.Context, project1 string, staticIpAddressId string, in *staticip.ProjectStaticIpassociateIn) (*staticip.ProjectStaticIpassociateOut, error)

ProjectStaticIPAssociate provides a mock function for the type MockClient

func (*MockClient) ProjectStaticIPAvailabilityList added in v0.129.0

func (_mock *MockClient) ProjectStaticIPAvailabilityList(ctx context.Context, project1 string) ([]staticip.StaticIpAddressAvailabilityOut, error)

ProjectStaticIPAvailabilityList provides a mock function for the type MockClient

func (*MockClient) ProjectStaticIPDissociate added in v0.129.0

func (_mock *MockClient) ProjectStaticIPDissociate(ctx context.Context, project1 string, staticIpAddressId string) (*staticip.ProjectStaticIpdissociateOut, error)

ProjectStaticIPDissociate provides a mock function for the type MockClient

func (*MockClient) ProjectStaticIPPatch added in v0.129.0

func (_mock *MockClient) ProjectStaticIPPatch(ctx context.Context, project1 string, staticIpAddressId string, in *staticip.ProjectStaticIppatchIn) (*staticip.ProjectStaticIppatchOut, error)

ProjectStaticIPPatch provides a mock function for the type MockClient

func (*MockClient) ProjectTagsList added in v0.129.0

func (_mock *MockClient) ProjectTagsList(ctx context.Context, project1 string) (map[string]string, error)

ProjectTagsList provides a mock function for the type MockClient

func (*MockClient) ProjectTagsReplace added in v0.129.0

func (_mock *MockClient) ProjectTagsReplace(ctx context.Context, project1 string, in *project.ProjectTagsReplaceIn) error

ProjectTagsReplace provides a mock function for the type MockClient

func (*MockClient) ProjectTagsUpdate added in v0.129.0

func (_mock *MockClient) ProjectTagsUpdate(ctx context.Context, project1 string, in *project.ProjectTagsUpdateIn) error

ProjectTagsUpdate provides a mock function for the type MockClient

func (*MockClient) ProjectUpdate added in v0.129.0

func (_mock *MockClient) ProjectUpdate(ctx context.Context, project1 string, in *project.ProjectUpdateIn) (*project.ProjectUpdateOut, error)

ProjectUpdate provides a mock function for the type MockClient

func (*MockClient) ProjectUserList added in v0.129.0

func (_mock *MockClient) ProjectUserList(ctx context.Context, project1 string) (*project.ProjectUserListOut, error)

ProjectUserList provides a mock function for the type MockClient

func (*MockClient) ProjectUserRemove added in v0.129.0

func (_mock *MockClient) ProjectUserRemove(ctx context.Context, project1 string, userEmail string) error

ProjectUserRemove provides a mock function for the type MockClient

func (*MockClient) ProjectUserUpdate added in v0.129.0

func (_mock *MockClient) ProjectUserUpdate(ctx context.Context, project1 string, userEmail string, in *project.ProjectUserUpdateIn) error

ProjectUserUpdate provides a mock function for the type MockClient

func (*MockClient) PublicPrivatelinkAvailabilityList added in v0.129.0

func (_mock *MockClient) PublicPrivatelinkAvailabilityList(ctx context.Context, tenant string) ([]privatelink.PrivatelinkAvailabilityOut, error)

PublicPrivatelinkAvailabilityList provides a mock function for the type MockClient

func (*MockClient) PublicStaticIPAvailabilityList added in v0.129.0

func (_mock *MockClient) PublicStaticIPAvailabilityList(ctx context.Context, tenant string) ([]staticip.StaticIpAddressAvailabilityOut, error)

PublicStaticIPAvailabilityList provides a mock function for the type MockClient

func (*MockClient) ServiceAlertsList added in v0.129.0

func (_mock *MockClient) ServiceAlertsList(ctx context.Context, project1 string, serviceName string) ([]service.AlertOut, error)

ServiceAlertsList provides a mock function for the type MockClient

func (*MockClient) ServiceBackupToAnotherRegionReport added in v0.129.0

func (_mock *MockClient) ServiceBackupToAnotherRegionReport(ctx context.Context, project1 string, serviceName string, in *service.ServiceBackupToAnotherRegionReportIn) (map[string]any, error)

ServiceBackupToAnotherRegionReport provides a mock function for the type MockClient

func (*MockClient) ServiceBackupsGet added in v0.129.0

func (_mock *MockClient) ServiceBackupsGet(ctx context.Context, project1 string, serviceName string) (*service.ServiceBackupsGetOut, error)

ServiceBackupsGet provides a mock function for the type MockClient

func (*MockClient) ServiceCancelQuery added in v0.129.0

func (_mock *MockClient) ServiceCancelQuery(ctx context.Context, project1 string, serviceName string, in *service.ServiceCancelQueryIn) (bool, error)

ServiceCancelQuery provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseCurrentQueries added in v0.129.0

func (_mock *MockClient) ServiceClickHouseCurrentQueries(ctx context.Context, project1 string, serviceName string) ([]clickhouse.QueryOut, error)

ServiceClickHouseCurrentQueries provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseDatabaseCreate added in v0.129.0

func (_mock *MockClient) ServiceClickHouseDatabaseCreate(ctx context.Context, project1 string, serviceName string, in *clickhouse.ServiceClickHouseDatabaseCreateIn) error

ServiceClickHouseDatabaseCreate provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseDatabaseDelete added in v0.129.0

func (_mock *MockClient) ServiceClickHouseDatabaseDelete(ctx context.Context, project1 string, serviceName string, database string) error

ServiceClickHouseDatabaseDelete provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseDatabaseList added in v0.129.0

func (_mock *MockClient) ServiceClickHouseDatabaseList(ctx context.Context, project1 string, serviceName string) ([]clickhouse.DatabaseOut, error)

ServiceClickHouseDatabaseList provides a mock function for the type MockClient

func (*MockClient) ServiceClickHousePasswordReset added in v0.129.0

func (_mock *MockClient) ServiceClickHousePasswordReset(ctx context.Context, project1 string, serviceName string, userUuid string, in *clickhouse.ServiceClickHousePasswordResetIn) (string, error)

ServiceClickHousePasswordReset provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseQuery added in v0.129.0

func (_mock *MockClient) ServiceClickHouseQuery(ctx context.Context, project1 string, serviceName string, in *clickhouse.ServiceClickHouseQueryIn) (*clickhouse.ServiceClickHouseQueryOut, error)

ServiceClickHouseQuery provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseQueryStats added in v0.129.0

func (_mock *MockClient) ServiceClickHouseQueryStats(ctx context.Context, project1 string, serviceName string, query ...[2]string) ([]clickhouse.ServiceClickHouseQueryStatsOut, error)

ServiceClickHouseQueryStats provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseTieredStorageSummary added in v0.129.0

func (_mock *MockClient) ServiceClickHouseTieredStorageSummary(ctx context.Context, project1 string, serviceName string) (*clickhouse.ServiceClickHouseTieredStorageSummaryOut, error)

ServiceClickHouseTieredStorageSummary provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseUserCreate added in v0.129.0

func (_mock *MockClient) ServiceClickHouseUserCreate(ctx context.Context, project1 string, serviceName string, in *clickhouse.ServiceClickHouseUserCreateIn) (*clickhouse.ServiceClickHouseUserCreateOut, error)

ServiceClickHouseUserCreate provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseUserDelete added in v0.129.0

func (_mock *MockClient) ServiceClickHouseUserDelete(ctx context.Context, project1 string, serviceName string, userUuid string) error

ServiceClickHouseUserDelete provides a mock function for the type MockClient

func (*MockClient) ServiceClickHouseUserList added in v0.129.0

func (_mock *MockClient) ServiceClickHouseUserList(ctx context.Context, project1 string, serviceName string) ([]clickhouse.UserOut, error)

ServiceClickHouseUserList provides a mock function for the type MockClient

func (*MockClient) ServiceCreate added in v0.129.0

func (_mock *MockClient) ServiceCreate(ctx context.Context, project1 string, in *service.ServiceCreateIn) (*service.ServiceCreateOut, error)

ServiceCreate provides a mock function for the type MockClient

func (*MockClient) ServiceDatabaseCreate added in v0.129.0

func (_mock *MockClient) ServiceDatabaseCreate(ctx context.Context, project1 string, serviceName string, in *service.ServiceDatabaseCreateIn) error

ServiceDatabaseCreate provides a mock function for the type MockClient

func (*MockClient) ServiceDatabaseDelete added in v0.129.0

func (_mock *MockClient) ServiceDatabaseDelete(ctx context.Context, project1 string, serviceName string, dbname string) error

ServiceDatabaseDelete provides a mock function for the type MockClient

func (*MockClient) ServiceDatabaseList added in v0.129.0

func (_mock *MockClient) ServiceDatabaseList(ctx context.Context, project1 string, serviceName string) ([]service.DatabaseOut, error)

ServiceDatabaseList provides a mock function for the type MockClient

func (*MockClient) ServiceDelete added in v0.129.0

func (_mock *MockClient) ServiceDelete(ctx context.Context, project1 string, serviceName string) error

ServiceDelete provides a mock function for the type MockClient

func (*MockClient) ServiceEnableWrites added in v0.129.0

func (_mock *MockClient) ServiceEnableWrites(ctx context.Context, project1 string, serviceName string) (*string, error)

ServiceEnableWrites provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkCancelApplicationDeployment added in v0.129.0

func (_mock *MockClient) ServiceFlinkCancelApplicationDeployment(ctx context.Context, project1 string, serviceName string, applicationId string, deploymentId string) (*flinkapplicationdeployment.ServiceFlinkCancelApplicationDeploymentOut, error)

ServiceFlinkCancelApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkCancelJarApplicationDeployment added in v0.129.0

func (_mock *MockClient) ServiceFlinkCancelJarApplicationDeployment(ctx context.Context, project1 string, serviceName string, applicationId string, deploymentId string) (*flinkjarapplicationdeployment.ServiceFlinkCancelJarApplicationDeploymentOut, error)

ServiceFlinkCancelJarApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkCreateApplication added in v0.129.0

func (_mock *MockClient) ServiceFlinkCreateApplication(ctx context.Context, project1 string, serviceName string, in *flinkapplication.ServiceFlinkCreateApplicationIn) (*flinkapplication.ServiceFlinkCreateApplicationOut, error)

ServiceFlinkCreateApplication provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkCreateApplicationDeployment added in v0.129.0

ServiceFlinkCreateApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkCreateApplicationVersion added in v0.129.0

func (_mock *MockClient) ServiceFlinkCreateApplicationVersion(ctx context.Context, project1 string, serviceName string, applicationId string, in *flinkapplicationversion.ServiceFlinkCreateApplicationVersionIn) (*flinkapplicationversion.ServiceFlinkCreateApplicationVersionOut, error)

ServiceFlinkCreateApplicationVersion provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkCreateJarApplication added in v0.129.0

ServiceFlinkCreateJarApplication provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkCreateJarApplicationDeployment added in v0.129.0

ServiceFlinkCreateJarApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkCreateJarApplicationVersion added in v0.129.0

func (_mock *MockClient) ServiceFlinkCreateJarApplicationVersion(ctx context.Context, project1 string, serviceName string, applicationId string) (*flinkjarapplicationversion.ServiceFlinkCreateJarApplicationVersionOut, error)

ServiceFlinkCreateJarApplicationVersion provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkDeleteApplication added in v0.129.0

func (_mock *MockClient) ServiceFlinkDeleteApplication(ctx context.Context, project1 string, serviceName string, applicationId string) (*flinkapplication.ServiceFlinkDeleteApplicationOut, error)

ServiceFlinkDeleteApplication provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkDeleteApplicationDeployment added in v0.129.0

func (_mock *MockClient) ServiceFlinkDeleteApplicationDeployment(ctx context.Context, project1 string, serviceName string, applicationId string, deploymentId string) (*flinkapplicationdeployment.ServiceFlinkDeleteApplicationDeploymentOut, error)

ServiceFlinkDeleteApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkDeleteApplicationVersion added in v0.129.0

func (_mock *MockClient) ServiceFlinkDeleteApplicationVersion(ctx context.Context, project1 string, serviceName string, applicationId string, applicationVersionId string) (*flinkapplicationversion.ServiceFlinkDeleteApplicationVersionOut, error)

ServiceFlinkDeleteApplicationVersion provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkDeleteJarApplication added in v0.129.0

func (_mock *MockClient) ServiceFlinkDeleteJarApplication(ctx context.Context, project1 string, serviceName string, applicationId string) (*flinkjarapplication.ServiceFlinkDeleteJarApplicationOut, error)

ServiceFlinkDeleteJarApplication provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkDeleteJarApplicationDeployment added in v0.129.0

func (_mock *MockClient) ServiceFlinkDeleteJarApplicationDeployment(ctx context.Context, project1 string, serviceName string, applicationId string, deploymentId string) (*flinkjarapplicationdeployment.ServiceFlinkDeleteJarApplicationDeploymentOut, error)

ServiceFlinkDeleteJarApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkDeleteJarApplicationVersion added in v0.129.0

func (_mock *MockClient) ServiceFlinkDeleteJarApplicationVersion(ctx context.Context, project1 string, serviceName string, applicationId string, applicationVersionId string) (*flinkjarapplicationversion.ServiceFlinkDeleteJarApplicationVersionOut, error)

ServiceFlinkDeleteJarApplicationVersion provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkGetApplication added in v0.129.0

func (_mock *MockClient) ServiceFlinkGetApplication(ctx context.Context, project1 string, serviceName string, applicationId string) (*flinkapplication.ServiceFlinkGetApplicationOut, error)

ServiceFlinkGetApplication provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkGetApplicationDeployment added in v0.129.0

func (_mock *MockClient) ServiceFlinkGetApplicationDeployment(ctx context.Context, project1 string, serviceName string, applicationId string, deploymentId string) (*flinkapplicationdeployment.ServiceFlinkGetApplicationDeploymentOut, error)

ServiceFlinkGetApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkGetApplicationVersion added in v0.129.0

func (_mock *MockClient) ServiceFlinkGetApplicationVersion(ctx context.Context, project1 string, serviceName string, applicationId string, applicationVersionId string) (*flinkapplicationversion.ServiceFlinkGetApplicationVersionOut, error)

ServiceFlinkGetApplicationVersion provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkGetJarApplication added in v0.129.0

func (_mock *MockClient) ServiceFlinkGetJarApplication(ctx context.Context, project1 string, serviceName string, applicationId string) (*flinkjarapplication.ServiceFlinkGetJarApplicationOut, error)

ServiceFlinkGetJarApplication provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkGetJarApplicationDeployment added in v0.129.0

func (_mock *MockClient) ServiceFlinkGetJarApplicationDeployment(ctx context.Context, project1 string, serviceName string, applicationId string, deploymentId string) (*flinkjarapplicationdeployment.ServiceFlinkGetJarApplicationDeploymentOut, error)

ServiceFlinkGetJarApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkGetJarApplicationVersion added in v0.129.0

func (_mock *MockClient) ServiceFlinkGetJarApplicationVersion(ctx context.Context, project1 string, serviceName string, applicationId string, applicationVersionId string) (*flinkjarapplicationversion.ServiceFlinkGetJarApplicationVersionOut, error)

ServiceFlinkGetJarApplicationVersion provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkJobDetails added in v0.129.0

func (_mock *MockClient) ServiceFlinkJobDetails(ctx context.Context, project1 string, serviceName string, jobId string) (*flinkjob.ServiceFlinkJobDetailsOut, error)

ServiceFlinkJobDetails provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkJobsList added in v0.129.0

func (_mock *MockClient) ServiceFlinkJobsList(ctx context.Context, project1 string, serviceName string) ([]flinkjob.JobOut, error)

ServiceFlinkJobsList provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkListApplicationDeployments added in v0.129.0

func (_mock *MockClient) ServiceFlinkListApplicationDeployments(ctx context.Context, project1 string, serviceName string, applicationId string) ([]flinkapplicationdeployment.DeploymentOut, error)

ServiceFlinkListApplicationDeployments provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkListApplications added in v0.129.0

func (_mock *MockClient) ServiceFlinkListApplications(ctx context.Context, project1 string, serviceName string) ([]flinkapplication.ApplicationOut, error)

ServiceFlinkListApplications provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkListJarApplicationDeployments added in v0.129.0

func (_mock *MockClient) ServiceFlinkListJarApplicationDeployments(ctx context.Context, project1 string, serviceName string, applicationId string) ([]flinkjarapplicationdeployment.DeploymentOut, error)

ServiceFlinkListJarApplicationDeployments provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkListJarApplications added in v0.129.0

func (_mock *MockClient) ServiceFlinkListJarApplications(ctx context.Context, project1 string, serviceName string) ([]flinkjarapplication.ApplicationOut, error)

ServiceFlinkListJarApplications provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkOverview added in v0.129.0

func (_mock *MockClient) ServiceFlinkOverview(ctx context.Context, project1 string, serviceName string) (*flink.ServiceFlinkOverviewOut, error)

ServiceFlinkOverview provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkStopApplicationDeployment added in v0.129.0

func (_mock *MockClient) ServiceFlinkStopApplicationDeployment(ctx context.Context, project1 string, serviceName string, applicationId string, deploymentId string) (*flinkapplicationdeployment.ServiceFlinkStopApplicationDeploymentOut, error)

ServiceFlinkStopApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkStopJarApplicationDeployment added in v0.129.0

func (_mock *MockClient) ServiceFlinkStopJarApplicationDeployment(ctx context.Context, project1 string, serviceName string, applicationId string, deploymentId string) (*flinkjarapplicationdeployment.ServiceFlinkStopJarApplicationDeploymentOut, error)

ServiceFlinkStopJarApplicationDeployment provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkUpdateApplication added in v0.129.0

func (_mock *MockClient) ServiceFlinkUpdateApplication(ctx context.Context, project1 string, serviceName string, applicationId string, in *flinkapplication.ServiceFlinkUpdateApplicationIn) (*flinkapplication.ServiceFlinkUpdateApplicationOut, error)

ServiceFlinkUpdateApplication provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkUpdateJarApplication added in v0.129.0

func (_mock *MockClient) ServiceFlinkUpdateJarApplication(ctx context.Context, project1 string, serviceName string, applicationId string, in *flinkjarapplication.ServiceFlinkUpdateJarApplicationIn) (*flinkjarapplication.ServiceFlinkUpdateJarApplicationOut, error)

ServiceFlinkUpdateJarApplication provides a mock function for the type MockClient

func (*MockClient) ServiceFlinkValidateApplicationVersion added in v0.129.0

func (_mock *MockClient) ServiceFlinkValidateApplicationVersion(ctx context.Context, project1 string, serviceName string, applicationId string, in *flinkapplicationversion.ServiceFlinkValidateApplicationVersionIn) (*flinkapplicationversion.ServiceFlinkValidateApplicationVersionOut, error)

ServiceFlinkValidateApplicationVersion provides a mock function for the type MockClient

func (*MockClient) ServiceGet added in v0.129.0

func (_mock *MockClient) ServiceGet(ctx context.Context, project1 string, serviceName string, query ...[2]string) (*service.ServiceGetOut, error)

ServiceGet provides a mock function for the type MockClient

func (*MockClient) ServiceGetMigrationStatus added in v0.129.0

func (_mock *MockClient) ServiceGetMigrationStatus(ctx context.Context, project1 string, serviceName string) (*service.ServiceGetMigrationStatusOut, error)

ServiceGetMigrationStatus provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationCreate added in v0.129.0

func (_mock *MockClient) ServiceIntegrationCreate(ctx context.Context, project1 string, in *service.ServiceIntegrationCreateIn) (*service.ServiceIntegrationCreateOut, error)

ServiceIntegrationCreate provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationDelete added in v0.129.0

func (_mock *MockClient) ServiceIntegrationDelete(ctx context.Context, project1 string, integrationId string) error

ServiceIntegrationDelete provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationEndpointCreate added in v0.129.0

func (_mock *MockClient) ServiceIntegrationEndpointCreate(ctx context.Context, project1 string, in *service.ServiceIntegrationEndpointCreateIn) (*service.ServiceIntegrationEndpointCreateOut, error)

ServiceIntegrationEndpointCreate provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationEndpointDelete added in v0.129.0

func (_mock *MockClient) ServiceIntegrationEndpointDelete(ctx context.Context, project1 string, integrationEndpointId string) error

ServiceIntegrationEndpointDelete provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationEndpointGet added in v0.129.0

func (_mock *MockClient) ServiceIntegrationEndpointGet(ctx context.Context, project1 string, integrationEndpointId string, query ...[2]string) (*service.ServiceIntegrationEndpointGetOut, error)

ServiceIntegrationEndpointGet provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationEndpointList added in v0.129.0

func (_mock *MockClient) ServiceIntegrationEndpointList(ctx context.Context, project1 string) ([]service.ServiceIntegrationEndpointOut, error)

ServiceIntegrationEndpointList provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationEndpointTypes added in v0.129.0

func (_mock *MockClient) ServiceIntegrationEndpointTypes(ctx context.Context, project1 string) ([]service.EndpointTypeOut, error)

ServiceIntegrationEndpointTypes provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationEndpointUpdate added in v0.129.0

func (_mock *MockClient) ServiceIntegrationEndpointUpdate(ctx context.Context, project1 string, integrationEndpointId string, in *service.ServiceIntegrationEndpointUpdateIn) (*service.ServiceIntegrationEndpointUpdateOut, error)

ServiceIntegrationEndpointUpdate provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationGet added in v0.129.0

func (_mock *MockClient) ServiceIntegrationGet(ctx context.Context, project1 string, integrationId string) (*service.ServiceIntegrationGetOut, error)

ServiceIntegrationGet provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationList added in v0.129.0

func (_mock *MockClient) ServiceIntegrationList(ctx context.Context, project1 string, serviceName string) ([]service.ServiceIntegrationOut, error)

ServiceIntegrationList provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationTypes added in v0.129.0

func (_mock *MockClient) ServiceIntegrationTypes(ctx context.Context, project1 string) ([]service.IntegrationTypeOut, error)

ServiceIntegrationTypes provides a mock function for the type MockClient

func (*MockClient) ServiceIntegrationUpdate added in v0.129.0

func (_mock *MockClient) ServiceIntegrationUpdate(ctx context.Context, project1 string, integrationId string, in *service.ServiceIntegrationUpdateIn) (*service.ServiceIntegrationUpdateOut, error)

ServiceIntegrationUpdate provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaAclAdd added in v0.129.0

func (_mock *MockClient) ServiceKafkaAclAdd(ctx context.Context, project1 string, serviceName string, in *kafka.ServiceKafkaAclAddIn) ([]kafka.AclOut, error)

ServiceKafkaAclAdd provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaAclDelete added in v0.129.0

func (_mock *MockClient) ServiceKafkaAclDelete(ctx context.Context, project1 string, serviceName string, kafkaAclId string) ([]kafka.AclOut, error)

ServiceKafkaAclDelete provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaAclList added in v0.129.0

func (_mock *MockClient) ServiceKafkaAclList(ctx context.Context, project1 string, serviceName string) ([]kafka.AclOut, error)

ServiceKafkaAclList provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectCreateConnector added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectCreateConnector(ctx context.Context, project1 string, serviceName string, in map[string]any) (*kafkaconnect.ServiceKafkaConnectCreateConnectorOut, error)

ServiceKafkaConnectCreateConnector provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectDeleteConnector added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectDeleteConnector(ctx context.Context, project1 string, serviceName string, connectorName string) error

ServiceKafkaConnectDeleteConnector provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectEditConnector added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectEditConnector(ctx context.Context, project1 string, serviceName string, connectorName string, in map[string]any) (*kafkaconnect.ServiceKafkaConnectEditConnectorOut, error)

ServiceKafkaConnectEditConnector provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectGetAvailableConnectors added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectGetAvailableConnectors(ctx context.Context, project1 string, serviceName string) ([]kafkaconnect.ServiceKafkaConnectGetAvailableConnectorsOut, error)

ServiceKafkaConnectGetAvailableConnectors provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectGetConnectorConfiguration added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectGetConnectorConfiguration(ctx context.Context, project1 string, serviceName string, connectorName string) ([]kafkaconnect.ConfigurationSchemaOut, error)

ServiceKafkaConnectGetConnectorConfiguration provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectGetConnectorStatus added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectGetConnectorStatus(ctx context.Context, project1 string, serviceName string, connectorName string) (*kafkaconnect.ServiceKafkaConnectGetConnectorStatusOut, error)

ServiceKafkaConnectGetConnectorStatus provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectList added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectList(ctx context.Context, project1 string, serviceName string) ([]kafkaconnect.ConnectorOut, error)

ServiceKafkaConnectList provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectPauseConnector added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectPauseConnector(ctx context.Context, project1 string, serviceName string, connectorName string) error

ServiceKafkaConnectPauseConnector provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectRestartConnector added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectRestartConnector(ctx context.Context, project1 string, serviceName string, connectorName string) error

ServiceKafkaConnectRestartConnector provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectRestartConnectorTask added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectRestartConnectorTask(ctx context.Context, project1 string, serviceName string, connectorName string, taskId string) error

ServiceKafkaConnectRestartConnectorTask provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaConnectResumeConnector added in v0.129.0

func (_mock *MockClient) ServiceKafkaConnectResumeConnector(ctx context.Context, project1 string, serviceName string, connectorName string) error

ServiceKafkaConnectResumeConnector provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaMirrorMakerCreateReplicationFlow added in v0.129.0

func (_mock *MockClient) ServiceKafkaMirrorMakerCreateReplicationFlow(ctx context.Context, project1 string, serviceName string, in *kafkamirrormaker.ServiceKafkaMirrorMakerCreateReplicationFlowIn) error

ServiceKafkaMirrorMakerCreateReplicationFlow provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaMirrorMakerDeleteReplicationFlow added in v0.129.0

func (_mock *MockClient) ServiceKafkaMirrorMakerDeleteReplicationFlow(ctx context.Context, project1 string, serviceName string, sourceCluster string, targetCluster string) error

ServiceKafkaMirrorMakerDeleteReplicationFlow provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaMirrorMakerGetReplicationFlow added in v0.129.0

func (_mock *MockClient) ServiceKafkaMirrorMakerGetReplicationFlow(ctx context.Context, project1 string, serviceName string, sourceCluster string, targetCluster string) (*kafkamirrormaker.ServiceKafkaMirrorMakerGetReplicationFlowOut, error)

ServiceKafkaMirrorMakerGetReplicationFlow provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaMirrorMakerGetReplicationFlows added in v0.129.0

func (_mock *MockClient) ServiceKafkaMirrorMakerGetReplicationFlows(ctx context.Context, project1 string, serviceName string) ([]kafkamirrormaker.ReplicationFlowOut, error)

ServiceKafkaMirrorMakerGetReplicationFlows provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaMirrorMakerPatchReplicationFlow added in v0.129.0

func (_mock *MockClient) ServiceKafkaMirrorMakerPatchReplicationFlow(ctx context.Context, project1 string, serviceName string, sourceCluster string, targetCluster string, in *kafkamirrormaker.ServiceKafkaMirrorMakerPatchReplicationFlowIn) (*kafkamirrormaker.ServiceKafkaMirrorMakerPatchReplicationFlowOut, error)

ServiceKafkaMirrorMakerPatchReplicationFlow provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaNativeAclAdd added in v0.129.0

func (_mock *MockClient) ServiceKafkaNativeAclAdd(ctx context.Context, project1 string, serviceName string, in *kafka.ServiceKafkaNativeAclAddIn) (*kafka.ServiceKafkaNativeAclAddOut, error)

ServiceKafkaNativeAclAdd provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaNativeAclDelete added in v0.129.0

func (_mock *MockClient) ServiceKafkaNativeAclDelete(ctx context.Context, project1 string, serviceName string, kafkaAclId string) error

ServiceKafkaNativeAclDelete provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaNativeAclGet added in v0.129.0

func (_mock *MockClient) ServiceKafkaNativeAclGet(ctx context.Context, project1 string, serviceName string, kafkaAclId string) (*kafka.ServiceKafkaNativeAclGetOut, error)

ServiceKafkaNativeAclGet provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaNativeAclList added in v0.129.0

func (_mock *MockClient) ServiceKafkaNativeAclList(ctx context.Context, project1 string, serviceName string) (*kafka.ServiceKafkaNativeAclListOut, error)

ServiceKafkaNativeAclList provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaQuotaCreate added in v0.129.0

func (_mock *MockClient) ServiceKafkaQuotaCreate(ctx context.Context, project1 string, serviceName string, in *kafka.ServiceKafkaQuotaCreateIn) error

ServiceKafkaQuotaCreate provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaQuotaDelete added in v0.129.0

func (_mock *MockClient) ServiceKafkaQuotaDelete(ctx context.Context, project1 string, serviceName string, query ...[2]string) error

ServiceKafkaQuotaDelete provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaQuotaDescribe added in v0.129.0

func (_mock *MockClient) ServiceKafkaQuotaDescribe(ctx context.Context, project1 string, serviceName string, query ...[2]string) (*kafka.ServiceKafkaQuotaDescribeOut, error)

ServiceKafkaQuotaDescribe provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaQuotaList added in v0.129.0

func (_mock *MockClient) ServiceKafkaQuotaList(ctx context.Context, project1 string, serviceName string) ([]kafka.QuotaOut, error)

ServiceKafkaQuotaList provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTieredStorageStorageUsageByTopic added in v0.129.0

func (_mock *MockClient) ServiceKafkaTieredStorageStorageUsageByTopic(ctx context.Context, project1 string, serviceName string) (map[string]any, error)

ServiceKafkaTieredStorageStorageUsageByTopic provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTieredStorageStorageUsageTotal added in v0.129.0

func (_mock *MockClient) ServiceKafkaTieredStorageStorageUsageTotal(ctx context.Context, project1 string, serviceName string) (int, error)

ServiceKafkaTieredStorageStorageUsageTotal provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTieredStorageSummary added in v0.129.0

func (_mock *MockClient) ServiceKafkaTieredStorageSummary(ctx context.Context, project1 string, serviceName string) (*kafka.ServiceKafkaTieredStorageSummaryOut, error)

ServiceKafkaTieredStorageSummary provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTopicCreate added in v0.129.0

func (_mock *MockClient) ServiceKafkaTopicCreate(ctx context.Context, project1 string, serviceName string, in *kafkatopic.ServiceKafkaTopicCreateIn) error

ServiceKafkaTopicCreate provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTopicDelete added in v0.129.0

func (_mock *MockClient) ServiceKafkaTopicDelete(ctx context.Context, project1 string, serviceName string, topicName string) error

ServiceKafkaTopicDelete provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTopicGet added in v0.129.0

func (_mock *MockClient) ServiceKafkaTopicGet(ctx context.Context, project1 string, serviceName string, topicName string) (*kafkatopic.ServiceKafkaTopicGetOut, error)

ServiceKafkaTopicGet provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTopicList added in v0.129.0

func (_mock *MockClient) ServiceKafkaTopicList(ctx context.Context, project1 string, serviceName string) ([]kafkatopic.TopicOut, error)

ServiceKafkaTopicList provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTopicListV2 added in v0.129.0

func (_mock *MockClient) ServiceKafkaTopicListV2(ctx context.Context, project1 string, serviceName string, in *kafkatopic.ServiceKafkaTopicListV2In) ([]kafkatopic.ServiceKafkaTopicGetOut, error)

ServiceKafkaTopicListV2 provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTopicMessageList added in v0.129.0

func (_mock *MockClient) ServiceKafkaTopicMessageList(ctx context.Context, project1 string, serviceName string, topicName string, in *kafkatopic.ServiceKafkaTopicMessageListIn) ([]kafkatopic.MessageOut, error)

ServiceKafkaTopicMessageList provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTopicMessageProduce added in v0.129.0

func (_mock *MockClient) ServiceKafkaTopicMessageProduce(ctx context.Context, project1 string, serviceName string, topicName string, in *kafkatopic.ServiceKafkaTopicMessageProduceIn) (*kafkatopic.ServiceKafkaTopicMessageProduceOut, error)

ServiceKafkaTopicMessageProduce provides a mock function for the type MockClient

func (*MockClient) ServiceKafkaTopicUpdate added in v0.129.0

func (_mock *MockClient) ServiceKafkaTopicUpdate(ctx context.Context, project1 string, serviceName string, topicName string, in *kafkatopic.ServiceKafkaTopicUpdateIn) error

ServiceKafkaTopicUpdate provides a mock function for the type MockClient

func (*MockClient) ServiceKmsGetCA added in v0.129.0

func (_mock *MockClient) ServiceKmsGetCA(ctx context.Context, project1 string, serviceName string, caName string) (string, error)

ServiceKmsGetCA provides a mock function for the type MockClient

func (*MockClient) ServiceKmsGetKeypair added in v0.129.0

func (_mock *MockClient) ServiceKmsGetKeypair(ctx context.Context, project1 string, serviceName string, keypairName string) (*service.ServiceKmsGetKeypairOut, error)

ServiceKmsGetKeypair provides a mock function for the type MockClient

func (*MockClient) ServiceList added in v0.129.0

func (_mock *MockClient) ServiceList(ctx context.Context, project1 string, query ...[2]string) ([]service.ServiceOut, error)

ServiceList provides a mock function for the type MockClient

func (*MockClient) ServiceMaintenanceStart added in v0.129.0

func (_mock *MockClient) ServiceMaintenanceStart(ctx context.Context, project1 string, serviceName string) error

ServiceMaintenanceStart provides a mock function for the type MockClient

func (*MockClient) ServiceMetricsFetch added in v0.129.0

func (_mock *MockClient) ServiceMetricsFetch(ctx context.Context, project1 string, serviceName string, in *service.ServiceMetricsFetchIn) (map[string]any, error)

ServiceMetricsFetch provides a mock function for the type MockClient

func (*MockClient) ServiceOpenSearchAclGet added in v0.129.0

func (_mock *MockClient) ServiceOpenSearchAclGet(ctx context.Context, project1 string, serviceName string) (*opensearch.ServiceOpenSearchAclGetOut, error)

ServiceOpenSearchAclGet provides a mock function for the type MockClient

func (*MockClient) ServiceOpenSearchAclSet added in v0.129.0

func (_mock *MockClient) ServiceOpenSearchAclSet(ctx context.Context, project1 string, serviceName string, in *opensearch.ServiceOpenSearchAclSetIn) (*opensearch.ServiceOpenSearchAclSetOut, error)

ServiceOpenSearchAclSet provides a mock function for the type MockClient

func (*MockClient) ServiceOpenSearchAclUpdate added in v0.129.0

func (_mock *MockClient) ServiceOpenSearchAclUpdate(ctx context.Context, project1 string, serviceName string, in *opensearch.ServiceOpenSearchAclUpdateIn) (*opensearch.ServiceOpenSearchAclUpdateOut, error)

ServiceOpenSearchAclUpdate provides a mock function for the type MockClient

func (*MockClient) ServiceOpenSearchIndexDelete added in v0.129.0

func (_mock *MockClient) ServiceOpenSearchIndexDelete(ctx context.Context, project1 string, serviceName string, indexPattern string) error

ServiceOpenSearchIndexDelete provides a mock function for the type MockClient

func (*MockClient) ServiceOpenSearchIndexList added in v0.129.0

func (_mock *MockClient) ServiceOpenSearchIndexList(ctx context.Context, project1 string, serviceName string) ([]opensearch.IndexeOut, error)

ServiceOpenSearchIndexList provides a mock function for the type MockClient

func (*MockClient) ServiceOpenSearchSecurityGet added in v0.129.0

func (_mock *MockClient) ServiceOpenSearchSecurityGet(ctx context.Context, project1 string, serviceName string) (*opensearch.ServiceOpenSearchSecurityGetOut, error)

ServiceOpenSearchSecurityGet provides a mock function for the type MockClient

func (*MockClient) ServiceOpenSearchSecurityReset added in v0.129.0

func (_mock *MockClient) ServiceOpenSearchSecurityReset(ctx context.Context, project1 string, serviceName string, in *opensearch.ServiceOpenSearchSecurityResetIn) (*opensearch.ServiceOpenSearchSecurityResetOut, error)

ServiceOpenSearchSecurityReset provides a mock function for the type MockClient

func (*MockClient) ServiceOpenSearchSecuritySet added in v0.129.0

func (_mock *MockClient) ServiceOpenSearchSecuritySet(ctx context.Context, project1 string, serviceName string, in *opensearch.ServiceOpenSearchSecuritySetIn) (*opensearch.ServiceOpenSearchSecuritySetOut, error)

ServiceOpenSearchSecuritySet provides a mock function for the type MockClient

func (*MockClient) ServicePGBouncerCreate added in v0.129.0

func (_mock *MockClient) ServicePGBouncerCreate(ctx context.Context, project1 string, serviceName string, in *postgresql.ServicePgbouncerCreateIn) error

ServicePGBouncerCreate provides a mock function for the type MockClient

func (*MockClient) ServicePGBouncerDelete added in v0.129.0

func (_mock *MockClient) ServicePGBouncerDelete(ctx context.Context, project1 string, serviceName string, poolName string) error

ServicePGBouncerDelete provides a mock function for the type MockClient

func (*MockClient) ServicePGBouncerUpdate added in v0.129.0

func (_mock *MockClient) ServicePGBouncerUpdate(ctx context.Context, project1 string, serviceName string, poolName string, in *postgresql.ServicePgbouncerUpdateIn) error

ServicePGBouncerUpdate provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAWSConnectionList added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAWSConnectionList(ctx context.Context, project1 string, serviceName string) ([]privatelink.ConnectionOut, error)

ServicePrivatelinkAWSConnectionList provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAWSCreate added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAWSCreate(ctx context.Context, project1 string, serviceName string, in *privatelink.ServicePrivatelinkAwscreateIn) (*privatelink.ServicePrivatelinkAwscreateOut, error)

ServicePrivatelinkAWSCreate provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAWSDelete added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAWSDelete(ctx context.Context, project1 string, serviceName string) (*privatelink.ServicePrivatelinkAwsdeleteOut, error)

ServicePrivatelinkAWSDelete provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAWSGet added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAWSGet(ctx context.Context, project1 string, serviceName string) (*privatelink.ServicePrivatelinkAwsgetOut, error)

ServicePrivatelinkAWSGet provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAWSUpdate added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAWSUpdate(ctx context.Context, project1 string, serviceName string, in *privatelink.ServicePrivatelinkAwsupdateIn) (*privatelink.ServicePrivatelinkAwsupdateOut, error)

ServicePrivatelinkAWSUpdate provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAzureConnectionApproval added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAzureConnectionApproval(ctx context.Context, project1 string, serviceName string, privatelinkConnectionId string) (*privatelink.ServicePrivatelinkAzureConnectionApprovalOut, error)

ServicePrivatelinkAzureConnectionApproval provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAzureConnectionList added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAzureConnectionList(ctx context.Context, project1 string, serviceName string) ([]privatelink.ServicePrivatelinkAzureConnectionListOut, error)

ServicePrivatelinkAzureConnectionList provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAzureConnectionUpdate added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAzureConnectionUpdate(ctx context.Context, project1 string, serviceName string, privatelinkConnectionId string, in *privatelink.ServicePrivatelinkAzureConnectionUpdateIn) (*privatelink.ServicePrivatelinkAzureConnectionUpdateOut, error)

ServicePrivatelinkAzureConnectionUpdate provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAzureCreate added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAzureCreate(ctx context.Context, project1 string, serviceName string, in *privatelink.ServicePrivatelinkAzureCreateIn) (*privatelink.ServicePrivatelinkAzureCreateOut, error)

ServicePrivatelinkAzureCreate provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAzureDelete added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAzureDelete(ctx context.Context, project1 string, serviceName string) (*privatelink.ServicePrivatelinkAzureDeleteOut, error)

ServicePrivatelinkAzureDelete provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAzureGet added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAzureGet(ctx context.Context, project1 string, serviceName string) (*privatelink.ServicePrivatelinkAzureGetOut, error)

ServicePrivatelinkAzureGet provides a mock function for the type MockClient

func (*MockClient) ServicePrivatelinkAzureUpdate added in v0.129.0

func (_mock *MockClient) ServicePrivatelinkAzureUpdate(ctx context.Context, project1 string, serviceName string, in *privatelink.ServicePrivatelinkAzureUpdateIn) (*privatelink.ServicePrivatelinkAzureUpdateOut, error)

ServicePrivatelinkAzureUpdate provides a mock function for the type MockClient

func (*MockClient) ServiceQueryActivity added in v0.129.0

func (_mock *MockClient) ServiceQueryActivity(ctx context.Context, project1 string, serviceName string, in *service.ServiceQueryActivityIn) ([]service.QueryOut, error)

ServiceQueryActivity provides a mock function for the type MockClient

func (*MockClient) ServiceQueryStatisticsReset added in v0.129.0

func (_mock *MockClient) ServiceQueryStatisticsReset(ctx context.Context, project1 string, serviceName string) ([]map[string]any, error)

ServiceQueryStatisticsReset provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistryAclAdd added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistryAclAdd(ctx context.Context, project1 string, serviceName string, in *kafkaschemaregistry.ServiceSchemaRegistryAclAddIn) ([]kafkaschemaregistry.AclOut, error)

ServiceSchemaRegistryAclAdd provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistryAclDelete added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistryAclDelete(ctx context.Context, project1 string, serviceName string, schemaRegistryAclId string) ([]kafkaschemaregistry.AclOut, error)

ServiceSchemaRegistryAclDelete provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistryAclList added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistryAclList(ctx context.Context, project1 string, serviceName string) ([]kafkaschemaregistry.AclOut, error)

ServiceSchemaRegistryAclList provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistryCompatibility added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistryCompatibility(ctx context.Context, project1 string, serviceName string, subjectName string, versionId int, in *kafkaschemaregistry.ServiceSchemaRegistryCompatibilityIn) (*kafkaschemaregistry.ServiceSchemaRegistryCompatibilityOut, error)

ServiceSchemaRegistryCompatibility provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistryGlobalConfigGet added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistryGlobalConfigGet(ctx context.Context, project1 string, serviceName string) (kafkaschemaregistry.CompatibilityType, error)

ServiceSchemaRegistryGlobalConfigGet provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistryGlobalConfigPut added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistryGlobalConfigPut(ctx context.Context, project1 string, serviceName string, in *kafkaschemaregistry.ServiceSchemaRegistryGlobalConfigPutIn) (kafkaschemaregistry.CompatibilityType, error)

ServiceSchemaRegistryGlobalConfigPut provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySchemaGet added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySchemaGet(ctx context.Context, project1 string, serviceName string, schemaId string) error

ServiceSchemaRegistrySchemaGet provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySubjectConfigGet added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySubjectConfigGet(ctx context.Context, project1 string, serviceName string, subjectName string) (kafkaschemaregistry.CompatibilityType, error)

ServiceSchemaRegistrySubjectConfigGet provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySubjectConfigPut added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySubjectConfigPut(ctx context.Context, project1 string, serviceName string, subjectName string, in *kafkaschemaregistry.ServiceSchemaRegistrySubjectConfigPutIn) (kafkaschemaregistry.CompatibilityType, error)

ServiceSchemaRegistrySubjectConfigPut provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySubjectDelete added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySubjectDelete(ctx context.Context, project1 string, serviceName string, subjectName string) error

ServiceSchemaRegistrySubjectDelete provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySubjectVersionDelete added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySubjectVersionDelete(ctx context.Context, project1 string, serviceName string, subjectName string, versionId int) error

ServiceSchemaRegistrySubjectVersionDelete provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySubjectVersionGet added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySubjectVersionGet(ctx context.Context, project1 string, serviceName string, subjectName string, versionId int) (*kafkaschemaregistry.ServiceSchemaRegistrySubjectVersionGetOut, error)

ServiceSchemaRegistrySubjectVersionGet provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySubjectVersionPost added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySubjectVersionPost(ctx context.Context, project1 string, serviceName string, subjectName string, in *kafkaschemaregistry.ServiceSchemaRegistrySubjectVersionPostIn) (int, error)

ServiceSchemaRegistrySubjectVersionPost provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySubjectVersionSchemaGet added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySubjectVersionSchemaGet(ctx context.Context, project1 string, serviceName string, subjectName string, versionId int) error

ServiceSchemaRegistrySubjectVersionSchemaGet provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySubjectVersionsGet added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySubjectVersionsGet(ctx context.Context, project1 string, serviceName string, subjectName string) ([]int, error)

ServiceSchemaRegistrySubjectVersionsGet provides a mock function for the type MockClient

func (*MockClient) ServiceSchemaRegistrySubjects added in v0.129.0

func (_mock *MockClient) ServiceSchemaRegistrySubjects(ctx context.Context, project1 string, serviceName string) ([]string, error)

ServiceSchemaRegistrySubjects provides a mock function for the type MockClient

func (*MockClient) ServiceTaskCreate added in v0.129.0

func (_mock *MockClient) ServiceTaskCreate(ctx context.Context, project1 string, serviceName string, in *service.ServiceTaskCreateIn) (*service.ServiceTaskCreateOut, error)

ServiceTaskCreate provides a mock function for the type MockClient

func (*MockClient) ServiceTaskGet added in v0.129.0

func (_mock *MockClient) ServiceTaskGet(ctx context.Context, project1 string, serviceName string, taskId string) (*service.ServiceTaskGetOut, error)

ServiceTaskGet provides a mock function for the type MockClient

func (*MockClient) ServiceThanosStorageSummary added in v0.129.0

func (_mock *MockClient) ServiceThanosStorageSummary(ctx context.Context, project1 string, serviceName string) (*thanos.ServiceThanosStorageSummaryOut, error)

ServiceThanosStorageSummary provides a mock function for the type MockClient

func (*MockClient) ServiceUpdate added in v0.129.0

func (_mock *MockClient) ServiceUpdate(ctx context.Context, project1 string, serviceName string, in *service.ServiceUpdateIn, query ...[2]string) (*service.ServiceUpdateOut, error)

ServiceUpdate provides a mock function for the type MockClient

func (*MockClient) ServiceUserCreate added in v0.129.0

func (_mock *MockClient) ServiceUserCreate(ctx context.Context, project1 string, serviceName string, in *service.ServiceUserCreateIn) (*service.ServiceUserCreateOut, error)

ServiceUserCreate provides a mock function for the type MockClient

func (*MockClient) ServiceUserCredentialsModify added in v0.129.0

func (_mock *MockClient) ServiceUserCredentialsModify(ctx context.Context, project1 string, serviceName string, serviceUsername string, in *service.ServiceUserCredentialsModifyIn) (*service.ServiceUserCredentialsModifyOut, error)

ServiceUserCredentialsModify provides a mock function for the type MockClient

func (*MockClient) ServiceUserCredentialsReset added in v0.129.0

func (_mock *MockClient) ServiceUserCredentialsReset(ctx context.Context, project1 string, serviceName string, serviceUsername string) (*service.ServiceUserCredentialsResetOut, error)

ServiceUserCredentialsReset provides a mock function for the type MockClient

func (*MockClient) ServiceUserDelete added in v0.129.0

func (_mock *MockClient) ServiceUserDelete(ctx context.Context, project1 string, serviceName string, serviceUsername string) error

ServiceUserDelete provides a mock function for the type MockClient

func (*MockClient) ServiceUserGet added in v0.129.0

func (_mock *MockClient) ServiceUserGet(ctx context.Context, project1 string, serviceName string, serviceUsername string, query ...[2]string) (*service.ServiceUserGetOut, error)

ServiceUserGet provides a mock function for the type MockClient

func (*MockClient) StaticIPCreate added in v0.129.0

func (_mock *MockClient) StaticIPCreate(ctx context.Context, project1 string, in *staticip.StaticIpcreateIn) (*staticip.StaticIpcreateOut, error)

StaticIPCreate provides a mock function for the type MockClient

func (*MockClient) StaticIPList added in v0.129.0

func (_mock *MockClient) StaticIPList(ctx context.Context, project1 string) ([]staticip.StaticIpOut, error)

StaticIPList provides a mock function for the type MockClient

func (*MockClient) TwoFactorAuthConfigure added in v0.129.0

func (_mock *MockClient) TwoFactorAuthConfigure(ctx context.Context, in *user.TwoFactorAuthConfigureIn) (*user.TwoFactorAuthConfigureOut, error)

TwoFactorAuthConfigure provides a mock function for the type MockClient

func (*MockClient) TwoFactorAuthConfigureOTP added in v0.129.0

func (_mock *MockClient) TwoFactorAuthConfigureOTP(ctx context.Context, in *user.TwoFactorAuthConfigureOtpIn) (*user.TwoFactorAuthConfigureOtpOut, error)

TwoFactorAuthConfigureOTP provides a mock function for the type MockClient

func (*MockClient) UserAccountDelete added in v0.129.0

func (_mock *MockClient) UserAccountDelete(ctx context.Context, userId string) error

UserAccountDelete provides a mock function for the type MockClient

func (*MockClient) UserAccountInvitesAccept added in v0.129.0

func (_mock *MockClient) UserAccountInvitesAccept(ctx context.Context, in *user.UserAccountInvitesAcceptIn) ([]user.AccountInviteOut, error)

UserAccountInvitesAccept provides a mock function for the type MockClient

func (*MockClient) UserAccountInvitesList added in v0.129.0

func (_mock *MockClient) UserAccountInvitesList(ctx context.Context) ([]user.AccountInviteOut, error)

UserAccountInvitesList provides a mock function for the type MockClient

func (*MockClient) UserAuth added in v0.129.0

func (_mock *MockClient) UserAuth(ctx context.Context, in *user.UserAuthIn) (*user.UserAuthOut, error)

UserAuth provides a mock function for the type MockClient

func (*MockClient) UserAuthLoginOptions added in v0.129.0

func (_mock *MockClient) UserAuthLoginOptions(ctx context.Context, in *user.UserAuthLoginOptionsIn) (*user.UserAuthLoginOptionsOut, error)

UserAuthLoginOptions provides a mock function for the type MockClient

func (*MockClient) UserAuthenticationMethodDelete added in v0.129.0

func (_mock *MockClient) UserAuthenticationMethodDelete(ctx context.Context, userAuthenticationMethodId string) error

UserAuthenticationMethodDelete provides a mock function for the type MockClient

func (*MockClient) UserAuthenticationMethodsList added in v0.129.0

func (_mock *MockClient) UserAuthenticationMethodsList(ctx context.Context) ([]user.AuthenticationMethodOut, error)

UserAuthenticationMethodsList provides a mock function for the type MockClient

func (*MockClient) UserCreate added in v0.129.0

func (_mock *MockClient) UserCreate(ctx context.Context, in *user.UserCreateIn) (*user.UserCreateOut, error)

UserCreate provides a mock function for the type MockClient

func (*MockClient) UserCreditCardsList added in v0.129.0

func (_mock *MockClient) UserCreditCardsList(ctx context.Context) ([]user.CardOut, error)

UserCreditCardsList provides a mock function for the type MockClient

func (*MockClient) UserExpireTokens added in v0.129.0

func (_mock *MockClient) UserExpireTokens(ctx context.Context) error

UserExpireTokens provides a mock function for the type MockClient

func (*MockClient) UserGroupCreate added in v0.129.0

func (_mock *MockClient) UserGroupCreate(ctx context.Context, organizationId string, in *usergroup.UserGroupCreateIn) (*usergroup.UserGroupCreateOut, error)

UserGroupCreate provides a mock function for the type MockClient

func (*MockClient) UserGroupDelete added in v0.129.0

func (_mock *MockClient) UserGroupDelete(ctx context.Context, organizationId string, userGroupId string) error

UserGroupDelete provides a mock function for the type MockClient

func (*MockClient) UserGroupGet added in v0.129.0

func (_mock *MockClient) UserGroupGet(ctx context.Context, organizationId string, userGroupId string) (*usergroup.UserGroupGetOut, error)

UserGroupGet provides a mock function for the type MockClient

func (*MockClient) UserGroupMemberList added in v0.129.0

func (_mock *MockClient) UserGroupMemberList(ctx context.Context, organizationId string, userGroupId string) ([]usergroup.MemberOut, error)

UserGroupMemberList provides a mock function for the type MockClient

func (*MockClient) UserGroupMembersUpdate added in v0.129.0

func (_mock *MockClient) UserGroupMembersUpdate(ctx context.Context, organizationId string, userGroupId string, in *usergroup.UserGroupMembersUpdateIn) error

UserGroupMembersUpdate provides a mock function for the type MockClient

func (*MockClient) UserGroupUpdate added in v0.129.0

func (_mock *MockClient) UserGroupUpdate(ctx context.Context, organizationId string, userGroupId string, in *usergroup.UserGroupUpdateIn) (*usergroup.UserGroupUpdateOut, error)

UserGroupUpdate provides a mock function for the type MockClient

func (*MockClient) UserGroupsList added in v0.129.0

func (_mock *MockClient) UserGroupsList(ctx context.Context, organizationId string) ([]usergroup.UserGroupOut, error)

UserGroupsList provides a mock function for the type MockClient

func (*MockClient) UserInfo added in v0.129.0

func (_mock *MockClient) UserInfo(ctx context.Context) (*user.UserInfoOut, error)

UserInfo provides a mock function for the type MockClient

func (*MockClient) UserLogout added in v0.129.0

func (_mock *MockClient) UserLogout(ctx context.Context) error

UserLogout provides a mock function for the type MockClient

func (*MockClient) UserOrganizationCreate added in v0.129.0

UserOrganizationCreate provides a mock function for the type MockClient

func (*MockClient) UserOrganizationsList added in v0.129.0

func (_mock *MockClient) UserOrganizationsList(ctx context.Context) ([]organization.OrganizationOut, error)

UserOrganizationsList provides a mock function for the type MockClient

func (*MockClient) UserPasswordChange added in v0.129.0

func (_mock *MockClient) UserPasswordChange(ctx context.Context, in *user.UserPasswordChangeIn) (string, error)

UserPasswordChange provides a mock function for the type MockClient

func (*MockClient) UserPasswordReset added in v0.129.0

func (_mock *MockClient) UserPasswordReset(ctx context.Context, verificationCode string, in *user.UserPasswordResetIn) error

UserPasswordReset provides a mock function for the type MockClient

func (*MockClient) UserPasswordResetRequest added in v0.129.0

func (_mock *MockClient) UserPasswordResetRequest(ctx context.Context, in *user.UserPasswordResetRequestIn) error

UserPasswordResetRequest provides a mock function for the type MockClient

func (*MockClient) UserUpdate added in v0.129.0

func (_mock *MockClient) UserUpdate(ctx context.Context, in *user.UserUpdateIn) (*user.UserUpdateOut, error)

UserUpdate provides a mock function for the type MockClient

func (*MockClient) UserVerifyEmail added in v0.129.0

func (_mock *MockClient) UserVerifyEmail(ctx context.Context, verificationCode string) (*user.UserVerifyEmailOut, error)

UserVerifyEmail provides a mock function for the type MockClient

func (*MockClient) ValidateCreditCode added in v0.129.0

func (_mock *MockClient) ValidateCreditCode(ctx context.Context, creditCode string) error

ValidateCreditCode provides a mock function for the type MockClient

func (*MockClient) ValidateReferralCode added in v0.129.0

func (_mock *MockClient) ValidateReferralCode(ctx context.Context, referralCode string) error

ValidateReferralCode provides a mock function for the type MockClient

func (*MockClient) VpcCreate added in v0.129.0

func (_mock *MockClient) VpcCreate(ctx context.Context, project1 string, in *vpc.VpcCreateIn) (*vpc.VpcCreateOut, error)

VpcCreate provides a mock function for the type MockClient

func (*MockClient) VpcDelete added in v0.129.0

func (_mock *MockClient) VpcDelete(ctx context.Context, project1 string, projectVpcId string) (*vpc.VpcDeleteOut, error)

VpcDelete provides a mock function for the type MockClient

func (*MockClient) VpcGet added in v0.129.0

func (_mock *MockClient) VpcGet(ctx context.Context, project1 string, projectVpcId string) (*vpc.VpcGetOut, error)

VpcGet provides a mock function for the type MockClient

func (*MockClient) VpcList added in v0.129.0

func (_mock *MockClient) VpcList(ctx context.Context, project1 string) ([]vpc.VpcOut, error)

VpcList provides a mock function for the type MockClient

func (*MockClient) VpcPeeringConnectionCreate added in v0.129.0

func (_mock *MockClient) VpcPeeringConnectionCreate(ctx context.Context, project1 string, projectVpcId string, in *vpc.VpcPeeringConnectionCreateIn) (*vpc.VpcPeeringConnectionCreateOut, error)

VpcPeeringConnectionCreate provides a mock function for the type MockClient

func (*MockClient) VpcPeeringConnectionDelete added in v0.129.0

func (_mock *MockClient) VpcPeeringConnectionDelete(ctx context.Context, project1 string, projectVpcId string, peerCloudAccount string, peerVpc string) (*vpc.VpcPeeringConnectionDeleteOut, error)

VpcPeeringConnectionDelete provides a mock function for the type MockClient

func (*MockClient) VpcPeeringConnectionUpdate added in v0.129.0

func (_mock *MockClient) VpcPeeringConnectionUpdate(ctx context.Context, project1 string, projectVpcId string, in *vpc.VpcPeeringConnectionUpdateIn) (*vpc.VpcPeeringConnectionUpdateOut, error)

VpcPeeringConnectionUpdate provides a mock function for the type MockClient

func (*MockClient) VpcPeeringConnectionWithRegionDelete added in v0.129.0

func (_mock *MockClient) VpcPeeringConnectionWithRegionDelete(ctx context.Context, project1 string, projectVpcId string, peerCloudAccount string, peerVpc string, peerRegion string) (*vpc.VpcPeeringConnectionWithRegionDeleteOut, error)

VpcPeeringConnectionWithRegionDelete provides a mock function for the type MockClient

func (*MockClient) VpcPeeringConnectionWithResourceGroupDelete added in v0.129.0

func (_mock *MockClient) VpcPeeringConnectionWithResourceGroupDelete(ctx context.Context, project1 string, projectVpcId string, peerCloudAccount string, peerResourceGroup string, peerVpc string) (*vpc.VpcPeeringConnectionWithResourceGroupDeleteOut, error)

VpcPeeringConnectionWithResourceGroupDelete provides a mock function for the type MockClient

type MockClient_AccessTokenCreate_Call added in v0.129.0

type MockClient_AccessTokenCreate_Call struct {
	*mock.Call
}

MockClient_AccessTokenCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccessTokenCreate'

func (*MockClient_AccessTokenCreate_Call) Return added in v0.129.0

func (*MockClient_AccessTokenCreate_Call) Run added in v0.129.0

func (*MockClient_AccessTokenCreate_Call) RunAndReturn added in v0.129.0

type MockClient_AccessTokenList_Call added in v0.129.0

type MockClient_AccessTokenList_Call struct {
	*mock.Call
}

MockClient_AccessTokenList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccessTokenList'

func (*MockClient_AccessTokenList_Call) Return added in v0.129.0

func (*MockClient_AccessTokenList_Call) Run added in v0.129.0

func (*MockClient_AccessTokenList_Call) RunAndReturn added in v0.129.0

type MockClient_AccessTokenRevoke_Call added in v0.129.0

type MockClient_AccessTokenRevoke_Call struct {
	*mock.Call
}

MockClient_AccessTokenRevoke_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccessTokenRevoke'

func (*MockClient_AccessTokenRevoke_Call) Return added in v0.129.0

func (*MockClient_AccessTokenRevoke_Call) Run added in v0.129.0

func (*MockClient_AccessTokenRevoke_Call) RunAndReturn added in v0.129.0

type MockClient_AccessTokenUpdate_Call added in v0.129.0

type MockClient_AccessTokenUpdate_Call struct {
	*mock.Call
}

MockClient_AccessTokenUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccessTokenUpdate'

func (*MockClient_AccessTokenUpdate_Call) Return added in v0.129.0

func (*MockClient_AccessTokenUpdate_Call) Run added in v0.129.0

func (*MockClient_AccessTokenUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_AccountAttachPaymentMethod_Call added in v0.129.0

type MockClient_AccountAttachPaymentMethod_Call struct {
	*mock.Call
}

MockClient_AccountAttachPaymentMethod_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountAttachPaymentMethod'

func (*MockClient_AccountAttachPaymentMethod_Call) Return added in v0.129.0

func (*MockClient_AccountAttachPaymentMethod_Call) Run added in v0.129.0

func (*MockClient_AccountAttachPaymentMethod_Call) RunAndReturn added in v0.129.0

type MockClient_AccountAuthenticationMethodCreate_Call added in v0.129.0

type MockClient_AccountAuthenticationMethodCreate_Call struct {
	*mock.Call
}

MockClient_AccountAuthenticationMethodCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountAuthenticationMethodCreate'

func (*MockClient_AccountAuthenticationMethodCreate_Call) Return added in v0.129.0

func (*MockClient_AccountAuthenticationMethodCreate_Call) Run added in v0.129.0

type MockClient_AccountAuthenticationMethodDelete_Call added in v0.129.0

type MockClient_AccountAuthenticationMethodDelete_Call struct {
	*mock.Call
}

MockClient_AccountAuthenticationMethodDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountAuthenticationMethodDelete'

func (*MockClient_AccountAuthenticationMethodDelete_Call) Return added in v0.129.0

func (*MockClient_AccountAuthenticationMethodDelete_Call) Run added in v0.129.0

func (*MockClient_AccountAuthenticationMethodDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_AccountAuthenticationMethodDelete_Call) RunAndReturn(run func(ctx context.Context, accountId string, accountAuthenticationMethodId string) error) *MockClient_AccountAuthenticationMethodDelete_Call

type MockClient_AccountAuthenticationMethodGet_Call added in v0.129.0

type MockClient_AccountAuthenticationMethodGet_Call struct {
	*mock.Call
}

MockClient_AccountAuthenticationMethodGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountAuthenticationMethodGet'

func (*MockClient_AccountAuthenticationMethodGet_Call) Return added in v0.129.0

func (*MockClient_AccountAuthenticationMethodGet_Call) Run added in v0.129.0

func (_c *MockClient_AccountAuthenticationMethodGet_Call) Run(run func(ctx context.Context, accountId string, accountAuthenticationMethodId string)) *MockClient_AccountAuthenticationMethodGet_Call

func (*MockClient_AccountAuthenticationMethodGet_Call) RunAndReturn added in v0.129.0

type MockClient_AccountAuthenticationMethodUpdate_Call added in v0.129.0

type MockClient_AccountAuthenticationMethodUpdate_Call struct {
	*mock.Call
}

MockClient_AccountAuthenticationMethodUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountAuthenticationMethodUpdate'

func (*MockClient_AccountAuthenticationMethodUpdate_Call) Return added in v0.129.0

func (*MockClient_AccountAuthenticationMethodUpdate_Call) Run added in v0.129.0

func (*MockClient_AccountAuthenticationMethodUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_AccountAuthenticationMethodsList_Call added in v0.129.0

type MockClient_AccountAuthenticationMethodsList_Call struct {
	*mock.Call
}

MockClient_AccountAuthenticationMethodsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountAuthenticationMethodsList'

func (*MockClient_AccountAuthenticationMethodsList_Call) Return added in v0.129.0

func (*MockClient_AccountAuthenticationMethodsList_Call) Run added in v0.129.0

func (*MockClient_AccountAuthenticationMethodsList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountBillingGroupList_Call added in v0.129.0

type MockClient_AccountBillingGroupList_Call struct {
	*mock.Call
}

MockClient_AccountBillingGroupList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountBillingGroupList'

func (*MockClient_AccountBillingGroupList_Call) Return added in v0.129.0

func (*MockClient_AccountBillingGroupList_Call) Run added in v0.129.0

func (*MockClient_AccountBillingGroupList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountCreate_Call added in v0.129.0

type MockClient_AccountCreate_Call struct {
	*mock.Call
}

MockClient_AccountCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountCreate'

func (*MockClient_AccountCreate_Call) Return added in v0.129.0

func (*MockClient_AccountCreate_Call) Run added in v0.129.0

func (*MockClient_AccountCreate_Call) RunAndReturn added in v0.129.0

type MockClient_AccountDelete_Call added in v0.129.0

type MockClient_AccountDelete_Call struct {
	*mock.Call
}

MockClient_AccountDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountDelete'

func (*MockClient_AccountDelete_Call) Return added in v0.129.0

func (*MockClient_AccountDelete_Call) Run added in v0.129.0

func (*MockClient_AccountDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_AccountDelete_Call) RunAndReturn(run func(ctx context.Context, accountId string) error) *MockClient_AccountDelete_Call

type MockClient_AccountEventList_Call added in v0.129.0

type MockClient_AccountEventList_Call struct {
	*mock.Call
}

MockClient_AccountEventList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountEventList'

func (*MockClient_AccountEventList_Call) Return added in v0.129.0

func (*MockClient_AccountEventList_Call) Run added in v0.129.0

func (*MockClient_AccountEventList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountGet_Call added in v0.129.0

type MockClient_AccountGet_Call struct {
	*mock.Call
}

MockClient_AccountGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountGet'

func (*MockClient_AccountGet_Call) Return added in v0.129.0

func (*MockClient_AccountGet_Call) Run added in v0.129.0

func (_c *MockClient_AccountGet_Call) Run(run func(ctx context.Context, accountId string)) *MockClient_AccountGet_Call

func (*MockClient_AccountGet_Call) RunAndReturn added in v0.129.0

type MockClient_AccountList_Call added in v0.129.0

type MockClient_AccountList_Call struct {
	*mock.Call
}

MockClient_AccountList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountList'

func (*MockClient_AccountList_Call) Return added in v0.129.0

func (*MockClient_AccountList_Call) Run added in v0.129.0

func (*MockClient_AccountList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountMove_Call added in v0.129.0

type MockClient_AccountMove_Call struct {
	*mock.Call
}

MockClient_AccountMove_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountMove'

func (*MockClient_AccountMove_Call) Return added in v0.129.0

func (*MockClient_AccountMove_Call) Run added in v0.129.0

func (*MockClient_AccountMove_Call) RunAndReturn added in v0.129.0

type MockClient_AccountPaymentMethodDelete_Call added in v0.129.0

type MockClient_AccountPaymentMethodDelete_Call struct {
	*mock.Call
}

MockClient_AccountPaymentMethodDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountPaymentMethodDelete'

func (*MockClient_AccountPaymentMethodDelete_Call) Return added in v0.129.0

func (*MockClient_AccountPaymentMethodDelete_Call) Run added in v0.129.0

func (*MockClient_AccountPaymentMethodDelete_Call) RunAndReturn added in v0.129.0

type MockClient_AccountPaymentMethodsList_Call added in v0.129.0

type MockClient_AccountPaymentMethodsList_Call struct {
	*mock.Call
}

MockClient_AccountPaymentMethodsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountPaymentMethodsList'

func (*MockClient_AccountPaymentMethodsList_Call) Return added in v0.129.0

func (*MockClient_AccountPaymentMethodsList_Call) Run added in v0.129.0

func (*MockClient_AccountPaymentMethodsList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountProjectsList_Call added in v0.129.0

type MockClient_AccountProjectsList_Call struct {
	*mock.Call
}

MockClient_AccountProjectsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountProjectsList'

func (*MockClient_AccountProjectsList_Call) Return added in v0.129.0

func (*MockClient_AccountProjectsList_Call) Run added in v0.129.0

func (*MockClient_AccountProjectsList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountProjectsTeamsList_Call added in v0.129.0

type MockClient_AccountProjectsTeamsList_Call struct {
	*mock.Call
}

MockClient_AccountProjectsTeamsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountProjectsTeamsList'

func (*MockClient_AccountProjectsTeamsList_Call) Return added in v0.129.0

func (*MockClient_AccountProjectsTeamsList_Call) Run added in v0.129.0

func (*MockClient_AccountProjectsTeamsList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamCreate_Call added in v0.129.0

type MockClient_AccountTeamCreate_Call struct {
	*mock.Call
}

MockClient_AccountTeamCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamCreate'

func (*MockClient_AccountTeamCreate_Call) Return added in v0.129.0

func (*MockClient_AccountTeamCreate_Call) Run added in v0.129.0

func (*MockClient_AccountTeamCreate_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamDelete_Call added in v0.129.0

type MockClient_AccountTeamDelete_Call struct {
	*mock.Call
}

MockClient_AccountTeamDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamDelete'

func (*MockClient_AccountTeamDelete_Call) Return added in v0.129.0

func (*MockClient_AccountTeamDelete_Call) Run added in v0.129.0

func (*MockClient_AccountTeamDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_AccountTeamDelete_Call) RunAndReturn(run func(ctx context.Context, accountId string, teamId string) error) *MockClient_AccountTeamDelete_Call

type MockClient_AccountTeamGet_Call added in v0.129.0

type MockClient_AccountTeamGet_Call struct {
	*mock.Call
}

MockClient_AccountTeamGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamGet'

func (*MockClient_AccountTeamGet_Call) Return added in v0.129.0

func (*MockClient_AccountTeamGet_Call) Run added in v0.129.0

func (*MockClient_AccountTeamGet_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamInvitesList_Call added in v0.129.0

type MockClient_AccountTeamInvitesList_Call struct {
	*mock.Call
}

MockClient_AccountTeamInvitesList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamInvitesList'

func (*MockClient_AccountTeamInvitesList_Call) Return added in v0.129.0

func (*MockClient_AccountTeamInvitesList_Call) Run added in v0.129.0

func (*MockClient_AccountTeamInvitesList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamList_Call added in v0.129.0

type MockClient_AccountTeamList_Call struct {
	*mock.Call
}

MockClient_AccountTeamList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamList'

func (*MockClient_AccountTeamList_Call) Return added in v0.129.0

func (*MockClient_AccountTeamList_Call) Run added in v0.129.0

func (*MockClient_AccountTeamList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamMemberCancelInvite_Call added in v0.129.0

type MockClient_AccountTeamMemberCancelInvite_Call struct {
	*mock.Call
}

MockClient_AccountTeamMemberCancelInvite_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamMemberCancelInvite'

func (*MockClient_AccountTeamMemberCancelInvite_Call) Return added in v0.129.0

func (*MockClient_AccountTeamMemberCancelInvite_Call) Run added in v0.129.0

func (*MockClient_AccountTeamMemberCancelInvite_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamMemberVerifyInvite_Call added in v0.129.0

type MockClient_AccountTeamMemberVerifyInvite_Call struct {
	*mock.Call
}

MockClient_AccountTeamMemberVerifyInvite_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamMemberVerifyInvite'

func (*MockClient_AccountTeamMemberVerifyInvite_Call) Return added in v0.129.0

func (*MockClient_AccountTeamMemberVerifyInvite_Call) Run added in v0.129.0

func (*MockClient_AccountTeamMemberVerifyInvite_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamMembersDelete_Call added in v0.129.0

type MockClient_AccountTeamMembersDelete_Call struct {
	*mock.Call
}

MockClient_AccountTeamMembersDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamMembersDelete'

func (*MockClient_AccountTeamMembersDelete_Call) Return added in v0.129.0

func (*MockClient_AccountTeamMembersDelete_Call) Run added in v0.129.0

func (*MockClient_AccountTeamMembersDelete_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamMembersInvite_Call added in v0.129.0

type MockClient_AccountTeamMembersInvite_Call struct {
	*mock.Call
}

MockClient_AccountTeamMembersInvite_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamMembersInvite'

func (*MockClient_AccountTeamMembersInvite_Call) Return added in v0.129.0

func (*MockClient_AccountTeamMembersInvite_Call) Run added in v0.129.0

func (*MockClient_AccountTeamMembersInvite_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamMembersList_Call added in v0.129.0

type MockClient_AccountTeamMembersList_Call struct {
	*mock.Call
}

MockClient_AccountTeamMembersList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamMembersList'

func (*MockClient_AccountTeamMembersList_Call) Return added in v0.129.0

func (*MockClient_AccountTeamMembersList_Call) Run added in v0.129.0

func (*MockClient_AccountTeamMembersList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamProjectAssociate_Call added in v0.129.0

type MockClient_AccountTeamProjectAssociate_Call struct {
	*mock.Call
}

MockClient_AccountTeamProjectAssociate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamProjectAssociate'

func (*MockClient_AccountTeamProjectAssociate_Call) Return added in v0.129.0

func (*MockClient_AccountTeamProjectAssociate_Call) Run added in v0.129.0

func (*MockClient_AccountTeamProjectAssociate_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamProjectAssociationUpdate_Call added in v0.129.0

type MockClient_AccountTeamProjectAssociationUpdate_Call struct {
	*mock.Call
}

MockClient_AccountTeamProjectAssociationUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamProjectAssociationUpdate'

func (*MockClient_AccountTeamProjectAssociationUpdate_Call) Return added in v0.129.0

func (*MockClient_AccountTeamProjectAssociationUpdate_Call) Run added in v0.129.0

func (*MockClient_AccountTeamProjectAssociationUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamProjectDisassociate_Call added in v0.129.0

type MockClient_AccountTeamProjectDisassociate_Call struct {
	*mock.Call
}

MockClient_AccountTeamProjectDisassociate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamProjectDisassociate'

func (*MockClient_AccountTeamProjectDisassociate_Call) Return added in v0.129.0

func (*MockClient_AccountTeamProjectDisassociate_Call) Run added in v0.129.0

func (*MockClient_AccountTeamProjectDisassociate_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamProjectList_Call added in v0.129.0

type MockClient_AccountTeamProjectList_Call struct {
	*mock.Call
}

MockClient_AccountTeamProjectList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamProjectList'

func (*MockClient_AccountTeamProjectList_Call) Return added in v0.129.0

func (*MockClient_AccountTeamProjectList_Call) Run added in v0.129.0

func (*MockClient_AccountTeamProjectList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountTeamUpdate_Call added in v0.129.0

type MockClient_AccountTeamUpdate_Call struct {
	*mock.Call
}

MockClient_AccountTeamUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountTeamUpdate'

func (*MockClient_AccountTeamUpdate_Call) Return added in v0.129.0

func (*MockClient_AccountTeamUpdate_Call) Run added in v0.129.0

func (*MockClient_AccountTeamUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_AccountUpdate_Call added in v0.129.0

type MockClient_AccountUpdate_Call struct {
	*mock.Call
}

MockClient_AccountUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountUpdate'

func (*MockClient_AccountUpdate_Call) Return added in v0.129.0

func (*MockClient_AccountUpdate_Call) Run added in v0.129.0

func (*MockClient_AccountUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_AccountUserProjectsList_Call added in v0.129.0

type MockClient_AccountUserProjectsList_Call struct {
	*mock.Call
}

MockClient_AccountUserProjectsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountUserProjectsList'

func (*MockClient_AccountUserProjectsList_Call) Return added in v0.129.0

func (*MockClient_AccountUserProjectsList_Call) Run added in v0.129.0

func (*MockClient_AccountUserProjectsList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountUserTeamsList_Call added in v0.129.0

type MockClient_AccountUserTeamsList_Call struct {
	*mock.Call
}

MockClient_AccountUserTeamsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountUserTeamsList'

func (*MockClient_AccountUserTeamsList_Call) Return added in v0.129.0

func (*MockClient_AccountUserTeamsList_Call) Run added in v0.129.0

func (*MockClient_AccountUserTeamsList_Call) RunAndReturn added in v0.129.0

type MockClient_AccountUsersSearch_Call added in v0.129.0

type MockClient_AccountUsersSearch_Call struct {
	*mock.Call
}

MockClient_AccountUsersSearch_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AccountUsersSearch'

func (*MockClient_AccountUsersSearch_Call) Return added in v0.129.0

func (*MockClient_AccountUsersSearch_Call) Run added in v0.129.0

func (*MockClient_AccountUsersSearch_Call) RunAndReturn added in v0.129.0

type MockClient_AlloyDbOmniGoogleCloudPrivateKeyIdentify_Call added in v0.129.0

type MockClient_AlloyDbOmniGoogleCloudPrivateKeyIdentify_Call struct {
	*mock.Call
}

MockClient_AlloyDbOmniGoogleCloudPrivateKeyIdentify_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlloyDbOmniGoogleCloudPrivateKeyIdentify'

func (*MockClient_AlloyDbOmniGoogleCloudPrivateKeyIdentify_Call) Return added in v0.129.0

func (*MockClient_AlloyDbOmniGoogleCloudPrivateKeyIdentify_Call) Run added in v0.129.0

func (*MockClient_AlloyDbOmniGoogleCloudPrivateKeyIdentify_Call) RunAndReturn added in v0.129.0

type MockClient_AlloyDbOmniGoogleCloudPrivateKeyRemove_Call added in v0.129.0

type MockClient_AlloyDbOmniGoogleCloudPrivateKeyRemove_Call struct {
	*mock.Call
}

MockClient_AlloyDbOmniGoogleCloudPrivateKeyRemove_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlloyDbOmniGoogleCloudPrivateKeyRemove'

func (*MockClient_AlloyDbOmniGoogleCloudPrivateKeyRemove_Call) Return added in v0.129.0

func (*MockClient_AlloyDbOmniGoogleCloudPrivateKeyRemove_Call) Run added in v0.129.0

func (*MockClient_AlloyDbOmniGoogleCloudPrivateKeyRemove_Call) RunAndReturn added in v0.129.0

type MockClient_AlloyDbOmniGoogleCloudPrivateKeySet_Call added in v0.129.0

type MockClient_AlloyDbOmniGoogleCloudPrivateKeySet_Call struct {
	*mock.Call
}

MockClient_AlloyDbOmniGoogleCloudPrivateKeySet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'AlloyDbOmniGoogleCloudPrivateKeySet'

func (*MockClient_AlloyDbOmniGoogleCloudPrivateKeySet_Call) Return added in v0.129.0

func (*MockClient_AlloyDbOmniGoogleCloudPrivateKeySet_Call) Run added in v0.129.0

func (*MockClient_AlloyDbOmniGoogleCloudPrivateKeySet_Call) RunAndReturn added in v0.129.0

type MockClient_ApplicationUserAccessTokenCreate_Call added in v0.129.0

type MockClient_ApplicationUserAccessTokenCreate_Call struct {
	*mock.Call
}

MockClient_ApplicationUserAccessTokenCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ApplicationUserAccessTokenCreate'

func (*MockClient_ApplicationUserAccessTokenCreate_Call) Return added in v0.129.0

func (*MockClient_ApplicationUserAccessTokenCreate_Call) Run added in v0.129.0

func (*MockClient_ApplicationUserAccessTokenCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ApplicationUserAccessTokenDelete_Call added in v0.129.0

type MockClient_ApplicationUserAccessTokenDelete_Call struct {
	*mock.Call
}

MockClient_ApplicationUserAccessTokenDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ApplicationUserAccessTokenDelete'

func (*MockClient_ApplicationUserAccessTokenDelete_Call) Return added in v0.129.0

func (*MockClient_ApplicationUserAccessTokenDelete_Call) Run added in v0.129.0

func (*MockClient_ApplicationUserAccessTokenDelete_Call) RunAndReturn added in v0.129.0

type MockClient_ApplicationUserAccessTokensList_Call added in v0.129.0

type MockClient_ApplicationUserAccessTokensList_Call struct {
	*mock.Call
}

MockClient_ApplicationUserAccessTokensList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ApplicationUserAccessTokensList'

func (*MockClient_ApplicationUserAccessTokensList_Call) Return added in v0.129.0

func (*MockClient_ApplicationUserAccessTokensList_Call) Run added in v0.129.0

func (*MockClient_ApplicationUserAccessTokensList_Call) RunAndReturn added in v0.129.0

type MockClient_ApplicationUserCreate_Call added in v0.129.0

type MockClient_ApplicationUserCreate_Call struct {
	*mock.Call
}

MockClient_ApplicationUserCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ApplicationUserCreate'

func (*MockClient_ApplicationUserCreate_Call) Return added in v0.129.0

func (*MockClient_ApplicationUserCreate_Call) Run added in v0.129.0

func (*MockClient_ApplicationUserCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ApplicationUserDelete_Call added in v0.129.0

type MockClient_ApplicationUserDelete_Call struct {
	*mock.Call
}

MockClient_ApplicationUserDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ApplicationUserDelete'

func (*MockClient_ApplicationUserDelete_Call) Return added in v0.129.0

func (*MockClient_ApplicationUserDelete_Call) Run added in v0.129.0

func (*MockClient_ApplicationUserDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ApplicationUserDelete_Call) RunAndReturn(run func(ctx context.Context, organizationId string, userId string) error) *MockClient_ApplicationUserDelete_Call

type MockClient_ApplicationUserGet_Call added in v0.129.0

type MockClient_ApplicationUserGet_Call struct {
	*mock.Call
}

MockClient_ApplicationUserGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ApplicationUserGet'

func (*MockClient_ApplicationUserGet_Call) Return added in v0.129.0

func (*MockClient_ApplicationUserGet_Call) Run added in v0.129.0

func (*MockClient_ApplicationUserGet_Call) RunAndReturn added in v0.129.0

type MockClient_ApplicationUserUpdate_Call added in v0.129.0

type MockClient_ApplicationUserUpdate_Call struct {
	*mock.Call
}

MockClient_ApplicationUserUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ApplicationUserUpdate'

func (*MockClient_ApplicationUserUpdate_Call) Return added in v0.129.0

func (*MockClient_ApplicationUserUpdate_Call) Run added in v0.129.0

func (*MockClient_ApplicationUserUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ApplicationUsersList_Call added in v0.129.0

type MockClient_ApplicationUsersList_Call struct {
	*mock.Call
}

MockClient_ApplicationUsersList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ApplicationUsersList'

func (*MockClient_ApplicationUsersList_Call) Return added in v0.129.0

func (*MockClient_ApplicationUsersList_Call) Run added in v0.129.0

func (*MockClient_ApplicationUsersList_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupCreate_Call added in v0.129.0

type MockClient_BillingGroupCreate_Call struct {
	*mock.Call
}

MockClient_BillingGroupCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupCreate'

func (*MockClient_BillingGroupCreate_Call) Return added in v0.129.0

func (*MockClient_BillingGroupCreate_Call) Run added in v0.129.0

func (*MockClient_BillingGroupCreate_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupCreditsClaim_Call added in v0.129.0

type MockClient_BillingGroupCreditsClaim_Call struct {
	*mock.Call
}

MockClient_BillingGroupCreditsClaim_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupCreditsClaim'

func (*MockClient_BillingGroupCreditsClaim_Call) Return added in v0.129.0

func (*MockClient_BillingGroupCreditsClaim_Call) Run added in v0.129.0

func (*MockClient_BillingGroupCreditsClaim_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupCreditsList_Call added in v0.129.0

type MockClient_BillingGroupCreditsList_Call struct {
	*mock.Call
}

MockClient_BillingGroupCreditsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupCreditsList'

func (*MockClient_BillingGroupCreditsList_Call) Return added in v0.129.0

func (*MockClient_BillingGroupCreditsList_Call) Run added in v0.129.0

func (*MockClient_BillingGroupCreditsList_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupDelete_Call added in v0.129.0

type MockClient_BillingGroupDelete_Call struct {
	*mock.Call
}

MockClient_BillingGroupDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupDelete'

func (*MockClient_BillingGroupDelete_Call) Return added in v0.129.0

func (*MockClient_BillingGroupDelete_Call) Run added in v0.129.0

func (*MockClient_BillingGroupDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_BillingGroupDelete_Call) RunAndReturn(run func(ctx context.Context, billingGroupId string) error) *MockClient_BillingGroupDelete_Call

type MockClient_BillingGroupEventList_Call added in v0.129.0

type MockClient_BillingGroupEventList_Call struct {
	*mock.Call
}

MockClient_BillingGroupEventList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupEventList'

func (*MockClient_BillingGroupEventList_Call) Return added in v0.129.0

func (*MockClient_BillingGroupEventList_Call) Run added in v0.129.0

func (*MockClient_BillingGroupEventList_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupGet_Call added in v0.129.0

type MockClient_BillingGroupGet_Call struct {
	*mock.Call
}

MockClient_BillingGroupGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupGet'

func (*MockClient_BillingGroupGet_Call) Return added in v0.129.0

func (*MockClient_BillingGroupGet_Call) Run added in v0.129.0

func (*MockClient_BillingGroupGet_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupInvoiceLinesList_Call added in v0.129.0

type MockClient_BillingGroupInvoiceLinesList_Call struct {
	*mock.Call
}

MockClient_BillingGroupInvoiceLinesList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupInvoiceLinesList'

func (*MockClient_BillingGroupInvoiceLinesList_Call) Return added in v0.129.0

func (*MockClient_BillingGroupInvoiceLinesList_Call) Run added in v0.129.0

func (*MockClient_BillingGroupInvoiceLinesList_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupInvoiceList_Call added in v0.129.0

type MockClient_BillingGroupInvoiceList_Call struct {
	*mock.Call
}

MockClient_BillingGroupInvoiceList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupInvoiceList'

func (*MockClient_BillingGroupInvoiceList_Call) Return added in v0.129.0

func (*MockClient_BillingGroupInvoiceList_Call) Run added in v0.129.0

func (*MockClient_BillingGroupInvoiceList_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupList_Call added in v0.129.0

type MockClient_BillingGroupList_Call struct {
	*mock.Call
}

MockClient_BillingGroupList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupList'

func (*MockClient_BillingGroupList_Call) Return added in v0.129.0

func (*MockClient_BillingGroupList_Call) Run added in v0.129.0

func (*MockClient_BillingGroupList_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupProjectAssign_Call added in v0.129.0

type MockClient_BillingGroupProjectAssign_Call struct {
	*mock.Call
}

MockClient_BillingGroupProjectAssign_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupProjectAssign'

func (*MockClient_BillingGroupProjectAssign_Call) Return added in v0.129.0

func (*MockClient_BillingGroupProjectAssign_Call) Run added in v0.129.0

func (*MockClient_BillingGroupProjectAssign_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupProjectList_Call added in v0.129.0

type MockClient_BillingGroupProjectList_Call struct {
	*mock.Call
}

MockClient_BillingGroupProjectList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupProjectList'

func (*MockClient_BillingGroupProjectList_Call) Return added in v0.129.0

func (*MockClient_BillingGroupProjectList_Call) Run added in v0.129.0

func (*MockClient_BillingGroupProjectList_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupProjectsAssign_Call added in v0.129.0

type MockClient_BillingGroupProjectsAssign_Call struct {
	*mock.Call
}

MockClient_BillingGroupProjectsAssign_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupProjectsAssign'

func (*MockClient_BillingGroupProjectsAssign_Call) Return added in v0.129.0

func (*MockClient_BillingGroupProjectsAssign_Call) Run added in v0.129.0

func (*MockClient_BillingGroupProjectsAssign_Call) RunAndReturn added in v0.129.0

type MockClient_BillingGroupUpdate_Call added in v0.129.0

type MockClient_BillingGroupUpdate_Call struct {
	*mock.Call
}

MockClient_BillingGroupUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'BillingGroupUpdate'

func (*MockClient_BillingGroupUpdate_Call) Return added in v0.129.0

func (*MockClient_BillingGroupUpdate_Call) Run added in v0.129.0

func (*MockClient_BillingGroupUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_CheckPasswordStrengthExistingUser_Call added in v0.129.0

type MockClient_CheckPasswordStrengthExistingUser_Call struct {
	*mock.Call
}

MockClient_CheckPasswordStrengthExistingUser_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CheckPasswordStrengthExistingUser'

func (*MockClient_CheckPasswordStrengthExistingUser_Call) Return added in v0.129.0

func (*MockClient_CheckPasswordStrengthExistingUser_Call) Run added in v0.129.0

type MockClient_CheckPasswordStrengthNewUser_Call added in v0.129.0

type MockClient_CheckPasswordStrengthNewUser_Call struct {
	*mock.Call
}

MockClient_CheckPasswordStrengthNewUser_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CheckPasswordStrengthNewUser'

func (*MockClient_CheckPasswordStrengthNewUser_Call) Return added in v0.129.0

func (*MockClient_CheckPasswordStrengthNewUser_Call) Run added in v0.129.0

func (*MockClient_CheckPasswordStrengthNewUser_Call) RunAndReturn added in v0.129.0

type MockClient_CustomCloudEnvironmentCreate_Call added in v0.129.0

type MockClient_CustomCloudEnvironmentCreate_Call struct {
	*mock.Call
}

MockClient_CustomCloudEnvironmentCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CustomCloudEnvironmentCreate'

func (*MockClient_CustomCloudEnvironmentCreate_Call) Return added in v0.129.0

func (*MockClient_CustomCloudEnvironmentCreate_Call) Run added in v0.129.0

func (*MockClient_CustomCloudEnvironmentCreate_Call) RunAndReturn added in v0.129.0

type MockClient_CustomCloudEnvironmentDelete_Call added in v0.129.0

type MockClient_CustomCloudEnvironmentDelete_Call struct {
	*mock.Call
}

MockClient_CustomCloudEnvironmentDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CustomCloudEnvironmentDelete'

func (*MockClient_CustomCloudEnvironmentDelete_Call) Return added in v0.129.0

func (*MockClient_CustomCloudEnvironmentDelete_Call) Run added in v0.129.0

func (_c *MockClient_CustomCloudEnvironmentDelete_Call) Run(run func(ctx context.Context, organizationId string, customCloudEnvironmentId string)) *MockClient_CustomCloudEnvironmentDelete_Call

func (*MockClient_CustomCloudEnvironmentDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_CustomCloudEnvironmentDelete_Call) RunAndReturn(run func(ctx context.Context, organizationId string, customCloudEnvironmentId string) error) *MockClient_CustomCloudEnvironmentDelete_Call

type MockClient_CustomCloudEnvironmentGet_Call added in v0.129.0

type MockClient_CustomCloudEnvironmentGet_Call struct {
	*mock.Call
}

MockClient_CustomCloudEnvironmentGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CustomCloudEnvironmentGet'

func (*MockClient_CustomCloudEnvironmentGet_Call) Return added in v0.129.0

func (*MockClient_CustomCloudEnvironmentGet_Call) Run added in v0.129.0

func (_c *MockClient_CustomCloudEnvironmentGet_Call) Run(run func(ctx context.Context, organizationId string, customCloudEnvironmentId string)) *MockClient_CustomCloudEnvironmentGet_Call

func (*MockClient_CustomCloudEnvironmentGet_Call) RunAndReturn added in v0.129.0

type MockClient_CustomCloudEnvironmentPermissionsGet_Call added in v0.129.0

type MockClient_CustomCloudEnvironmentPermissionsGet_Call struct {
	*mock.Call
}

MockClient_CustomCloudEnvironmentPermissionsGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CustomCloudEnvironmentPermissionsGet'

func (*MockClient_CustomCloudEnvironmentPermissionsGet_Call) Return added in v0.129.0

func (*MockClient_CustomCloudEnvironmentPermissionsGet_Call) Run added in v0.129.0

func (*MockClient_CustomCloudEnvironmentPermissionsGet_Call) RunAndReturn added in v0.129.0

type MockClient_CustomCloudEnvironmentPermissionsSet_Call added in v0.129.0

type MockClient_CustomCloudEnvironmentPermissionsSet_Call struct {
	*mock.Call
}

MockClient_CustomCloudEnvironmentPermissionsSet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CustomCloudEnvironmentPermissionsSet'

func (*MockClient_CustomCloudEnvironmentPermissionsSet_Call) Return added in v0.129.0

func (*MockClient_CustomCloudEnvironmentPermissionsSet_Call) Run added in v0.129.0

func (*MockClient_CustomCloudEnvironmentPermissionsSet_Call) RunAndReturn added in v0.129.0

type MockClient_CustomCloudEnvironmentProvision_Call added in v0.129.0

type MockClient_CustomCloudEnvironmentProvision_Call struct {
	*mock.Call
}

MockClient_CustomCloudEnvironmentProvision_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CustomCloudEnvironmentProvision'

func (*MockClient_CustomCloudEnvironmentProvision_Call) Return added in v0.129.0

func (*MockClient_CustomCloudEnvironmentProvision_Call) Run added in v0.129.0

func (*MockClient_CustomCloudEnvironmentProvision_Call) RunAndReturn added in v0.129.0

type MockClient_CustomCloudEnvironmentUpdate_Call added in v0.129.0

type MockClient_CustomCloudEnvironmentUpdate_Call struct {
	*mock.Call
}

MockClient_CustomCloudEnvironmentUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'CustomCloudEnvironmentUpdate'

func (*MockClient_CustomCloudEnvironmentUpdate_Call) Return added in v0.129.0

func (*MockClient_CustomCloudEnvironmentUpdate_Call) Run added in v0.129.0

func (*MockClient_CustomCloudEnvironmentUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_Expecter added in v0.129.0

type MockClient_Expecter struct {
	// contains filtered or unexported fields
}

func (*MockClient_Expecter) AccessTokenCreate added in v0.129.0

func (_e *MockClient_Expecter) AccessTokenCreate(ctx interface{}, in interface{}) *MockClient_AccessTokenCreate_Call

AccessTokenCreate is a helper method to define mock.On call

  • ctx context.Context
  • in *user.AccessTokenCreateIn

func (*MockClient_Expecter) AccessTokenList added in v0.129.0

func (_e *MockClient_Expecter) AccessTokenList(ctx interface{}) *MockClient_AccessTokenList_Call

AccessTokenList is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) AccessTokenRevoke added in v0.129.0

func (_e *MockClient_Expecter) AccessTokenRevoke(ctx interface{}, tokenPrefix interface{}) *MockClient_AccessTokenRevoke_Call

AccessTokenRevoke is a helper method to define mock.On call

  • ctx context.Context
  • tokenPrefix string

func (*MockClient_Expecter) AccessTokenUpdate added in v0.129.0

func (_e *MockClient_Expecter) AccessTokenUpdate(ctx interface{}, tokenPrefix interface{}, in interface{}) *MockClient_AccessTokenUpdate_Call

AccessTokenUpdate is a helper method to define mock.On call

  • ctx context.Context
  • tokenPrefix string
  • in *user.AccessTokenUpdateIn

func (*MockClient_Expecter) AccountAttachPaymentMethod added in v0.129.0

func (_e *MockClient_Expecter) AccountAttachPaymentMethod(ctx interface{}, accountId interface{}, in interface{}) *MockClient_AccountAttachPaymentMethod_Call

AccountAttachPaymentMethod is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • in *account.AccountAttachPaymentMethodIn

func (*MockClient_Expecter) AccountAuthenticationMethodCreate added in v0.129.0

func (_e *MockClient_Expecter) AccountAuthenticationMethodCreate(ctx interface{}, accountId interface{}, in interface{}) *MockClient_AccountAuthenticationMethodCreate_Call

AccountAuthenticationMethodCreate is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • in *accountauthentication.AccountAuthenticationMethodCreateIn

func (*MockClient_Expecter) AccountAuthenticationMethodDelete added in v0.129.0

func (_e *MockClient_Expecter) AccountAuthenticationMethodDelete(ctx interface{}, accountId interface{}, accountAuthenticationMethodId interface{}) *MockClient_AccountAuthenticationMethodDelete_Call

AccountAuthenticationMethodDelete is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • accountAuthenticationMethodId string

func (*MockClient_Expecter) AccountAuthenticationMethodGet added in v0.129.0

func (_e *MockClient_Expecter) AccountAuthenticationMethodGet(ctx interface{}, accountId interface{}, accountAuthenticationMethodId interface{}) *MockClient_AccountAuthenticationMethodGet_Call

AccountAuthenticationMethodGet is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • accountAuthenticationMethodId string

func (*MockClient_Expecter) AccountAuthenticationMethodUpdate added in v0.129.0

func (_e *MockClient_Expecter) AccountAuthenticationMethodUpdate(ctx interface{}, accountId interface{}, accountAuthenticationMethodId interface{}, in interface{}) *MockClient_AccountAuthenticationMethodUpdate_Call

AccountAuthenticationMethodUpdate is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • accountAuthenticationMethodId string
  • in *accountauthentication.AccountAuthenticationMethodUpdateIn

func (*MockClient_Expecter) AccountAuthenticationMethodsList added in v0.129.0

func (_e *MockClient_Expecter) AccountAuthenticationMethodsList(ctx interface{}, accountId interface{}) *MockClient_AccountAuthenticationMethodsList_Call

AccountAuthenticationMethodsList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string

func (*MockClient_Expecter) AccountBillingGroupList added in v0.129.0

func (_e *MockClient_Expecter) AccountBillingGroupList(ctx interface{}, accountId interface{}) *MockClient_AccountBillingGroupList_Call

AccountBillingGroupList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string

func (*MockClient_Expecter) AccountCreate added in v0.129.0

func (_e *MockClient_Expecter) AccountCreate(ctx interface{}, in interface{}) *MockClient_AccountCreate_Call

AccountCreate is a helper method to define mock.On call

  • ctx context.Context
  • in *account.AccountCreateIn

func (*MockClient_Expecter) AccountDelete added in v0.129.0

func (_e *MockClient_Expecter) AccountDelete(ctx interface{}, accountId interface{}) *MockClient_AccountDelete_Call

AccountDelete is a helper method to define mock.On call

  • ctx context.Context
  • accountId string

func (*MockClient_Expecter) AccountEventList added in v0.129.0

func (_e *MockClient_Expecter) AccountEventList(ctx interface{}, accountId interface{}) *MockClient_AccountEventList_Call

AccountEventList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string

func (*MockClient_Expecter) AccountGet added in v0.129.0

func (_e *MockClient_Expecter) AccountGet(ctx interface{}, accountId interface{}) *MockClient_AccountGet_Call

AccountGet is a helper method to define mock.On call

  • ctx context.Context
  • accountId string

func (*MockClient_Expecter) AccountList added in v0.129.0

func (_e *MockClient_Expecter) AccountList(ctx interface{}) *MockClient_AccountList_Call

AccountList is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) AccountMove added in v0.129.0

func (_e *MockClient_Expecter) AccountMove(ctx interface{}, accountId interface{}, in interface{}) *MockClient_AccountMove_Call

AccountMove is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • in *account.AccountMoveIn

func (*MockClient_Expecter) AccountPaymentMethodDelete added in v0.129.0

func (_e *MockClient_Expecter) AccountPaymentMethodDelete(ctx interface{}, accountId interface{}, cardId interface{}) *MockClient_AccountPaymentMethodDelete_Call

AccountPaymentMethodDelete is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • cardId string

func (*MockClient_Expecter) AccountPaymentMethodsList added in v0.129.0

func (_e *MockClient_Expecter) AccountPaymentMethodsList(ctx interface{}, accountId interface{}) *MockClient_AccountPaymentMethodsList_Call

AccountPaymentMethodsList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string

func (*MockClient_Expecter) AccountProjectsList added in v0.129.0

func (_e *MockClient_Expecter) AccountProjectsList(ctx interface{}, accountId interface{}) *MockClient_AccountProjectsList_Call

AccountProjectsList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string

func (*MockClient_Expecter) AccountProjectsTeamsList added in v0.129.0

func (_e *MockClient_Expecter) AccountProjectsTeamsList(ctx interface{}, accountId interface{}, projectName interface{}) *MockClient_AccountProjectsTeamsList_Call

AccountProjectsTeamsList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • projectName string

func (*MockClient_Expecter) AccountTeamCreate added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamCreate(ctx interface{}, accountId interface{}, in interface{}) *MockClient_AccountTeamCreate_Call

AccountTeamCreate is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • in *accountteam.AccountTeamCreateIn

func (*MockClient_Expecter) AccountTeamDelete added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamDelete(ctx interface{}, accountId interface{}, teamId interface{}) *MockClient_AccountTeamDelete_Call

AccountTeamDelete is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string

func (*MockClient_Expecter) AccountTeamGet added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamGet(ctx interface{}, accountId interface{}, teamId interface{}) *MockClient_AccountTeamGet_Call

AccountTeamGet is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string

func (*MockClient_Expecter) AccountTeamInvitesList added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamInvitesList(ctx interface{}, accountId interface{}, teamId interface{}) *MockClient_AccountTeamInvitesList_Call

AccountTeamInvitesList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string

func (*MockClient_Expecter) AccountTeamList added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamList(ctx interface{}, accountId interface{}) *MockClient_AccountTeamList_Call

AccountTeamList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string

func (*MockClient_Expecter) AccountTeamMemberCancelInvite added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamMemberCancelInvite(ctx interface{}, accountId interface{}, teamId interface{}, userEmail interface{}) *MockClient_AccountTeamMemberCancelInvite_Call

AccountTeamMemberCancelInvite is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string
  • userEmail string

func (*MockClient_Expecter) AccountTeamMemberVerifyInvite added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamMemberVerifyInvite(ctx interface{}, accountId interface{}, inviteVerificationCode interface{}) *MockClient_AccountTeamMemberVerifyInvite_Call

AccountTeamMemberVerifyInvite is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • inviteVerificationCode string

func (*MockClient_Expecter) AccountTeamMembersDelete added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamMembersDelete(ctx interface{}, accountId interface{}, teamId interface{}, userId interface{}) *MockClient_AccountTeamMembersDelete_Call

AccountTeamMembersDelete is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string
  • userId string

func (*MockClient_Expecter) AccountTeamMembersInvite added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamMembersInvite(ctx interface{}, accountId interface{}, teamId interface{}, in interface{}) *MockClient_AccountTeamMembersInvite_Call

AccountTeamMembersInvite is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string
  • in *accountteammember.AccountTeamMembersInviteIn

func (*MockClient_Expecter) AccountTeamMembersList added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamMembersList(ctx interface{}, accountId interface{}, teamId interface{}) *MockClient_AccountTeamMembersList_Call

AccountTeamMembersList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string

func (*MockClient_Expecter) AccountTeamProjectAssociate added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamProjectAssociate(ctx interface{}, accountId interface{}, teamId interface{}, project interface{}, in interface{}) *MockClient_AccountTeamProjectAssociate_Call

AccountTeamProjectAssociate is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string
  • project string
  • in *accountteam.AccountTeamProjectAssociateIn

func (*MockClient_Expecter) AccountTeamProjectAssociationUpdate added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamProjectAssociationUpdate(ctx interface{}, accountId interface{}, teamId interface{}, project interface{}, in interface{}) *MockClient_AccountTeamProjectAssociationUpdate_Call

AccountTeamProjectAssociationUpdate is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string
  • project string
  • in *accountteam.AccountTeamProjectAssociationUpdateIn

func (*MockClient_Expecter) AccountTeamProjectDisassociate added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamProjectDisassociate(ctx interface{}, accountId interface{}, teamId interface{}, project interface{}) *MockClient_AccountTeamProjectDisassociate_Call

AccountTeamProjectDisassociate is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string
  • project string

func (*MockClient_Expecter) AccountTeamProjectList added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamProjectList(ctx interface{}, accountId interface{}, teamId interface{}) *MockClient_AccountTeamProjectList_Call

AccountTeamProjectList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string

func (*MockClient_Expecter) AccountTeamUpdate added in v0.129.0

func (_e *MockClient_Expecter) AccountTeamUpdate(ctx interface{}, accountId interface{}, teamId interface{}, in interface{}) *MockClient_AccountTeamUpdate_Call

AccountTeamUpdate is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • teamId string
  • in *accountteam.AccountTeamUpdateIn

func (*MockClient_Expecter) AccountUpdate added in v0.129.0

func (_e *MockClient_Expecter) AccountUpdate(ctx interface{}, accountId interface{}, in interface{}) *MockClient_AccountUpdate_Call

AccountUpdate is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • in *account.AccountUpdateIn

func (*MockClient_Expecter) AccountUserProjectsList added in v0.129.0

func (_e *MockClient_Expecter) AccountUserProjectsList(ctx interface{}, accountId interface{}, userId interface{}) *MockClient_AccountUserProjectsList_Call

AccountUserProjectsList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • userId string

func (*MockClient_Expecter) AccountUserTeamsList added in v0.129.0

func (_e *MockClient_Expecter) AccountUserTeamsList(ctx interface{}, accountId interface{}, userId interface{}) *MockClient_AccountUserTeamsList_Call

AccountUserTeamsList is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • userId string

func (*MockClient_Expecter) AccountUsersSearch added in v0.129.0

func (_e *MockClient_Expecter) AccountUsersSearch(ctx interface{}, accountId interface{}, in interface{}) *MockClient_AccountUsersSearch_Call

AccountUsersSearch is a helper method to define mock.On call

  • ctx context.Context
  • accountId string
  • in *account.AccountUsersSearchIn

func (*MockClient_Expecter) AlloyDbOmniGoogleCloudPrivateKeyIdentify added in v0.129.0

func (_e *MockClient_Expecter) AlloyDbOmniGoogleCloudPrivateKeyIdentify(ctx interface{}, project interface{}, serviceName interface{}) *MockClient_AlloyDbOmniGoogleCloudPrivateKeyIdentify_Call

AlloyDbOmniGoogleCloudPrivateKeyIdentify is a helper method to define mock.On call

  • ctx context.Context
  • project string
  • serviceName string

func (*MockClient_Expecter) AlloyDbOmniGoogleCloudPrivateKeyRemove added in v0.129.0

func (_e *MockClient_Expecter) AlloyDbOmniGoogleCloudPrivateKeyRemove(ctx interface{}, project interface{}, serviceName interface{}) *MockClient_AlloyDbOmniGoogleCloudPrivateKeyRemove_Call

AlloyDbOmniGoogleCloudPrivateKeyRemove is a helper method to define mock.On call

  • ctx context.Context
  • project string
  • serviceName string

func (*MockClient_Expecter) AlloyDbOmniGoogleCloudPrivateKeySet added in v0.129.0

func (_e *MockClient_Expecter) AlloyDbOmniGoogleCloudPrivateKeySet(ctx interface{}, project interface{}, serviceName interface{}, in interface{}) *MockClient_AlloyDbOmniGoogleCloudPrivateKeySet_Call

AlloyDbOmniGoogleCloudPrivateKeySet is a helper method to define mock.On call

  • ctx context.Context
  • project string
  • serviceName string
  • in *alloydbomni.AlloyDbOmniGoogleCloudPrivateKeySetIn

func (*MockClient_Expecter) ApplicationUserAccessTokenCreate added in v0.129.0

func (_e *MockClient_Expecter) ApplicationUserAccessTokenCreate(ctx interface{}, organizationId interface{}, userId interface{}, in interface{}) *MockClient_ApplicationUserAccessTokenCreate_Call

ApplicationUserAccessTokenCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userId string
  • in *applicationuser.ApplicationUserAccessTokenCreateIn

func (*MockClient_Expecter) ApplicationUserAccessTokenDelete added in v0.129.0

func (_e *MockClient_Expecter) ApplicationUserAccessTokenDelete(ctx interface{}, organizationId interface{}, userId interface{}, tokenPrefix interface{}) *MockClient_ApplicationUserAccessTokenDelete_Call

ApplicationUserAccessTokenDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userId string
  • tokenPrefix string

func (*MockClient_Expecter) ApplicationUserAccessTokensList added in v0.129.0

func (_e *MockClient_Expecter) ApplicationUserAccessTokensList(ctx interface{}, organizationId interface{}, userId interface{}) *MockClient_ApplicationUserAccessTokensList_Call

ApplicationUserAccessTokensList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userId string

func (*MockClient_Expecter) ApplicationUserCreate added in v0.129.0

func (_e *MockClient_Expecter) ApplicationUserCreate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_ApplicationUserCreate_Call

ApplicationUserCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *applicationuser.ApplicationUserCreateIn

func (*MockClient_Expecter) ApplicationUserDelete added in v0.129.0

func (_e *MockClient_Expecter) ApplicationUserDelete(ctx interface{}, organizationId interface{}, userId interface{}) *MockClient_ApplicationUserDelete_Call

ApplicationUserDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userId string

func (*MockClient_Expecter) ApplicationUserGet added in v0.129.0

func (_e *MockClient_Expecter) ApplicationUserGet(ctx interface{}, organizationId interface{}, userId interface{}) *MockClient_ApplicationUserGet_Call

ApplicationUserGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userId string

func (*MockClient_Expecter) ApplicationUserUpdate added in v0.129.0

func (_e *MockClient_Expecter) ApplicationUserUpdate(ctx interface{}, organizationId interface{}, userId interface{}, in interface{}) *MockClient_ApplicationUserUpdate_Call

ApplicationUserUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userId string
  • in *applicationuser.ApplicationUserUpdateIn

func (*MockClient_Expecter) ApplicationUsersList added in v0.129.0

func (_e *MockClient_Expecter) ApplicationUsersList(ctx interface{}, organizationId interface{}) *MockClient_ApplicationUsersList_Call

ApplicationUsersList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) BillingGroupCreate added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupCreate(ctx interface{}, in interface{}) *MockClient_BillingGroupCreate_Call

BillingGroupCreate is a helper method to define mock.On call

  • ctx context.Context
  • in *billinggroup.BillingGroupCreateIn

func (*MockClient_Expecter) BillingGroupCreditsClaim added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupCreditsClaim(ctx interface{}, billingGroupId interface{}, in interface{}) *MockClient_BillingGroupCreditsClaim_Call

BillingGroupCreditsClaim is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string
  • in *billinggroup.BillingGroupCreditsClaimIn

func (*MockClient_Expecter) BillingGroupCreditsList added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupCreditsList(ctx interface{}, billingGroupId interface{}) *MockClient_BillingGroupCreditsList_Call

BillingGroupCreditsList is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string

func (*MockClient_Expecter) BillingGroupDelete added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupDelete(ctx interface{}, billingGroupId interface{}) *MockClient_BillingGroupDelete_Call

BillingGroupDelete is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string

func (*MockClient_Expecter) BillingGroupEventList added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupEventList(ctx interface{}, billingGroupId interface{}) *MockClient_BillingGroupEventList_Call

BillingGroupEventList is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string

func (*MockClient_Expecter) BillingGroupGet added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupGet(ctx interface{}, billingGroupId interface{}) *MockClient_BillingGroupGet_Call

BillingGroupGet is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string

func (*MockClient_Expecter) BillingGroupInvoiceLinesList added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupInvoiceLinesList(ctx interface{}, billingGroupId interface{}, invoiceNumber interface{}) *MockClient_BillingGroupInvoiceLinesList_Call

BillingGroupInvoiceLinesList is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string
  • invoiceNumber string

func (*MockClient_Expecter) BillingGroupInvoiceList added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupInvoiceList(ctx interface{}, billingGroupId interface{}) *MockClient_BillingGroupInvoiceList_Call

BillingGroupInvoiceList is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string

func (*MockClient_Expecter) BillingGroupList added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupList(ctx interface{}) *MockClient_BillingGroupList_Call

BillingGroupList is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) BillingGroupProjectAssign added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupProjectAssign(ctx interface{}, billingGroupId interface{}, project interface{}) *MockClient_BillingGroupProjectAssign_Call

BillingGroupProjectAssign is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string
  • project string

func (*MockClient_Expecter) BillingGroupProjectList added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupProjectList(ctx interface{}, billingGroupId interface{}) *MockClient_BillingGroupProjectList_Call

BillingGroupProjectList is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string

func (*MockClient_Expecter) BillingGroupProjectsAssign added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupProjectsAssign(ctx interface{}, billingGroupId interface{}, in interface{}) *MockClient_BillingGroupProjectsAssign_Call

BillingGroupProjectsAssign is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string
  • in *billinggroup.BillingGroupProjectsAssignIn

func (*MockClient_Expecter) BillingGroupUpdate added in v0.129.0

func (_e *MockClient_Expecter) BillingGroupUpdate(ctx interface{}, billingGroupId interface{}, in interface{}) *MockClient_BillingGroupUpdate_Call

BillingGroupUpdate is a helper method to define mock.On call

  • ctx context.Context
  • billingGroupId string
  • in *billinggroup.BillingGroupUpdateIn

func (*MockClient_Expecter) CheckPasswordStrengthExistingUser added in v0.129.0

func (_e *MockClient_Expecter) CheckPasswordStrengthExistingUser(ctx interface{}, in interface{}) *MockClient_CheckPasswordStrengthExistingUser_Call

CheckPasswordStrengthExistingUser is a helper method to define mock.On call

  • ctx context.Context
  • in *user.CheckPasswordStrengthExistingUserIn

func (*MockClient_Expecter) CheckPasswordStrengthNewUser added in v0.129.0

func (_e *MockClient_Expecter) CheckPasswordStrengthNewUser(ctx interface{}, in interface{}) *MockClient_CheckPasswordStrengthNewUser_Call

CheckPasswordStrengthNewUser is a helper method to define mock.On call

  • ctx context.Context
  • in *user.CheckPasswordStrengthNewUserIn

func (*MockClient_Expecter) CustomCloudEnvironmentCreate added in v0.129.0

func (_e *MockClient_Expecter) CustomCloudEnvironmentCreate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_CustomCloudEnvironmentCreate_Call

CustomCloudEnvironmentCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *byoc.CustomCloudEnvironmentCreateIn

func (*MockClient_Expecter) CustomCloudEnvironmentDelete added in v0.129.0

func (_e *MockClient_Expecter) CustomCloudEnvironmentDelete(ctx interface{}, organizationId interface{}, customCloudEnvironmentId interface{}) *MockClient_CustomCloudEnvironmentDelete_Call

CustomCloudEnvironmentDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • customCloudEnvironmentId string

func (*MockClient_Expecter) CustomCloudEnvironmentGet added in v0.129.0

func (_e *MockClient_Expecter) CustomCloudEnvironmentGet(ctx interface{}, organizationId interface{}, customCloudEnvironmentId interface{}) *MockClient_CustomCloudEnvironmentGet_Call

CustomCloudEnvironmentGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • customCloudEnvironmentId string

func (*MockClient_Expecter) CustomCloudEnvironmentPermissionsGet added in v0.129.0

func (_e *MockClient_Expecter) CustomCloudEnvironmentPermissionsGet(ctx interface{}, organizationId interface{}, customCloudEnvironmentId interface{}) *MockClient_CustomCloudEnvironmentPermissionsGet_Call

CustomCloudEnvironmentPermissionsGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • customCloudEnvironmentId string

func (*MockClient_Expecter) CustomCloudEnvironmentPermissionsSet added in v0.129.0

func (_e *MockClient_Expecter) CustomCloudEnvironmentPermissionsSet(ctx interface{}, organizationId interface{}, customCloudEnvironmentId interface{}, in interface{}) *MockClient_CustomCloudEnvironmentPermissionsSet_Call

CustomCloudEnvironmentPermissionsSet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • customCloudEnvironmentId string
  • in *byoc.CustomCloudEnvironmentPermissionsSetIn

func (*MockClient_Expecter) CustomCloudEnvironmentProvision added in v0.129.0

func (_e *MockClient_Expecter) CustomCloudEnvironmentProvision(ctx interface{}, organizationId interface{}, customCloudEnvironmentId interface{}, in interface{}) *MockClient_CustomCloudEnvironmentProvision_Call

CustomCloudEnvironmentProvision is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • customCloudEnvironmentId string
  • in *byoc.CustomCloudEnvironmentProvisionIn

func (*MockClient_Expecter) CustomCloudEnvironmentUpdate added in v0.129.0

func (_e *MockClient_Expecter) CustomCloudEnvironmentUpdate(ctx interface{}, organizationId interface{}, customCloudEnvironmentId interface{}, in interface{}) *MockClient_CustomCloudEnvironmentUpdate_Call

CustomCloudEnvironmentUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • customCloudEnvironmentId string
  • in *byoc.CustomCloudEnvironmentUpdateIn

func (*MockClient_Expecter) InvoiceGet added in v0.129.0

func (_e *MockClient_Expecter) InvoiceGet(ctx interface{}, invoiceNumber interface{}) *MockClient_InvoiceGet_Call

InvoiceGet is a helper method to define mock.On call

  • ctx context.Context
  • invoiceNumber string

func (*MockClient_Expecter) ListClouds added in v0.129.0

func (_e *MockClient_Expecter) ListClouds(ctx interface{}) *MockClient_ListClouds_Call

ListClouds is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) ListProjectClouds added in v0.129.0

func (_e *MockClient_Expecter) ListProjectClouds(ctx interface{}, project interface{}) *MockClient_ListProjectClouds_Call

ListProjectClouds is a helper method to define mock.On call

  • ctx context.Context
  • project string

func (*MockClient_Expecter) ListProjectServiceTypes added in v0.129.0

func (_e *MockClient_Expecter) ListProjectServiceTypes(ctx interface{}, project interface{}) *MockClient_ListProjectServiceTypes_Call

ListProjectServiceTypes is a helper method to define mock.On call

  • ctx context.Context
  • project string

func (*MockClient_Expecter) ListProjectVpcPeeringConnectionTypes added in v0.129.0

func (_e *MockClient_Expecter) ListProjectVpcPeeringConnectionTypes(ctx interface{}, project1 interface{}) *MockClient_ListProjectVpcPeeringConnectionTypes_Call

ListProjectVpcPeeringConnectionTypes is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ListPublicServiceTypes added in v0.129.0

func (_e *MockClient_Expecter) ListPublicServiceTypes(ctx interface{}) *MockClient_ListPublicServiceTypes_Call

ListPublicServiceTypes is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) ListServiceVersions added in v0.129.0

func (_e *MockClient_Expecter) ListServiceVersions(ctx interface{}) *MockClient_ListServiceVersions_Call

ListServiceVersions is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) MySQLServiceQueryStatistics added in v0.129.0

func (_e *MockClient_Expecter) MySQLServiceQueryStatistics(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_MySQLServiceQueryStatistics_Call

MySQLServiceQueryStatistics is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *mysql.MySqlserviceQueryStatisticsIn

func (*MockClient_Expecter) OrganizationAddressCreate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationAddressCreate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_OrganizationAddressCreate_Call

OrganizationAddressCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *organization.OrganizationAddressCreateIn

func (*MockClient_Expecter) OrganizationAddressDelete added in v0.129.0

func (_e *MockClient_Expecter) OrganizationAddressDelete(ctx interface{}, organizationId interface{}, addressId interface{}) *MockClient_OrganizationAddressDelete_Call

OrganizationAddressDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • addressId string

func (*MockClient_Expecter) OrganizationAddressGet added in v0.129.0

func (_e *MockClient_Expecter) OrganizationAddressGet(ctx interface{}, organizationId interface{}, addressId interface{}) *MockClient_OrganizationAddressGet_Call

OrganizationAddressGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • addressId string

func (*MockClient_Expecter) OrganizationAddressList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationAddressList(ctx interface{}, organizationId interface{}) *MockClient_OrganizationAddressList_Call

OrganizationAddressList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) OrganizationAddressUpdate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationAddressUpdate(ctx interface{}, organizationId interface{}, addressId interface{}, in interface{}) *MockClient_OrganizationAddressUpdate_Call

OrganizationAddressUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • addressId string
  • in *organization.OrganizationAddressUpdateIn
func (_e *MockClient_Expecter) OrganizationAuthDomainLink(ctx interface{}, organizationId interface{}, authenticationMethodId interface{}, in interface{}) *MockClient_OrganizationAuthDomainLink_Call

OrganizationAuthDomainLink is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • authenticationMethodId string
  • in *organization.OrganizationAuthDomainLinkIn

func (*MockClient_Expecter) OrganizationAuthDomainList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationAuthDomainList(ctx interface{}, organizationId interface{}, authenticationMethodId interface{}) *MockClient_OrganizationAuthDomainList_Call

OrganizationAuthDomainList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • authenticationMethodId string
func (_e *MockClient_Expecter) OrganizationAuthDomainUnlink(ctx interface{}, organizationId interface{}, authenticationMethodId interface{}, domainId interface{}) *MockClient_OrganizationAuthDomainUnlink_Call

OrganizationAuthDomainUnlink is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • authenticationMethodId string
  • domainId string

func (*MockClient_Expecter) OrganizationAuthenticationConfigGet added in v0.129.0

func (_e *MockClient_Expecter) OrganizationAuthenticationConfigGet(ctx interface{}, organizationId interface{}) *MockClient_OrganizationAuthenticationConfigGet_Call

OrganizationAuthenticationConfigGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) OrganizationAuthenticationConfigUpdate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationAuthenticationConfigUpdate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_OrganizationAuthenticationConfigUpdate_Call

OrganizationAuthenticationConfigUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *organization.OrganizationAuthenticationConfigUpdateIn

func (*MockClient_Expecter) OrganizationBillingGroupCreate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationBillingGroupCreate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_OrganizationBillingGroupCreate_Call

OrganizationBillingGroupCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *organizationbilling.OrganizationBillingGroupCreateIn

func (*MockClient_Expecter) OrganizationBillingGroupDelete added in v0.129.0

func (_e *MockClient_Expecter) OrganizationBillingGroupDelete(ctx interface{}, organizationId interface{}, billingGroupId interface{}) *MockClient_OrganizationBillingGroupDelete_Call

OrganizationBillingGroupDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • billingGroupId string

func (*MockClient_Expecter) OrganizationBillingGroupGet added in v0.129.0

func (_e *MockClient_Expecter) OrganizationBillingGroupGet(ctx interface{}, organizationId interface{}, billingGroupId interface{}) *MockClient_OrganizationBillingGroupGet_Call

OrganizationBillingGroupGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • billingGroupId string

func (*MockClient_Expecter) OrganizationBillingGroupList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationBillingGroupList(ctx interface{}, organizationId interface{}) *MockClient_OrganizationBillingGroupList_Call

OrganizationBillingGroupList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) OrganizationBillingGroupUpdate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationBillingGroupUpdate(ctx interface{}, organizationId interface{}, billingGroupId interface{}, in interface{}) *MockClient_OrganizationBillingGroupUpdate_Call

OrganizationBillingGroupUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • billingGroupId string
  • in *organizationbilling.OrganizationBillingGroupUpdateIn

func (*MockClient_Expecter) OrganizationDelete added in v0.129.0

func (_e *MockClient_Expecter) OrganizationDelete(ctx interface{}, organizationId interface{}, query ...interface{}) *MockClient_OrganizationDelete_Call

OrganizationDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • query ...[2]string

func (*MockClient_Expecter) OrganizationDomainAdd added in v0.129.0

func (_e *MockClient_Expecter) OrganizationDomainAdd(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_OrganizationDomainAdd_Call

OrganizationDomainAdd is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *domain.OrganizationDomainAddIn

func (*MockClient_Expecter) OrganizationDomainUpdate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationDomainUpdate(ctx interface{}, organizationId interface{}, domainId interface{}, in interface{}) *MockClient_OrganizationDomainUpdate_Call

OrganizationDomainUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • domainId string
  • in *domain.OrganizationDomainUpdateIn

func (*MockClient_Expecter) OrganizationDomainVerify added in v0.129.0

func (_e *MockClient_Expecter) OrganizationDomainVerify(ctx interface{}, organizationId interface{}, domainId interface{}) *MockClient_OrganizationDomainVerify_Call

OrganizationDomainVerify is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • domainId string

func (*MockClient_Expecter) OrganizationDomainsList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationDomainsList(ctx interface{}, organizationId interface{}) *MockClient_OrganizationDomainsList_Call

OrganizationDomainsList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) OrganizationDomainsRemove added in v0.129.0

func (_e *MockClient_Expecter) OrganizationDomainsRemove(ctx interface{}, organizationId interface{}, domainId interface{}) *MockClient_OrganizationDomainsRemove_Call

OrganizationDomainsRemove is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • domainId string

func (*MockClient_Expecter) OrganizationGet added in v0.129.0

func (_e *MockClient_Expecter) OrganizationGet(ctx interface{}, organizationId interface{}) *MockClient_OrganizationGet_Call

OrganizationGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) OrganizationGovernanceAccessCreate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationGovernanceAccessCreate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_OrganizationGovernanceAccessCreate_Call

OrganizationGovernanceAccessCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *organizationgovernance.OrganizationGovernanceAccessCreateIn

func (*MockClient_Expecter) OrganizationGovernanceAccessDelete added in v0.129.0

func (_e *MockClient_Expecter) OrganizationGovernanceAccessDelete(ctx interface{}, organizationId interface{}, accessId interface{}) *MockClient_OrganizationGovernanceAccessDelete_Call

OrganizationGovernanceAccessDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • accessId string

func (*MockClient_Expecter) OrganizationGovernanceAccessGet added in v0.129.0

func (_e *MockClient_Expecter) OrganizationGovernanceAccessGet(ctx interface{}, organizationId interface{}, accessId interface{}) *MockClient_OrganizationGovernanceAccessGet_Call

OrganizationGovernanceAccessGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • accessId string

func (*MockClient_Expecter) OrganizationGovernanceAccessList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationGovernanceAccessList(ctx interface{}, organizationId interface{}, query ...interface{}) *MockClient_OrganizationGovernanceAccessList_Call

OrganizationGovernanceAccessList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • query ...[2]string

func (*MockClient_Expecter) OrganizationMemberGroupsList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationMemberGroupsList(ctx interface{}, organizationId interface{}, memberUserId interface{}) *MockClient_OrganizationMemberGroupsList_Call

OrganizationMemberGroupsList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • memberUserId string

func (*MockClient_Expecter) OrganizationProjectsCreate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationProjectsCreate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_OrganizationProjectsCreate_Call

OrganizationProjectsCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *organizationprojects.OrganizationProjectsCreateIn

func (*MockClient_Expecter) OrganizationProjectsDelete added in v0.129.0

func (_e *MockClient_Expecter) OrganizationProjectsDelete(ctx interface{}, organizationId interface{}, projectId interface{}) *MockClient_OrganizationProjectsDelete_Call

OrganizationProjectsDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • projectId string

func (*MockClient_Expecter) OrganizationProjectsGet added in v0.129.0

func (_e *MockClient_Expecter) OrganizationProjectsGet(ctx interface{}, organizationId interface{}, projectId interface{}) *MockClient_OrganizationProjectsGet_Call

OrganizationProjectsGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • projectId string

func (*MockClient_Expecter) OrganizationProjectsList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationProjectsList(ctx interface{}, organizationId interface{}) *MockClient_OrganizationProjectsList_Call

OrganizationProjectsList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) OrganizationProjectsUpdate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationProjectsUpdate(ctx interface{}, organizationId interface{}, projectId interface{}, in interface{}) *MockClient_OrganizationProjectsUpdate_Call

OrganizationProjectsUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • projectId string
  • in *organizationprojects.OrganizationProjectsUpdateIn

func (*MockClient_Expecter) OrganizationUpdate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUpdate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_OrganizationUpdate_Call

OrganizationUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *organization.OrganizationUpdateIn

func (*MockClient_Expecter) OrganizationUserAuthenticationMethodsList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserAuthenticationMethodsList(ctx interface{}, organizationId interface{}, memberUserId interface{}) *MockClient_OrganizationUserAuthenticationMethodsList_Call

OrganizationUserAuthenticationMethodsList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • memberUserId string

func (*MockClient_Expecter) OrganizationUserDelete added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserDelete(ctx interface{}, organizationId interface{}, memberUserId interface{}) *MockClient_OrganizationUserDelete_Call

OrganizationUserDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • memberUserId string

func (*MockClient_Expecter) OrganizationUserGet added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserGet(ctx interface{}, organizationId interface{}, memberUserId interface{}) *MockClient_OrganizationUserGet_Call

OrganizationUserGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • memberUserId string

func (*MockClient_Expecter) OrganizationUserInvitationAccept added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserInvitationAccept(ctx interface{}, organizationId interface{}, userEmail interface{}, in interface{}) *MockClient_OrganizationUserInvitationAccept_Call

OrganizationUserInvitationAccept is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userEmail string
  • in *organizationuser.OrganizationUserInvitationAcceptIn

func (*MockClient_Expecter) OrganizationUserInvitationDelete added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserInvitationDelete(ctx interface{}, organizationId interface{}, userEmail interface{}) *MockClient_OrganizationUserInvitationDelete_Call

OrganizationUserInvitationDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userEmail string

func (*MockClient_Expecter) OrganizationUserInvitationsList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserInvitationsList(ctx interface{}, organizationId interface{}) *MockClient_OrganizationUserInvitationsList_Call

OrganizationUserInvitationsList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) OrganizationUserInvite added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserInvite(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_OrganizationUserInvite_Call

OrganizationUserInvite is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *organizationuser.OrganizationUserInviteIn

func (*MockClient_Expecter) OrganizationUserList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserList(ctx interface{}, organizationId interface{}) *MockClient_OrganizationUserList_Call

OrganizationUserList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) OrganizationUserPasswordReset added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserPasswordReset(ctx interface{}, organizationId interface{}, memberUserId interface{}) *MockClient_OrganizationUserPasswordReset_Call

OrganizationUserPasswordReset is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • memberUserId string

func (*MockClient_Expecter) OrganizationUserRevokeToken added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserRevokeToken(ctx interface{}, organizationId interface{}, memberUserId interface{}, tokenPrefix interface{}) *MockClient_OrganizationUserRevokeToken_Call

OrganizationUserRevokeToken is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • memberUserId string
  • tokenPrefix string

func (*MockClient_Expecter) OrganizationUserTokensList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserTokensList(ctx interface{}, organizationId interface{}, memberUserId interface{}) *MockClient_OrganizationUserTokensList_Call

OrganizationUserTokensList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • memberUserId string

func (*MockClient_Expecter) OrganizationUserUpdate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationUserUpdate(ctx interface{}, organizationId interface{}, memberUserId interface{}, in interface{}) *MockClient_OrganizationUserUpdate_Call

OrganizationUserUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • memberUserId string
  • in *organizationuser.OrganizationUserUpdateIn

func (*MockClient_Expecter) OrganizationVpcCreate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationVpcCreate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_OrganizationVpcCreate_Call

OrganizationVpcCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *organizationvpc.OrganizationVpcCreateIn

func (*MockClient_Expecter) OrganizationVpcDelete added in v0.129.0

func (_e *MockClient_Expecter) OrganizationVpcDelete(ctx interface{}, organizationId interface{}, organizationVpcId interface{}) *MockClient_OrganizationVpcDelete_Call

OrganizationVpcDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • organizationVpcId string

func (*MockClient_Expecter) OrganizationVpcGet added in v0.129.0

func (_e *MockClient_Expecter) OrganizationVpcGet(ctx interface{}, organizationId interface{}, organizationVpcId interface{}) *MockClient_OrganizationVpcGet_Call

OrganizationVpcGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • organizationVpcId string

func (*MockClient_Expecter) OrganizationVpcList added in v0.129.0

func (_e *MockClient_Expecter) OrganizationVpcList(ctx interface{}, organizationId interface{}) *MockClient_OrganizationVpcList_Call

OrganizationVpcList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) OrganizationVpcPeeringConnectionCreate added in v0.129.0

func (_e *MockClient_Expecter) OrganizationVpcPeeringConnectionCreate(ctx interface{}, organizationId interface{}, organizationVpcId interface{}, in interface{}) *MockClient_OrganizationVpcPeeringConnectionCreate_Call

OrganizationVpcPeeringConnectionCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • organizationVpcId string
  • in *organizationvpc.OrganizationVpcPeeringConnectionCreateIn

func (*MockClient_Expecter) OrganizationVpcPeeringConnectionDeleteById added in v0.129.0

func (_e *MockClient_Expecter) OrganizationVpcPeeringConnectionDeleteById(ctx interface{}, organizationId interface{}, organizationVpcId interface{}, peeringConnectionId interface{}) *MockClient_OrganizationVpcPeeringConnectionDeleteById_Call

OrganizationVpcPeeringConnectionDeleteById is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • organizationVpcId string
  • peeringConnectionId string

func (*MockClient_Expecter) PGServiceAvailableExtensions added in v0.129.0

func (_e *MockClient_Expecter) PGServiceAvailableExtensions(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_PGServiceAvailableExtensions_Call

PGServiceAvailableExtensions is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) PGServiceQueryStatistics added in v0.129.0

func (_e *MockClient_Expecter) PGServiceQueryStatistics(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_PGServiceQueryStatistics_Call

PGServiceQueryStatistics is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *postgresql.PgserviceQueryStatisticsIn

func (*MockClient_Expecter) PermissionsGet added in v0.129.0

func (_e *MockClient_Expecter) PermissionsGet(ctx interface{}, organizationId interface{}, resourceType interface{}, resourceId interface{}) *MockClient_PermissionsGet_Call

PermissionsGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • resourceType organization.ResourceType
  • resourceId string

func (*MockClient_Expecter) PermissionsSet added in v0.129.0

func (_e *MockClient_Expecter) PermissionsSet(ctx interface{}, organizationId interface{}, resourceType interface{}, resourceId interface{}, in interface{}) *MockClient_PermissionsSet_Call

PermissionsSet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • resourceType organization.ResourceType
  • resourceId string
  • in *organization.PermissionsSetIn

func (*MockClient_Expecter) PermissionsUpdate added in v0.129.0

func (_e *MockClient_Expecter) PermissionsUpdate(ctx interface{}, organizationId interface{}, resourceType interface{}, resourceId interface{}, in interface{}) *MockClient_PermissionsUpdate_Call

PermissionsUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • resourceType organization.ResourceType
  • resourceId string
  • in *organization.PermissionsUpdateIn

func (*MockClient_Expecter) PgAvailableExtensions added in v0.129.0

func (_e *MockClient_Expecter) PgAvailableExtensions(ctx interface{}, tenant interface{}) *MockClient_PgAvailableExtensions_Call

PgAvailableExtensions is a helper method to define mock.On call

  • ctx context.Context
  • tenant string

func (*MockClient_Expecter) ProjectAlertsList added in v0.129.0

func (_e *MockClient_Expecter) ProjectAlertsList(ctx interface{}, project1 interface{}) *MockClient_ProjectAlertsList_Call

ProjectAlertsList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectCreate added in v0.129.0

func (_e *MockClient_Expecter) ProjectCreate(ctx interface{}, in interface{}) *MockClient_ProjectCreate_Call

ProjectCreate is a helper method to define mock.On call

  • ctx context.Context
  • in *project.ProjectCreateIn

func (*MockClient_Expecter) ProjectCreditsClaim added in v0.129.0

func (_e *MockClient_Expecter) ProjectCreditsClaim(ctx interface{}, project1 interface{}, in interface{}) *MockClient_ProjectCreditsClaim_Call

ProjectCreditsClaim is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *projectbilling.ProjectCreditsClaimIn

func (*MockClient_Expecter) ProjectCreditsList added in v0.129.0

func (_e *MockClient_Expecter) ProjectCreditsList(ctx interface{}, project1 interface{}) *MockClient_ProjectCreditsList_Call

ProjectCreditsList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectDelete added in v0.129.0

func (_e *MockClient_Expecter) ProjectDelete(ctx interface{}, project1 interface{}) *MockClient_ProjectDelete_Call

ProjectDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectGenerateSbomDownloadUrl added in v0.129.0

func (_e *MockClient_Expecter) ProjectGenerateSbomDownloadUrl(ctx interface{}, project1 interface{}, fileFormat interface{}) *MockClient_ProjectGenerateSbomDownloadUrl_Call

ProjectGenerateSbomDownloadUrl is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • fileFormat string

func (*MockClient_Expecter) ProjectGet added in v0.129.0

func (_e *MockClient_Expecter) ProjectGet(ctx interface{}, project1 interface{}) *MockClient_ProjectGet_Call

ProjectGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectGetEventLogs added in v0.129.0

func (_e *MockClient_Expecter) ProjectGetEventLogs(ctx interface{}, project1 interface{}) *MockClient_ProjectGetEventLogs_Call

ProjectGetEventLogs is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectGetServiceLogs added in v0.129.0

func (_e *MockClient_Expecter) ProjectGetServiceLogs(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ProjectGetServiceLogs_Call

ProjectGetServiceLogs is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ProjectGetServiceLogsIn

func (*MockClient_Expecter) ProjectInvite added in v0.129.0

func (_e *MockClient_Expecter) ProjectInvite(ctx interface{}, project1 interface{}, in interface{}) *MockClient_ProjectInvite_Call

ProjectInvite is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *project.ProjectInviteIn

func (*MockClient_Expecter) ProjectInviteAccept added in v0.129.0

func (_e *MockClient_Expecter) ProjectInviteAccept(ctx interface{}, project1 interface{}, inviteVerificationCode interface{}) *MockClient_ProjectInviteAccept_Call

ProjectInviteAccept is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • inviteVerificationCode string

func (*MockClient_Expecter) ProjectInviteDelete added in v0.129.0

func (_e *MockClient_Expecter) ProjectInviteDelete(ctx interface{}, project1 interface{}, invitedEmail interface{}) *MockClient_ProjectInviteDelete_Call

ProjectInviteDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • invitedEmail string

func (*MockClient_Expecter) ProjectInvoiceList added in v0.129.0

func (_e *MockClient_Expecter) ProjectInvoiceList(ctx interface{}, project1 interface{}) *MockClient_ProjectInvoiceList_Call

ProjectInvoiceList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectKmsGetCA added in v0.129.0

func (_e *MockClient_Expecter) ProjectKmsGetCA(ctx interface{}, project1 interface{}) *MockClient_ProjectKmsGetCA_Call

ProjectKmsGetCA is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectList added in v0.129.0

func (_e *MockClient_Expecter) ProjectList(ctx interface{}) *MockClient_ProjectList_Call

ProjectList is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) ProjectPrivatelinkAvailabilityList added in v0.129.0

func (_e *MockClient_Expecter) ProjectPrivatelinkAvailabilityList(ctx interface{}, project1 interface{}) *MockClient_ProjectPrivatelinkAvailabilityList_Call

ProjectPrivatelinkAvailabilityList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectServicePlanList added in v0.129.0

func (_e *MockClient_Expecter) ProjectServicePlanList(ctx interface{}, project1 interface{}, serviceType interface{}) *MockClient_ProjectServicePlanList_Call

ProjectServicePlanList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceType string

func (*MockClient_Expecter) ProjectServicePlanPriceGet added in v0.129.0

func (_e *MockClient_Expecter) ProjectServicePlanPriceGet(ctx interface{}, project1 interface{}, serviceType interface{}, servicePlan interface{}, cloud1 interface{}) *MockClient_ProjectServicePlanPriceGet_Call

ProjectServicePlanPriceGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceType string
  • servicePlan string
  • cloud1 string

func (*MockClient_Expecter) ProjectServicePlanSpecsGet added in v0.129.0

func (_e *MockClient_Expecter) ProjectServicePlanSpecsGet(ctx interface{}, project1 interface{}, serviceType interface{}, servicePlan interface{}) *MockClient_ProjectServicePlanSpecsGet_Call

ProjectServicePlanSpecsGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceType string
  • servicePlan string

func (*MockClient_Expecter) ProjectServiceTagsList added in v0.129.0

func (_e *MockClient_Expecter) ProjectServiceTagsList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ProjectServiceTagsList_Call

ProjectServiceTagsList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ProjectServiceTagsReplace added in v0.129.0

func (_e *MockClient_Expecter) ProjectServiceTagsReplace(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ProjectServiceTagsReplace_Call

ProjectServiceTagsReplace is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ProjectServiceTagsReplaceIn

func (*MockClient_Expecter) ProjectServiceTagsUpdate added in v0.129.0

func (_e *MockClient_Expecter) ProjectServiceTagsUpdate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ProjectServiceTagsUpdate_Call

ProjectServiceTagsUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ProjectServiceTagsUpdateIn

func (*MockClient_Expecter) ProjectServiceTypesGet added in v0.129.0

func (_e *MockClient_Expecter) ProjectServiceTypesGet(ctx interface{}, project1 interface{}, serviceType interface{}) *MockClient_ProjectServiceTypesGet_Call

ProjectServiceTypesGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceType string

func (*MockClient_Expecter) ProjectServiceTypesList added in v0.129.0

func (_e *MockClient_Expecter) ProjectServiceTypesList(ctx interface{}, project1 interface{}) *MockClient_ProjectServiceTypesList_Call

ProjectServiceTypesList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectStaticIPAssociate added in v0.129.0

func (_e *MockClient_Expecter) ProjectStaticIPAssociate(ctx interface{}, project1 interface{}, staticIpAddressId interface{}, in interface{}) *MockClient_ProjectStaticIPAssociate_Call

ProjectStaticIPAssociate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • staticIpAddressId string
  • in *staticip.ProjectStaticIpassociateIn

func (*MockClient_Expecter) ProjectStaticIPAvailabilityList added in v0.129.0

func (_e *MockClient_Expecter) ProjectStaticIPAvailabilityList(ctx interface{}, project1 interface{}) *MockClient_ProjectStaticIPAvailabilityList_Call

ProjectStaticIPAvailabilityList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectStaticIPDissociate added in v0.129.0

func (_e *MockClient_Expecter) ProjectStaticIPDissociate(ctx interface{}, project1 interface{}, staticIpAddressId interface{}) *MockClient_ProjectStaticIPDissociate_Call

ProjectStaticIPDissociate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • staticIpAddressId string

func (*MockClient_Expecter) ProjectStaticIPPatch added in v0.129.0

func (_e *MockClient_Expecter) ProjectStaticIPPatch(ctx interface{}, project1 interface{}, staticIpAddressId interface{}, in interface{}) *MockClient_ProjectStaticIPPatch_Call

ProjectStaticIPPatch is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • staticIpAddressId string
  • in *staticip.ProjectStaticIppatchIn

func (*MockClient_Expecter) ProjectTagsList added in v0.129.0

func (_e *MockClient_Expecter) ProjectTagsList(ctx interface{}, project1 interface{}) *MockClient_ProjectTagsList_Call

ProjectTagsList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectTagsReplace added in v0.129.0

func (_e *MockClient_Expecter) ProjectTagsReplace(ctx interface{}, project1 interface{}, in interface{}) *MockClient_ProjectTagsReplace_Call

ProjectTagsReplace is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *project.ProjectTagsReplaceIn

func (*MockClient_Expecter) ProjectTagsUpdate added in v0.129.0

func (_e *MockClient_Expecter) ProjectTagsUpdate(ctx interface{}, project1 interface{}, in interface{}) *MockClient_ProjectTagsUpdate_Call

ProjectTagsUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *project.ProjectTagsUpdateIn

func (*MockClient_Expecter) ProjectUpdate added in v0.129.0

func (_e *MockClient_Expecter) ProjectUpdate(ctx interface{}, project1 interface{}, in interface{}) *MockClient_ProjectUpdate_Call

ProjectUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *project.ProjectUpdateIn

func (*MockClient_Expecter) ProjectUserList added in v0.129.0

func (_e *MockClient_Expecter) ProjectUserList(ctx interface{}, project1 interface{}) *MockClient_ProjectUserList_Call

ProjectUserList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ProjectUserRemove added in v0.129.0

func (_e *MockClient_Expecter) ProjectUserRemove(ctx interface{}, project1 interface{}, userEmail interface{}) *MockClient_ProjectUserRemove_Call

ProjectUserRemove is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • userEmail string

func (*MockClient_Expecter) ProjectUserUpdate added in v0.129.0

func (_e *MockClient_Expecter) ProjectUserUpdate(ctx interface{}, project1 interface{}, userEmail interface{}, in interface{}) *MockClient_ProjectUserUpdate_Call

ProjectUserUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • userEmail string
  • in *project.ProjectUserUpdateIn

func (*MockClient_Expecter) PublicPrivatelinkAvailabilityList added in v0.129.0

func (_e *MockClient_Expecter) PublicPrivatelinkAvailabilityList(ctx interface{}, tenant interface{}) *MockClient_PublicPrivatelinkAvailabilityList_Call

PublicPrivatelinkAvailabilityList is a helper method to define mock.On call

  • ctx context.Context
  • tenant string

func (*MockClient_Expecter) PublicStaticIPAvailabilityList added in v0.129.0

func (_e *MockClient_Expecter) PublicStaticIPAvailabilityList(ctx interface{}, tenant interface{}) *MockClient_PublicStaticIPAvailabilityList_Call

PublicStaticIPAvailabilityList is a helper method to define mock.On call

  • ctx context.Context
  • tenant string

func (*MockClient_Expecter) ServiceAlertsList added in v0.129.0

func (_e *MockClient_Expecter) ServiceAlertsList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceAlertsList_Call

ServiceAlertsList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceBackupToAnotherRegionReport added in v0.129.0

func (_e *MockClient_Expecter) ServiceBackupToAnotherRegionReport(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceBackupToAnotherRegionReport_Call

ServiceBackupToAnotherRegionReport is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ServiceBackupToAnotherRegionReportIn

func (*MockClient_Expecter) ServiceBackupsGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceBackupsGet(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceBackupsGet_Call

ServiceBackupsGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceCancelQuery added in v0.129.0

func (_e *MockClient_Expecter) ServiceCancelQuery(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceCancelQuery_Call

ServiceCancelQuery is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ServiceCancelQueryIn

func (*MockClient_Expecter) ServiceClickHouseCurrentQueries added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseCurrentQueries(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceClickHouseCurrentQueries_Call

ServiceClickHouseCurrentQueries is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceClickHouseDatabaseCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseDatabaseCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceClickHouseDatabaseCreate_Call

ServiceClickHouseDatabaseCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *clickhouse.ServiceClickHouseDatabaseCreateIn

func (*MockClient_Expecter) ServiceClickHouseDatabaseDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseDatabaseDelete(ctx interface{}, project1 interface{}, serviceName interface{}, database interface{}) *MockClient_ServiceClickHouseDatabaseDelete_Call

ServiceClickHouseDatabaseDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • database string

func (*MockClient_Expecter) ServiceClickHouseDatabaseList added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseDatabaseList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceClickHouseDatabaseList_Call

ServiceClickHouseDatabaseList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceClickHousePasswordReset added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHousePasswordReset(ctx interface{}, project1 interface{}, serviceName interface{}, userUuid interface{}, in interface{}) *MockClient_ServiceClickHousePasswordReset_Call

ServiceClickHousePasswordReset is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • userUuid string
  • in *clickhouse.ServiceClickHousePasswordResetIn

func (*MockClient_Expecter) ServiceClickHouseQuery added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseQuery(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceClickHouseQuery_Call

ServiceClickHouseQuery is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *clickhouse.ServiceClickHouseQueryIn

func (*MockClient_Expecter) ServiceClickHouseQueryStats added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseQueryStats(ctx interface{}, project1 interface{}, serviceName interface{}, query ...interface{}) *MockClient_ServiceClickHouseQueryStats_Call

ServiceClickHouseQueryStats is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • query ...[2]string

func (*MockClient_Expecter) ServiceClickHouseTieredStorageSummary added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseTieredStorageSummary(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceClickHouseTieredStorageSummary_Call

ServiceClickHouseTieredStorageSummary is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceClickHouseUserCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseUserCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceClickHouseUserCreate_Call

ServiceClickHouseUserCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *clickhouse.ServiceClickHouseUserCreateIn

func (*MockClient_Expecter) ServiceClickHouseUserDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseUserDelete(ctx interface{}, project1 interface{}, serviceName interface{}, userUuid interface{}) *MockClient_ServiceClickHouseUserDelete_Call

ServiceClickHouseUserDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • userUuid string

func (*MockClient_Expecter) ServiceClickHouseUserList added in v0.129.0

func (_e *MockClient_Expecter) ServiceClickHouseUserList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceClickHouseUserList_Call

ServiceClickHouseUserList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceCreate(ctx interface{}, project1 interface{}, in interface{}) *MockClient_ServiceCreate_Call

ServiceCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *service.ServiceCreateIn

func (*MockClient_Expecter) ServiceDatabaseCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceDatabaseCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceDatabaseCreate_Call

ServiceDatabaseCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ServiceDatabaseCreateIn

func (*MockClient_Expecter) ServiceDatabaseDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceDatabaseDelete(ctx interface{}, project1 interface{}, serviceName interface{}, dbname interface{}) *MockClient_ServiceDatabaseDelete_Call

ServiceDatabaseDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • dbname string

func (*MockClient_Expecter) ServiceDatabaseList added in v0.129.0

func (_e *MockClient_Expecter) ServiceDatabaseList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceDatabaseList_Call

ServiceDatabaseList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceDelete(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceDelete_Call

ServiceDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceEnableWrites added in v0.129.0

func (_e *MockClient_Expecter) ServiceEnableWrites(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceEnableWrites_Call

ServiceEnableWrites is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceFlinkCancelApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkCancelApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, deploymentId interface{}) *MockClient_ServiceFlinkCancelApplicationDeployment_Call

ServiceFlinkCancelApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • deploymentId string

func (*MockClient_Expecter) ServiceFlinkCancelJarApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkCancelJarApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, deploymentId interface{}) *MockClient_ServiceFlinkCancelJarApplicationDeployment_Call

ServiceFlinkCancelJarApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • deploymentId string

func (*MockClient_Expecter) ServiceFlinkCreateApplication added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkCreateApplication(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceFlinkCreateApplication_Call

ServiceFlinkCreateApplication is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *flinkapplication.ServiceFlinkCreateApplicationIn

func (*MockClient_Expecter) ServiceFlinkCreateApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkCreateApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, in interface{}) *MockClient_ServiceFlinkCreateApplicationDeployment_Call

ServiceFlinkCreateApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • in *flinkapplicationdeployment.ServiceFlinkCreateApplicationDeploymentIn

func (*MockClient_Expecter) ServiceFlinkCreateApplicationVersion added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkCreateApplicationVersion(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, in interface{}) *MockClient_ServiceFlinkCreateApplicationVersion_Call

ServiceFlinkCreateApplicationVersion is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • in *flinkapplicationversion.ServiceFlinkCreateApplicationVersionIn

func (*MockClient_Expecter) ServiceFlinkCreateJarApplication added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkCreateJarApplication(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceFlinkCreateJarApplication_Call

ServiceFlinkCreateJarApplication is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *flinkjarapplication.ServiceFlinkCreateJarApplicationIn

func (*MockClient_Expecter) ServiceFlinkCreateJarApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkCreateJarApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, in interface{}) *MockClient_ServiceFlinkCreateJarApplicationDeployment_Call

ServiceFlinkCreateJarApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • in *flinkjarapplicationdeployment.ServiceFlinkCreateJarApplicationDeploymentIn

func (*MockClient_Expecter) ServiceFlinkCreateJarApplicationVersion added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkCreateJarApplicationVersion(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}) *MockClient_ServiceFlinkCreateJarApplicationVersion_Call

ServiceFlinkCreateJarApplicationVersion is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string

func (*MockClient_Expecter) ServiceFlinkDeleteApplication added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkDeleteApplication(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}) *MockClient_ServiceFlinkDeleteApplication_Call

ServiceFlinkDeleteApplication is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string

func (*MockClient_Expecter) ServiceFlinkDeleteApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkDeleteApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, deploymentId interface{}) *MockClient_ServiceFlinkDeleteApplicationDeployment_Call

ServiceFlinkDeleteApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • deploymentId string

func (*MockClient_Expecter) ServiceFlinkDeleteApplicationVersion added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkDeleteApplicationVersion(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, applicationVersionId interface{}) *MockClient_ServiceFlinkDeleteApplicationVersion_Call

ServiceFlinkDeleteApplicationVersion is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • applicationVersionId string

func (*MockClient_Expecter) ServiceFlinkDeleteJarApplication added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkDeleteJarApplication(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}) *MockClient_ServiceFlinkDeleteJarApplication_Call

ServiceFlinkDeleteJarApplication is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string

func (*MockClient_Expecter) ServiceFlinkDeleteJarApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkDeleteJarApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, deploymentId interface{}) *MockClient_ServiceFlinkDeleteJarApplicationDeployment_Call

ServiceFlinkDeleteJarApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • deploymentId string

func (*MockClient_Expecter) ServiceFlinkDeleteJarApplicationVersion added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkDeleteJarApplicationVersion(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, applicationVersionId interface{}) *MockClient_ServiceFlinkDeleteJarApplicationVersion_Call

ServiceFlinkDeleteJarApplicationVersion is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • applicationVersionId string

func (*MockClient_Expecter) ServiceFlinkGetApplication added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkGetApplication(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}) *MockClient_ServiceFlinkGetApplication_Call

ServiceFlinkGetApplication is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string

func (*MockClient_Expecter) ServiceFlinkGetApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkGetApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, deploymentId interface{}) *MockClient_ServiceFlinkGetApplicationDeployment_Call

ServiceFlinkGetApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • deploymentId string

func (*MockClient_Expecter) ServiceFlinkGetApplicationVersion added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkGetApplicationVersion(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, applicationVersionId interface{}) *MockClient_ServiceFlinkGetApplicationVersion_Call

ServiceFlinkGetApplicationVersion is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • applicationVersionId string

func (*MockClient_Expecter) ServiceFlinkGetJarApplication added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkGetJarApplication(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}) *MockClient_ServiceFlinkGetJarApplication_Call

ServiceFlinkGetJarApplication is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string

func (*MockClient_Expecter) ServiceFlinkGetJarApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkGetJarApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, deploymentId interface{}) *MockClient_ServiceFlinkGetJarApplicationDeployment_Call

ServiceFlinkGetJarApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • deploymentId string

func (*MockClient_Expecter) ServiceFlinkGetJarApplicationVersion added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkGetJarApplicationVersion(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, applicationVersionId interface{}) *MockClient_ServiceFlinkGetJarApplicationVersion_Call

ServiceFlinkGetJarApplicationVersion is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • applicationVersionId string

func (*MockClient_Expecter) ServiceFlinkJobDetails added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkJobDetails(ctx interface{}, project1 interface{}, serviceName interface{}, jobId interface{}) *MockClient_ServiceFlinkJobDetails_Call

ServiceFlinkJobDetails is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • jobId string

func (*MockClient_Expecter) ServiceFlinkJobsList added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkJobsList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceFlinkJobsList_Call

ServiceFlinkJobsList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceFlinkListApplicationDeployments added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkListApplicationDeployments(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}) *MockClient_ServiceFlinkListApplicationDeployments_Call

ServiceFlinkListApplicationDeployments is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string

func (*MockClient_Expecter) ServiceFlinkListApplications added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkListApplications(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceFlinkListApplications_Call

ServiceFlinkListApplications is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceFlinkListJarApplicationDeployments added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkListJarApplicationDeployments(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}) *MockClient_ServiceFlinkListJarApplicationDeployments_Call

ServiceFlinkListJarApplicationDeployments is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string

func (*MockClient_Expecter) ServiceFlinkListJarApplications added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkListJarApplications(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceFlinkListJarApplications_Call

ServiceFlinkListJarApplications is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceFlinkOverview added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkOverview(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceFlinkOverview_Call

ServiceFlinkOverview is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceFlinkStopApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkStopApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, deploymentId interface{}) *MockClient_ServiceFlinkStopApplicationDeployment_Call

ServiceFlinkStopApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • deploymentId string

func (*MockClient_Expecter) ServiceFlinkStopJarApplicationDeployment added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkStopJarApplicationDeployment(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, deploymentId interface{}) *MockClient_ServiceFlinkStopJarApplicationDeployment_Call

ServiceFlinkStopJarApplicationDeployment is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • deploymentId string

func (*MockClient_Expecter) ServiceFlinkUpdateApplication added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkUpdateApplication(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, in interface{}) *MockClient_ServiceFlinkUpdateApplication_Call

ServiceFlinkUpdateApplication is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • in *flinkapplication.ServiceFlinkUpdateApplicationIn

func (*MockClient_Expecter) ServiceFlinkUpdateJarApplication added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkUpdateJarApplication(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, in interface{}) *MockClient_ServiceFlinkUpdateJarApplication_Call

ServiceFlinkUpdateJarApplication is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • in *flinkjarapplication.ServiceFlinkUpdateJarApplicationIn

func (*MockClient_Expecter) ServiceFlinkValidateApplicationVersion added in v0.129.0

func (_e *MockClient_Expecter) ServiceFlinkValidateApplicationVersion(ctx interface{}, project1 interface{}, serviceName interface{}, applicationId interface{}, in interface{}) *MockClient_ServiceFlinkValidateApplicationVersion_Call

ServiceFlinkValidateApplicationVersion is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • applicationId string
  • in *flinkapplicationversion.ServiceFlinkValidateApplicationVersionIn

func (*MockClient_Expecter) ServiceGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceGet(ctx interface{}, project1 interface{}, serviceName interface{}, query ...interface{}) *MockClient_ServiceGet_Call

ServiceGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • query ...[2]string

func (*MockClient_Expecter) ServiceGetMigrationStatus added in v0.129.0

func (_e *MockClient_Expecter) ServiceGetMigrationStatus(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceGetMigrationStatus_Call

ServiceGetMigrationStatus is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceIntegrationCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationCreate(ctx interface{}, project1 interface{}, in interface{}) *MockClient_ServiceIntegrationCreate_Call

ServiceIntegrationCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *service.ServiceIntegrationCreateIn

func (*MockClient_Expecter) ServiceIntegrationDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationDelete(ctx interface{}, project1 interface{}, integrationId interface{}) *MockClient_ServiceIntegrationDelete_Call

ServiceIntegrationDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • integrationId string

func (*MockClient_Expecter) ServiceIntegrationEndpointCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationEndpointCreate(ctx interface{}, project1 interface{}, in interface{}) *MockClient_ServiceIntegrationEndpointCreate_Call

ServiceIntegrationEndpointCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *service.ServiceIntegrationEndpointCreateIn

func (*MockClient_Expecter) ServiceIntegrationEndpointDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationEndpointDelete(ctx interface{}, project1 interface{}, integrationEndpointId interface{}) *MockClient_ServiceIntegrationEndpointDelete_Call

ServiceIntegrationEndpointDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • integrationEndpointId string

func (*MockClient_Expecter) ServiceIntegrationEndpointGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationEndpointGet(ctx interface{}, project1 interface{}, integrationEndpointId interface{}, query ...interface{}) *MockClient_ServiceIntegrationEndpointGet_Call

ServiceIntegrationEndpointGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • integrationEndpointId string
  • query ...[2]string

func (*MockClient_Expecter) ServiceIntegrationEndpointList added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationEndpointList(ctx interface{}, project1 interface{}) *MockClient_ServiceIntegrationEndpointList_Call

ServiceIntegrationEndpointList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ServiceIntegrationEndpointTypes added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationEndpointTypes(ctx interface{}, project1 interface{}) *MockClient_ServiceIntegrationEndpointTypes_Call

ServiceIntegrationEndpointTypes is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ServiceIntegrationEndpointUpdate added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationEndpointUpdate(ctx interface{}, project1 interface{}, integrationEndpointId interface{}, in interface{}) *MockClient_ServiceIntegrationEndpointUpdate_Call

ServiceIntegrationEndpointUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • integrationEndpointId string
  • in *service.ServiceIntegrationEndpointUpdateIn

func (*MockClient_Expecter) ServiceIntegrationGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationGet(ctx interface{}, project1 interface{}, integrationId interface{}) *MockClient_ServiceIntegrationGet_Call

ServiceIntegrationGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • integrationId string

func (*MockClient_Expecter) ServiceIntegrationList added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceIntegrationList_Call

ServiceIntegrationList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceIntegrationTypes added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationTypes(ctx interface{}, project1 interface{}) *MockClient_ServiceIntegrationTypes_Call

ServiceIntegrationTypes is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) ServiceIntegrationUpdate added in v0.129.0

func (_e *MockClient_Expecter) ServiceIntegrationUpdate(ctx interface{}, project1 interface{}, integrationId interface{}, in interface{}) *MockClient_ServiceIntegrationUpdate_Call

ServiceIntegrationUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • integrationId string
  • in *service.ServiceIntegrationUpdateIn

func (*MockClient_Expecter) ServiceKafkaAclAdd added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaAclAdd(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceKafkaAclAdd_Call

ServiceKafkaAclAdd is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *kafka.ServiceKafkaAclAddIn

func (*MockClient_Expecter) ServiceKafkaAclDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaAclDelete(ctx interface{}, project1 interface{}, serviceName interface{}, kafkaAclId interface{}) *MockClient_ServiceKafkaAclDelete_Call

ServiceKafkaAclDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • kafkaAclId string

func (*MockClient_Expecter) ServiceKafkaAclList added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaAclList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaAclList_Call

ServiceKafkaAclList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaConnectCreateConnector added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectCreateConnector(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceKafkaConnectCreateConnector_Call

ServiceKafkaConnectCreateConnector is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in map[string]any

func (*MockClient_Expecter) ServiceKafkaConnectDeleteConnector added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectDeleteConnector(ctx interface{}, project1 interface{}, serviceName interface{}, connectorName interface{}) *MockClient_ServiceKafkaConnectDeleteConnector_Call

ServiceKafkaConnectDeleteConnector is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • connectorName string

func (*MockClient_Expecter) ServiceKafkaConnectEditConnector added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectEditConnector(ctx interface{}, project1 interface{}, serviceName interface{}, connectorName interface{}, in interface{}) *MockClient_ServiceKafkaConnectEditConnector_Call

ServiceKafkaConnectEditConnector is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • connectorName string
  • in map[string]any

func (*MockClient_Expecter) ServiceKafkaConnectGetAvailableConnectors added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectGetAvailableConnectors(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaConnectGetAvailableConnectors_Call

ServiceKafkaConnectGetAvailableConnectors is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaConnectGetConnectorConfiguration added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectGetConnectorConfiguration(ctx interface{}, project1 interface{}, serviceName interface{}, connectorName interface{}) *MockClient_ServiceKafkaConnectGetConnectorConfiguration_Call

ServiceKafkaConnectGetConnectorConfiguration is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • connectorName string

func (*MockClient_Expecter) ServiceKafkaConnectGetConnectorStatus added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectGetConnectorStatus(ctx interface{}, project1 interface{}, serviceName interface{}, connectorName interface{}) *MockClient_ServiceKafkaConnectGetConnectorStatus_Call

ServiceKafkaConnectGetConnectorStatus is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • connectorName string

func (*MockClient_Expecter) ServiceKafkaConnectList added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaConnectList_Call

ServiceKafkaConnectList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaConnectPauseConnector added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectPauseConnector(ctx interface{}, project1 interface{}, serviceName interface{}, connectorName interface{}) *MockClient_ServiceKafkaConnectPauseConnector_Call

ServiceKafkaConnectPauseConnector is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • connectorName string

func (*MockClient_Expecter) ServiceKafkaConnectRestartConnector added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectRestartConnector(ctx interface{}, project1 interface{}, serviceName interface{}, connectorName interface{}) *MockClient_ServiceKafkaConnectRestartConnector_Call

ServiceKafkaConnectRestartConnector is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • connectorName string

func (*MockClient_Expecter) ServiceKafkaConnectRestartConnectorTask added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectRestartConnectorTask(ctx interface{}, project1 interface{}, serviceName interface{}, connectorName interface{}, taskId interface{}) *MockClient_ServiceKafkaConnectRestartConnectorTask_Call

ServiceKafkaConnectRestartConnectorTask is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • connectorName string
  • taskId string

func (*MockClient_Expecter) ServiceKafkaConnectResumeConnector added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaConnectResumeConnector(ctx interface{}, project1 interface{}, serviceName interface{}, connectorName interface{}) *MockClient_ServiceKafkaConnectResumeConnector_Call

ServiceKafkaConnectResumeConnector is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • connectorName string

func (*MockClient_Expecter) ServiceKafkaMirrorMakerCreateReplicationFlow added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaMirrorMakerCreateReplicationFlow(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceKafkaMirrorMakerCreateReplicationFlow_Call

ServiceKafkaMirrorMakerCreateReplicationFlow is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *kafkamirrormaker.ServiceKafkaMirrorMakerCreateReplicationFlowIn

func (*MockClient_Expecter) ServiceKafkaMirrorMakerDeleteReplicationFlow added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaMirrorMakerDeleteReplicationFlow(ctx interface{}, project1 interface{}, serviceName interface{}, sourceCluster interface{}, targetCluster interface{}) *MockClient_ServiceKafkaMirrorMakerDeleteReplicationFlow_Call

ServiceKafkaMirrorMakerDeleteReplicationFlow is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • sourceCluster string
  • targetCluster string

func (*MockClient_Expecter) ServiceKafkaMirrorMakerGetReplicationFlow added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaMirrorMakerGetReplicationFlow(ctx interface{}, project1 interface{}, serviceName interface{}, sourceCluster interface{}, targetCluster interface{}) *MockClient_ServiceKafkaMirrorMakerGetReplicationFlow_Call

ServiceKafkaMirrorMakerGetReplicationFlow is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • sourceCluster string
  • targetCluster string

func (*MockClient_Expecter) ServiceKafkaMirrorMakerGetReplicationFlows added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaMirrorMakerGetReplicationFlows(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaMirrorMakerGetReplicationFlows_Call

ServiceKafkaMirrorMakerGetReplicationFlows is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaMirrorMakerPatchReplicationFlow added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaMirrorMakerPatchReplicationFlow(ctx interface{}, project1 interface{}, serviceName interface{}, sourceCluster interface{}, targetCluster interface{}, in interface{}) *MockClient_ServiceKafkaMirrorMakerPatchReplicationFlow_Call

ServiceKafkaMirrorMakerPatchReplicationFlow is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • sourceCluster string
  • targetCluster string
  • in *kafkamirrormaker.ServiceKafkaMirrorMakerPatchReplicationFlowIn

func (*MockClient_Expecter) ServiceKafkaNativeAclAdd added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaNativeAclAdd(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceKafkaNativeAclAdd_Call

ServiceKafkaNativeAclAdd is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *kafka.ServiceKafkaNativeAclAddIn

func (*MockClient_Expecter) ServiceKafkaNativeAclDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaNativeAclDelete(ctx interface{}, project1 interface{}, serviceName interface{}, kafkaAclId interface{}) *MockClient_ServiceKafkaNativeAclDelete_Call

ServiceKafkaNativeAclDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • kafkaAclId string

func (*MockClient_Expecter) ServiceKafkaNativeAclGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaNativeAclGet(ctx interface{}, project1 interface{}, serviceName interface{}, kafkaAclId interface{}) *MockClient_ServiceKafkaNativeAclGet_Call

ServiceKafkaNativeAclGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • kafkaAclId string

func (*MockClient_Expecter) ServiceKafkaNativeAclList added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaNativeAclList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaNativeAclList_Call

ServiceKafkaNativeAclList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaQuotaCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaQuotaCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceKafkaQuotaCreate_Call

ServiceKafkaQuotaCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *kafka.ServiceKafkaQuotaCreateIn

func (*MockClient_Expecter) ServiceKafkaQuotaDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaQuotaDelete(ctx interface{}, project1 interface{}, serviceName interface{}, query ...interface{}) *MockClient_ServiceKafkaQuotaDelete_Call

ServiceKafkaQuotaDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • query ...[2]string

func (*MockClient_Expecter) ServiceKafkaQuotaDescribe added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaQuotaDescribe(ctx interface{}, project1 interface{}, serviceName interface{}, query ...interface{}) *MockClient_ServiceKafkaQuotaDescribe_Call

ServiceKafkaQuotaDescribe is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • query ...[2]string

func (*MockClient_Expecter) ServiceKafkaQuotaList added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaQuotaList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaQuotaList_Call

ServiceKafkaQuotaList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaTieredStorageStorageUsageByTopic added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTieredStorageStorageUsageByTopic(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaTieredStorageStorageUsageByTopic_Call

ServiceKafkaTieredStorageStorageUsageByTopic is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaTieredStorageStorageUsageTotal added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTieredStorageStorageUsageTotal(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaTieredStorageStorageUsageTotal_Call

ServiceKafkaTieredStorageStorageUsageTotal is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaTieredStorageSummary added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTieredStorageSummary(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaTieredStorageSummary_Call

ServiceKafkaTieredStorageSummary is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaTopicCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTopicCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceKafkaTopicCreate_Call

ServiceKafkaTopicCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *kafkatopic.ServiceKafkaTopicCreateIn

func (*MockClient_Expecter) ServiceKafkaTopicDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTopicDelete(ctx interface{}, project1 interface{}, serviceName interface{}, topicName interface{}) *MockClient_ServiceKafkaTopicDelete_Call

ServiceKafkaTopicDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • topicName string

func (*MockClient_Expecter) ServiceKafkaTopicGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTopicGet(ctx interface{}, project1 interface{}, serviceName interface{}, topicName interface{}) *MockClient_ServiceKafkaTopicGet_Call

ServiceKafkaTopicGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • topicName string

func (*MockClient_Expecter) ServiceKafkaTopicList added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTopicList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceKafkaTopicList_Call

ServiceKafkaTopicList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceKafkaTopicListV2 added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTopicListV2(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceKafkaTopicListV2_Call

ServiceKafkaTopicListV2 is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *kafkatopic.ServiceKafkaTopicListV2In

func (*MockClient_Expecter) ServiceKafkaTopicMessageList added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTopicMessageList(ctx interface{}, project1 interface{}, serviceName interface{}, topicName interface{}, in interface{}) *MockClient_ServiceKafkaTopicMessageList_Call

ServiceKafkaTopicMessageList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • topicName string
  • in *kafkatopic.ServiceKafkaTopicMessageListIn

func (*MockClient_Expecter) ServiceKafkaTopicMessageProduce added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTopicMessageProduce(ctx interface{}, project1 interface{}, serviceName interface{}, topicName interface{}, in interface{}) *MockClient_ServiceKafkaTopicMessageProduce_Call

ServiceKafkaTopicMessageProduce is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • topicName string
  • in *kafkatopic.ServiceKafkaTopicMessageProduceIn

func (*MockClient_Expecter) ServiceKafkaTopicUpdate added in v0.129.0

func (_e *MockClient_Expecter) ServiceKafkaTopicUpdate(ctx interface{}, project1 interface{}, serviceName interface{}, topicName interface{}, in interface{}) *MockClient_ServiceKafkaTopicUpdate_Call

ServiceKafkaTopicUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • topicName string
  • in *kafkatopic.ServiceKafkaTopicUpdateIn

func (*MockClient_Expecter) ServiceKmsGetCA added in v0.129.0

func (_e *MockClient_Expecter) ServiceKmsGetCA(ctx interface{}, project1 interface{}, serviceName interface{}, caName interface{}) *MockClient_ServiceKmsGetCA_Call

ServiceKmsGetCA is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • caName string

func (*MockClient_Expecter) ServiceKmsGetKeypair added in v0.129.0

func (_e *MockClient_Expecter) ServiceKmsGetKeypair(ctx interface{}, project1 interface{}, serviceName interface{}, keypairName interface{}) *MockClient_ServiceKmsGetKeypair_Call

ServiceKmsGetKeypair is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • keypairName string

func (*MockClient_Expecter) ServiceList added in v0.129.0

func (_e *MockClient_Expecter) ServiceList(ctx interface{}, project1 interface{}, query ...interface{}) *MockClient_ServiceList_Call

ServiceList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • query ...[2]string

func (*MockClient_Expecter) ServiceMaintenanceStart added in v0.129.0

func (_e *MockClient_Expecter) ServiceMaintenanceStart(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceMaintenanceStart_Call

ServiceMaintenanceStart is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceMetricsFetch added in v0.129.0

func (_e *MockClient_Expecter) ServiceMetricsFetch(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceMetricsFetch_Call

ServiceMetricsFetch is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ServiceMetricsFetchIn

func (*MockClient_Expecter) ServiceOpenSearchAclGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceOpenSearchAclGet(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceOpenSearchAclGet_Call

ServiceOpenSearchAclGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceOpenSearchAclSet added in v0.129.0

func (_e *MockClient_Expecter) ServiceOpenSearchAclSet(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceOpenSearchAclSet_Call

ServiceOpenSearchAclSet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *opensearch.ServiceOpenSearchAclSetIn

func (*MockClient_Expecter) ServiceOpenSearchAclUpdate added in v0.129.0

func (_e *MockClient_Expecter) ServiceOpenSearchAclUpdate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceOpenSearchAclUpdate_Call

ServiceOpenSearchAclUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *opensearch.ServiceOpenSearchAclUpdateIn

func (*MockClient_Expecter) ServiceOpenSearchIndexDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceOpenSearchIndexDelete(ctx interface{}, project1 interface{}, serviceName interface{}, indexPattern interface{}) *MockClient_ServiceOpenSearchIndexDelete_Call

ServiceOpenSearchIndexDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • indexPattern string

func (*MockClient_Expecter) ServiceOpenSearchIndexList added in v0.129.0

func (_e *MockClient_Expecter) ServiceOpenSearchIndexList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceOpenSearchIndexList_Call

ServiceOpenSearchIndexList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceOpenSearchSecurityGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceOpenSearchSecurityGet(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceOpenSearchSecurityGet_Call

ServiceOpenSearchSecurityGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceOpenSearchSecurityReset added in v0.129.0

func (_e *MockClient_Expecter) ServiceOpenSearchSecurityReset(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceOpenSearchSecurityReset_Call

ServiceOpenSearchSecurityReset is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *opensearch.ServiceOpenSearchSecurityResetIn

func (*MockClient_Expecter) ServiceOpenSearchSecuritySet added in v0.129.0

func (_e *MockClient_Expecter) ServiceOpenSearchSecuritySet(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceOpenSearchSecuritySet_Call

ServiceOpenSearchSecuritySet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *opensearch.ServiceOpenSearchSecuritySetIn

func (*MockClient_Expecter) ServicePGBouncerCreate added in v0.129.0

func (_e *MockClient_Expecter) ServicePGBouncerCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServicePGBouncerCreate_Call

ServicePGBouncerCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *postgresql.ServicePgbouncerCreateIn

func (*MockClient_Expecter) ServicePGBouncerDelete added in v0.129.0

func (_e *MockClient_Expecter) ServicePGBouncerDelete(ctx interface{}, project1 interface{}, serviceName interface{}, poolName interface{}) *MockClient_ServicePGBouncerDelete_Call

ServicePGBouncerDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • poolName string

func (*MockClient_Expecter) ServicePGBouncerUpdate added in v0.129.0

func (_e *MockClient_Expecter) ServicePGBouncerUpdate(ctx interface{}, project1 interface{}, serviceName interface{}, poolName interface{}, in interface{}) *MockClient_ServicePGBouncerUpdate_Call

ServicePGBouncerUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • poolName string
  • in *postgresql.ServicePgbouncerUpdateIn

func (*MockClient_Expecter) ServicePrivatelinkAWSConnectionList added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAWSConnectionList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServicePrivatelinkAWSConnectionList_Call

ServicePrivatelinkAWSConnectionList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServicePrivatelinkAWSCreate added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAWSCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServicePrivatelinkAWSCreate_Call

ServicePrivatelinkAWSCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *privatelink.ServicePrivatelinkAwscreateIn

func (*MockClient_Expecter) ServicePrivatelinkAWSDelete added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAWSDelete(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServicePrivatelinkAWSDelete_Call

ServicePrivatelinkAWSDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServicePrivatelinkAWSGet added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAWSGet(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServicePrivatelinkAWSGet_Call

ServicePrivatelinkAWSGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServicePrivatelinkAWSUpdate added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAWSUpdate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServicePrivatelinkAWSUpdate_Call

ServicePrivatelinkAWSUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *privatelink.ServicePrivatelinkAwsupdateIn

func (*MockClient_Expecter) ServicePrivatelinkAzureConnectionApproval added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAzureConnectionApproval(ctx interface{}, project1 interface{}, serviceName interface{}, privatelinkConnectionId interface{}) *MockClient_ServicePrivatelinkAzureConnectionApproval_Call

ServicePrivatelinkAzureConnectionApproval is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • privatelinkConnectionId string

func (*MockClient_Expecter) ServicePrivatelinkAzureConnectionList added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAzureConnectionList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServicePrivatelinkAzureConnectionList_Call

ServicePrivatelinkAzureConnectionList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServicePrivatelinkAzureConnectionUpdate added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAzureConnectionUpdate(ctx interface{}, project1 interface{}, serviceName interface{}, privatelinkConnectionId interface{}, in interface{}) *MockClient_ServicePrivatelinkAzureConnectionUpdate_Call

ServicePrivatelinkAzureConnectionUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • privatelinkConnectionId string
  • in *privatelink.ServicePrivatelinkAzureConnectionUpdateIn

func (*MockClient_Expecter) ServicePrivatelinkAzureCreate added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAzureCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServicePrivatelinkAzureCreate_Call

ServicePrivatelinkAzureCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *privatelink.ServicePrivatelinkAzureCreateIn

func (*MockClient_Expecter) ServicePrivatelinkAzureDelete added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAzureDelete(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServicePrivatelinkAzureDelete_Call

ServicePrivatelinkAzureDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServicePrivatelinkAzureGet added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAzureGet(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServicePrivatelinkAzureGet_Call

ServicePrivatelinkAzureGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServicePrivatelinkAzureUpdate added in v0.129.0

func (_e *MockClient_Expecter) ServicePrivatelinkAzureUpdate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServicePrivatelinkAzureUpdate_Call

ServicePrivatelinkAzureUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *privatelink.ServicePrivatelinkAzureUpdateIn

func (*MockClient_Expecter) ServiceQueryActivity added in v0.129.0

func (_e *MockClient_Expecter) ServiceQueryActivity(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceQueryActivity_Call

ServiceQueryActivity is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ServiceQueryActivityIn

func (*MockClient_Expecter) ServiceQueryStatisticsReset added in v0.129.0

func (_e *MockClient_Expecter) ServiceQueryStatisticsReset(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceQueryStatisticsReset_Call

ServiceQueryStatisticsReset is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceSchemaRegistryAclAdd added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistryAclAdd(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceSchemaRegistryAclAdd_Call

ServiceSchemaRegistryAclAdd is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *kafkaschemaregistry.ServiceSchemaRegistryAclAddIn

func (*MockClient_Expecter) ServiceSchemaRegistryAclDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistryAclDelete(ctx interface{}, project1 interface{}, serviceName interface{}, schemaRegistryAclId interface{}) *MockClient_ServiceSchemaRegistryAclDelete_Call

ServiceSchemaRegistryAclDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • schemaRegistryAclId string

func (*MockClient_Expecter) ServiceSchemaRegistryAclList added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistryAclList(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceSchemaRegistryAclList_Call

ServiceSchemaRegistryAclList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceSchemaRegistryCompatibility added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistryCompatibility(ctx interface{}, project1 interface{}, serviceName interface{}, subjectName interface{}, versionId interface{}, in interface{}) *MockClient_ServiceSchemaRegistryCompatibility_Call

ServiceSchemaRegistryCompatibility is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • subjectName string
  • versionId int
  • in *kafkaschemaregistry.ServiceSchemaRegistryCompatibilityIn

func (*MockClient_Expecter) ServiceSchemaRegistryGlobalConfigGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistryGlobalConfigGet(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceSchemaRegistryGlobalConfigGet_Call

ServiceSchemaRegistryGlobalConfigGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceSchemaRegistryGlobalConfigPut added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistryGlobalConfigPut(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceSchemaRegistryGlobalConfigPut_Call

ServiceSchemaRegistryGlobalConfigPut is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *kafkaschemaregistry.ServiceSchemaRegistryGlobalConfigPutIn

func (*MockClient_Expecter) ServiceSchemaRegistrySchemaGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySchemaGet(ctx interface{}, project1 interface{}, serviceName interface{}, schemaId interface{}) *MockClient_ServiceSchemaRegistrySchemaGet_Call

ServiceSchemaRegistrySchemaGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • schemaId string

func (*MockClient_Expecter) ServiceSchemaRegistrySubjectConfigGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySubjectConfigGet(ctx interface{}, project1 interface{}, serviceName interface{}, subjectName interface{}) *MockClient_ServiceSchemaRegistrySubjectConfigGet_Call

ServiceSchemaRegistrySubjectConfigGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • subjectName string

func (*MockClient_Expecter) ServiceSchemaRegistrySubjectConfigPut added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySubjectConfigPut(ctx interface{}, project1 interface{}, serviceName interface{}, subjectName interface{}, in interface{}) *MockClient_ServiceSchemaRegistrySubjectConfigPut_Call

ServiceSchemaRegistrySubjectConfigPut is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • subjectName string
  • in *kafkaschemaregistry.ServiceSchemaRegistrySubjectConfigPutIn

func (*MockClient_Expecter) ServiceSchemaRegistrySubjectDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySubjectDelete(ctx interface{}, project1 interface{}, serviceName interface{}, subjectName interface{}) *MockClient_ServiceSchemaRegistrySubjectDelete_Call

ServiceSchemaRegistrySubjectDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • subjectName string

func (*MockClient_Expecter) ServiceSchemaRegistrySubjectVersionDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySubjectVersionDelete(ctx interface{}, project1 interface{}, serviceName interface{}, subjectName interface{}, versionId interface{}) *MockClient_ServiceSchemaRegistrySubjectVersionDelete_Call

ServiceSchemaRegistrySubjectVersionDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • subjectName string
  • versionId int

func (*MockClient_Expecter) ServiceSchemaRegistrySubjectVersionGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySubjectVersionGet(ctx interface{}, project1 interface{}, serviceName interface{}, subjectName interface{}, versionId interface{}) *MockClient_ServiceSchemaRegistrySubjectVersionGet_Call

ServiceSchemaRegistrySubjectVersionGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • subjectName string
  • versionId int

func (*MockClient_Expecter) ServiceSchemaRegistrySubjectVersionPost added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySubjectVersionPost(ctx interface{}, project1 interface{}, serviceName interface{}, subjectName interface{}, in interface{}) *MockClient_ServiceSchemaRegistrySubjectVersionPost_Call

ServiceSchemaRegistrySubjectVersionPost is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • subjectName string
  • in *kafkaschemaregistry.ServiceSchemaRegistrySubjectVersionPostIn

func (*MockClient_Expecter) ServiceSchemaRegistrySubjectVersionSchemaGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySubjectVersionSchemaGet(ctx interface{}, project1 interface{}, serviceName interface{}, subjectName interface{}, versionId interface{}) *MockClient_ServiceSchemaRegistrySubjectVersionSchemaGet_Call

ServiceSchemaRegistrySubjectVersionSchemaGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • subjectName string
  • versionId int

func (*MockClient_Expecter) ServiceSchemaRegistrySubjectVersionsGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySubjectVersionsGet(ctx interface{}, project1 interface{}, serviceName interface{}, subjectName interface{}) *MockClient_ServiceSchemaRegistrySubjectVersionsGet_Call

ServiceSchemaRegistrySubjectVersionsGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • subjectName string

func (*MockClient_Expecter) ServiceSchemaRegistrySubjects added in v0.129.0

func (_e *MockClient_Expecter) ServiceSchemaRegistrySubjects(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceSchemaRegistrySubjects_Call

ServiceSchemaRegistrySubjects is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceTaskCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceTaskCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceTaskCreate_Call

ServiceTaskCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ServiceTaskCreateIn

func (*MockClient_Expecter) ServiceTaskGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceTaskGet(ctx interface{}, project1 interface{}, serviceName interface{}, taskId interface{}) *MockClient_ServiceTaskGet_Call

ServiceTaskGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • taskId string

func (*MockClient_Expecter) ServiceThanosStorageSummary added in v0.129.0

func (_e *MockClient_Expecter) ServiceThanosStorageSummary(ctx interface{}, project1 interface{}, serviceName interface{}) *MockClient_ServiceThanosStorageSummary_Call

ServiceThanosStorageSummary is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string

func (*MockClient_Expecter) ServiceUpdate added in v0.129.0

func (_e *MockClient_Expecter) ServiceUpdate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}, query ...interface{}) *MockClient_ServiceUpdate_Call

ServiceUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ServiceUpdateIn
  • query ...[2]string

func (*MockClient_Expecter) ServiceUserCreate added in v0.129.0

func (_e *MockClient_Expecter) ServiceUserCreate(ctx interface{}, project1 interface{}, serviceName interface{}, in interface{}) *MockClient_ServiceUserCreate_Call

ServiceUserCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • in *service.ServiceUserCreateIn

func (*MockClient_Expecter) ServiceUserCredentialsModify added in v0.129.0

func (_e *MockClient_Expecter) ServiceUserCredentialsModify(ctx interface{}, project1 interface{}, serviceName interface{}, serviceUsername interface{}, in interface{}) *MockClient_ServiceUserCredentialsModify_Call

ServiceUserCredentialsModify is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • serviceUsername string
  • in *service.ServiceUserCredentialsModifyIn

func (*MockClient_Expecter) ServiceUserCredentialsReset added in v0.129.0

func (_e *MockClient_Expecter) ServiceUserCredentialsReset(ctx interface{}, project1 interface{}, serviceName interface{}, serviceUsername interface{}) *MockClient_ServiceUserCredentialsReset_Call

ServiceUserCredentialsReset is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • serviceUsername string

func (*MockClient_Expecter) ServiceUserDelete added in v0.129.0

func (_e *MockClient_Expecter) ServiceUserDelete(ctx interface{}, project1 interface{}, serviceName interface{}, serviceUsername interface{}) *MockClient_ServiceUserDelete_Call

ServiceUserDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • serviceUsername string

func (*MockClient_Expecter) ServiceUserGet added in v0.129.0

func (_e *MockClient_Expecter) ServiceUserGet(ctx interface{}, project1 interface{}, serviceName interface{}, serviceUsername interface{}, query ...interface{}) *MockClient_ServiceUserGet_Call

ServiceUserGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • serviceName string
  • serviceUsername string
  • query ...[2]string

func (*MockClient_Expecter) StaticIPCreate added in v0.129.0

func (_e *MockClient_Expecter) StaticIPCreate(ctx interface{}, project1 interface{}, in interface{}) *MockClient_StaticIPCreate_Call

StaticIPCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *staticip.StaticIpcreateIn

func (*MockClient_Expecter) StaticIPList added in v0.129.0

func (_e *MockClient_Expecter) StaticIPList(ctx interface{}, project1 interface{}) *MockClient_StaticIPList_Call

StaticIPList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) TwoFactorAuthConfigure added in v0.129.0

func (_e *MockClient_Expecter) TwoFactorAuthConfigure(ctx interface{}, in interface{}) *MockClient_TwoFactorAuthConfigure_Call

TwoFactorAuthConfigure is a helper method to define mock.On call

  • ctx context.Context
  • in *user.TwoFactorAuthConfigureIn

func (*MockClient_Expecter) TwoFactorAuthConfigureOTP added in v0.129.0

func (_e *MockClient_Expecter) TwoFactorAuthConfigureOTP(ctx interface{}, in interface{}) *MockClient_TwoFactorAuthConfigureOTP_Call

TwoFactorAuthConfigureOTP is a helper method to define mock.On call

  • ctx context.Context
  • in *user.TwoFactorAuthConfigureOtpIn

func (*MockClient_Expecter) UserAccountDelete added in v0.129.0

func (_e *MockClient_Expecter) UserAccountDelete(ctx interface{}, userId interface{}) *MockClient_UserAccountDelete_Call

UserAccountDelete is a helper method to define mock.On call

  • ctx context.Context
  • userId string

func (*MockClient_Expecter) UserAccountInvitesAccept added in v0.129.0

func (_e *MockClient_Expecter) UserAccountInvitesAccept(ctx interface{}, in interface{}) *MockClient_UserAccountInvitesAccept_Call

UserAccountInvitesAccept is a helper method to define mock.On call

  • ctx context.Context
  • in *user.UserAccountInvitesAcceptIn

func (*MockClient_Expecter) UserAccountInvitesList added in v0.129.0

func (_e *MockClient_Expecter) UserAccountInvitesList(ctx interface{}) *MockClient_UserAccountInvitesList_Call

UserAccountInvitesList is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) UserAuth added in v0.129.0

func (_e *MockClient_Expecter) UserAuth(ctx interface{}, in interface{}) *MockClient_UserAuth_Call

UserAuth is a helper method to define mock.On call

  • ctx context.Context
  • in *user.UserAuthIn

func (*MockClient_Expecter) UserAuthLoginOptions added in v0.129.0

func (_e *MockClient_Expecter) UserAuthLoginOptions(ctx interface{}, in interface{}) *MockClient_UserAuthLoginOptions_Call

UserAuthLoginOptions is a helper method to define mock.On call

  • ctx context.Context
  • in *user.UserAuthLoginOptionsIn

func (*MockClient_Expecter) UserAuthenticationMethodDelete added in v0.129.0

func (_e *MockClient_Expecter) UserAuthenticationMethodDelete(ctx interface{}, userAuthenticationMethodId interface{}) *MockClient_UserAuthenticationMethodDelete_Call

UserAuthenticationMethodDelete is a helper method to define mock.On call

  • ctx context.Context
  • userAuthenticationMethodId string

func (*MockClient_Expecter) UserAuthenticationMethodsList added in v0.129.0

func (_e *MockClient_Expecter) UserAuthenticationMethodsList(ctx interface{}) *MockClient_UserAuthenticationMethodsList_Call

UserAuthenticationMethodsList is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) UserCreate added in v0.129.0

func (_e *MockClient_Expecter) UserCreate(ctx interface{}, in interface{}) *MockClient_UserCreate_Call

UserCreate is a helper method to define mock.On call

  • ctx context.Context
  • in *user.UserCreateIn

func (*MockClient_Expecter) UserCreditCardsList added in v0.129.0

func (_e *MockClient_Expecter) UserCreditCardsList(ctx interface{}) *MockClient_UserCreditCardsList_Call

UserCreditCardsList is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) UserExpireTokens added in v0.129.0

func (_e *MockClient_Expecter) UserExpireTokens(ctx interface{}) *MockClient_UserExpireTokens_Call

UserExpireTokens is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) UserGroupCreate added in v0.129.0

func (_e *MockClient_Expecter) UserGroupCreate(ctx interface{}, organizationId interface{}, in interface{}) *MockClient_UserGroupCreate_Call

UserGroupCreate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • in *usergroup.UserGroupCreateIn

func (*MockClient_Expecter) UserGroupDelete added in v0.129.0

func (_e *MockClient_Expecter) UserGroupDelete(ctx interface{}, organizationId interface{}, userGroupId interface{}) *MockClient_UserGroupDelete_Call

UserGroupDelete is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userGroupId string

func (*MockClient_Expecter) UserGroupGet added in v0.129.0

func (_e *MockClient_Expecter) UserGroupGet(ctx interface{}, organizationId interface{}, userGroupId interface{}) *MockClient_UserGroupGet_Call

UserGroupGet is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userGroupId string

func (*MockClient_Expecter) UserGroupMemberList added in v0.129.0

func (_e *MockClient_Expecter) UserGroupMemberList(ctx interface{}, organizationId interface{}, userGroupId interface{}) *MockClient_UserGroupMemberList_Call

UserGroupMemberList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userGroupId string

func (*MockClient_Expecter) UserGroupMembersUpdate added in v0.129.0

func (_e *MockClient_Expecter) UserGroupMembersUpdate(ctx interface{}, organizationId interface{}, userGroupId interface{}, in interface{}) *MockClient_UserGroupMembersUpdate_Call

UserGroupMembersUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userGroupId string
  • in *usergroup.UserGroupMembersUpdateIn

func (*MockClient_Expecter) UserGroupUpdate added in v0.129.0

func (_e *MockClient_Expecter) UserGroupUpdate(ctx interface{}, organizationId interface{}, userGroupId interface{}, in interface{}) *MockClient_UserGroupUpdate_Call

UserGroupUpdate is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string
  • userGroupId string
  • in *usergroup.UserGroupUpdateIn

func (*MockClient_Expecter) UserGroupsList added in v0.129.0

func (_e *MockClient_Expecter) UserGroupsList(ctx interface{}, organizationId interface{}) *MockClient_UserGroupsList_Call

UserGroupsList is a helper method to define mock.On call

  • ctx context.Context
  • organizationId string

func (*MockClient_Expecter) UserInfo added in v0.129.0

func (_e *MockClient_Expecter) UserInfo(ctx interface{}) *MockClient_UserInfo_Call

UserInfo is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) UserLogout added in v0.129.0

func (_e *MockClient_Expecter) UserLogout(ctx interface{}) *MockClient_UserLogout_Call

UserLogout is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) UserOrganizationCreate added in v0.129.0

func (_e *MockClient_Expecter) UserOrganizationCreate(ctx interface{}, in interface{}) *MockClient_UserOrganizationCreate_Call

UserOrganizationCreate is a helper method to define mock.On call

  • ctx context.Context
  • in *organization.UserOrganizationCreateIn

func (*MockClient_Expecter) UserOrganizationsList added in v0.129.0

func (_e *MockClient_Expecter) UserOrganizationsList(ctx interface{}) *MockClient_UserOrganizationsList_Call

UserOrganizationsList is a helper method to define mock.On call

  • ctx context.Context

func (*MockClient_Expecter) UserPasswordChange added in v0.129.0

func (_e *MockClient_Expecter) UserPasswordChange(ctx interface{}, in interface{}) *MockClient_UserPasswordChange_Call

UserPasswordChange is a helper method to define mock.On call

  • ctx context.Context
  • in *user.UserPasswordChangeIn

func (*MockClient_Expecter) UserPasswordReset added in v0.129.0

func (_e *MockClient_Expecter) UserPasswordReset(ctx interface{}, verificationCode interface{}, in interface{}) *MockClient_UserPasswordReset_Call

UserPasswordReset is a helper method to define mock.On call

  • ctx context.Context
  • verificationCode string
  • in *user.UserPasswordResetIn

func (*MockClient_Expecter) UserPasswordResetRequest added in v0.129.0

func (_e *MockClient_Expecter) UserPasswordResetRequest(ctx interface{}, in interface{}) *MockClient_UserPasswordResetRequest_Call

UserPasswordResetRequest is a helper method to define mock.On call

  • ctx context.Context
  • in *user.UserPasswordResetRequestIn

func (*MockClient_Expecter) UserUpdate added in v0.129.0

func (_e *MockClient_Expecter) UserUpdate(ctx interface{}, in interface{}) *MockClient_UserUpdate_Call

UserUpdate is a helper method to define mock.On call

  • ctx context.Context
  • in *user.UserUpdateIn

func (*MockClient_Expecter) UserVerifyEmail added in v0.129.0

func (_e *MockClient_Expecter) UserVerifyEmail(ctx interface{}, verificationCode interface{}) *MockClient_UserVerifyEmail_Call

UserVerifyEmail is a helper method to define mock.On call

  • ctx context.Context
  • verificationCode string

func (*MockClient_Expecter) ValidateCreditCode added in v0.129.0

func (_e *MockClient_Expecter) ValidateCreditCode(ctx interface{}, creditCode interface{}) *MockClient_ValidateCreditCode_Call

ValidateCreditCode is a helper method to define mock.On call

  • ctx context.Context
  • creditCode string

func (*MockClient_Expecter) ValidateReferralCode added in v0.129.0

func (_e *MockClient_Expecter) ValidateReferralCode(ctx interface{}, referralCode interface{}) *MockClient_ValidateReferralCode_Call

ValidateReferralCode is a helper method to define mock.On call

  • ctx context.Context
  • referralCode string

func (*MockClient_Expecter) VpcCreate added in v0.129.0

func (_e *MockClient_Expecter) VpcCreate(ctx interface{}, project1 interface{}, in interface{}) *MockClient_VpcCreate_Call

VpcCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • in *vpc.VpcCreateIn

func (*MockClient_Expecter) VpcDelete added in v0.129.0

func (_e *MockClient_Expecter) VpcDelete(ctx interface{}, project1 interface{}, projectVpcId interface{}) *MockClient_VpcDelete_Call

VpcDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • projectVpcId string

func (*MockClient_Expecter) VpcGet added in v0.129.0

func (_e *MockClient_Expecter) VpcGet(ctx interface{}, project1 interface{}, projectVpcId interface{}) *MockClient_VpcGet_Call

VpcGet is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • projectVpcId string

func (*MockClient_Expecter) VpcList added in v0.129.0

func (_e *MockClient_Expecter) VpcList(ctx interface{}, project1 interface{}) *MockClient_VpcList_Call

VpcList is a helper method to define mock.On call

  • ctx context.Context
  • project1 string

func (*MockClient_Expecter) VpcPeeringConnectionCreate added in v0.129.0

func (_e *MockClient_Expecter) VpcPeeringConnectionCreate(ctx interface{}, project1 interface{}, projectVpcId interface{}, in interface{}) *MockClient_VpcPeeringConnectionCreate_Call

VpcPeeringConnectionCreate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • projectVpcId string
  • in *vpc.VpcPeeringConnectionCreateIn

func (*MockClient_Expecter) VpcPeeringConnectionDelete added in v0.129.0

func (_e *MockClient_Expecter) VpcPeeringConnectionDelete(ctx interface{}, project1 interface{}, projectVpcId interface{}, peerCloudAccount interface{}, peerVpc interface{}) *MockClient_VpcPeeringConnectionDelete_Call

VpcPeeringConnectionDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • projectVpcId string
  • peerCloudAccount string
  • peerVpc string

func (*MockClient_Expecter) VpcPeeringConnectionUpdate added in v0.129.0

func (_e *MockClient_Expecter) VpcPeeringConnectionUpdate(ctx interface{}, project1 interface{}, projectVpcId interface{}, in interface{}) *MockClient_VpcPeeringConnectionUpdate_Call

VpcPeeringConnectionUpdate is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • projectVpcId string
  • in *vpc.VpcPeeringConnectionUpdateIn

func (*MockClient_Expecter) VpcPeeringConnectionWithRegionDelete added in v0.129.0

func (_e *MockClient_Expecter) VpcPeeringConnectionWithRegionDelete(ctx interface{}, project1 interface{}, projectVpcId interface{}, peerCloudAccount interface{}, peerVpc interface{}, peerRegion interface{}) *MockClient_VpcPeeringConnectionWithRegionDelete_Call

VpcPeeringConnectionWithRegionDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • projectVpcId string
  • peerCloudAccount string
  • peerVpc string
  • peerRegion string

func (*MockClient_Expecter) VpcPeeringConnectionWithResourceGroupDelete added in v0.129.0

func (_e *MockClient_Expecter) VpcPeeringConnectionWithResourceGroupDelete(ctx interface{}, project1 interface{}, projectVpcId interface{}, peerCloudAccount interface{}, peerResourceGroup interface{}, peerVpc interface{}) *MockClient_VpcPeeringConnectionWithResourceGroupDelete_Call

VpcPeeringConnectionWithResourceGroupDelete is a helper method to define mock.On call

  • ctx context.Context
  • project1 string
  • projectVpcId string
  • peerCloudAccount string
  • peerResourceGroup string
  • peerVpc string

type MockClient_InvoiceGet_Call added in v0.129.0

type MockClient_InvoiceGet_Call struct {
	*mock.Call
}

MockClient_InvoiceGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'InvoiceGet'

func (*MockClient_InvoiceGet_Call) Return added in v0.129.0

func (*MockClient_InvoiceGet_Call) Run added in v0.129.0

func (_c *MockClient_InvoiceGet_Call) Run(run func(ctx context.Context, invoiceNumber string)) *MockClient_InvoiceGet_Call

func (*MockClient_InvoiceGet_Call) RunAndReturn added in v0.129.0

type MockClient_ListClouds_Call added in v0.129.0

type MockClient_ListClouds_Call struct {
	*mock.Call
}

MockClient_ListClouds_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListClouds'

func (*MockClient_ListClouds_Call) Return added in v0.129.0

func (*MockClient_ListClouds_Call) Run added in v0.129.0

func (*MockClient_ListClouds_Call) RunAndReturn added in v0.129.0

type MockClient_ListProjectClouds_Call added in v0.129.0

type MockClient_ListProjectClouds_Call struct {
	*mock.Call
}

MockClient_ListProjectClouds_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListProjectClouds'

func (*MockClient_ListProjectClouds_Call) Return added in v0.129.0

func (*MockClient_ListProjectClouds_Call) Run added in v0.129.0

func (*MockClient_ListProjectClouds_Call) RunAndReturn added in v0.129.0

type MockClient_ListProjectServiceTypes_Call added in v0.129.0

type MockClient_ListProjectServiceTypes_Call struct {
	*mock.Call
}

MockClient_ListProjectServiceTypes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListProjectServiceTypes'

func (*MockClient_ListProjectServiceTypes_Call) Return added in v0.129.0

func (*MockClient_ListProjectServiceTypes_Call) Run added in v0.129.0

func (*MockClient_ListProjectServiceTypes_Call) RunAndReturn added in v0.129.0

type MockClient_ListProjectVpcPeeringConnectionTypes_Call added in v0.129.0

type MockClient_ListProjectVpcPeeringConnectionTypes_Call struct {
	*mock.Call
}

MockClient_ListProjectVpcPeeringConnectionTypes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListProjectVpcPeeringConnectionTypes'

func (*MockClient_ListProjectVpcPeeringConnectionTypes_Call) Return added in v0.129.0

func (*MockClient_ListProjectVpcPeeringConnectionTypes_Call) Run added in v0.129.0

func (*MockClient_ListProjectVpcPeeringConnectionTypes_Call) RunAndReturn added in v0.129.0

type MockClient_ListPublicServiceTypes_Call added in v0.129.0

type MockClient_ListPublicServiceTypes_Call struct {
	*mock.Call
}

MockClient_ListPublicServiceTypes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListPublicServiceTypes'

func (*MockClient_ListPublicServiceTypes_Call) Return added in v0.129.0

func (*MockClient_ListPublicServiceTypes_Call) Run added in v0.129.0

func (*MockClient_ListPublicServiceTypes_Call) RunAndReturn added in v0.129.0

type MockClient_ListServiceVersions_Call added in v0.129.0

type MockClient_ListServiceVersions_Call struct {
	*mock.Call
}

MockClient_ListServiceVersions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ListServiceVersions'

func (*MockClient_ListServiceVersions_Call) Return added in v0.129.0

func (*MockClient_ListServiceVersions_Call) Run added in v0.129.0

func (*MockClient_ListServiceVersions_Call) RunAndReturn added in v0.129.0

type MockClient_MySQLServiceQueryStatistics_Call added in v0.129.0

type MockClient_MySQLServiceQueryStatistics_Call struct {
	*mock.Call
}

MockClient_MySQLServiceQueryStatistics_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'MySQLServiceQueryStatistics'

func (*MockClient_MySQLServiceQueryStatistics_Call) Return added in v0.129.0

func (*MockClient_MySQLServiceQueryStatistics_Call) Run added in v0.129.0

func (*MockClient_MySQLServiceQueryStatistics_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationAddressCreate_Call added in v0.129.0

type MockClient_OrganizationAddressCreate_Call struct {
	*mock.Call
}

MockClient_OrganizationAddressCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAddressCreate'

func (*MockClient_OrganizationAddressCreate_Call) Return added in v0.129.0

func (*MockClient_OrganizationAddressCreate_Call) Run added in v0.129.0

func (*MockClient_OrganizationAddressCreate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationAddressDelete_Call added in v0.129.0

type MockClient_OrganizationAddressDelete_Call struct {
	*mock.Call
}

MockClient_OrganizationAddressDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAddressDelete'

func (*MockClient_OrganizationAddressDelete_Call) Return added in v0.129.0

func (*MockClient_OrganizationAddressDelete_Call) Run added in v0.129.0

func (*MockClient_OrganizationAddressDelete_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationAddressGet_Call added in v0.129.0

type MockClient_OrganizationAddressGet_Call struct {
	*mock.Call
}

MockClient_OrganizationAddressGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAddressGet'

func (*MockClient_OrganizationAddressGet_Call) Return added in v0.129.0

func (*MockClient_OrganizationAddressGet_Call) Run added in v0.129.0

func (*MockClient_OrganizationAddressGet_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationAddressList_Call added in v0.129.0

type MockClient_OrganizationAddressList_Call struct {
	*mock.Call
}

MockClient_OrganizationAddressList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAddressList'

func (*MockClient_OrganizationAddressList_Call) Return added in v0.129.0

func (*MockClient_OrganizationAddressList_Call) Run added in v0.129.0

func (*MockClient_OrganizationAddressList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationAddressUpdate_Call added in v0.129.0

type MockClient_OrganizationAddressUpdate_Call struct {
	*mock.Call
}

MockClient_OrganizationAddressUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAddressUpdate'

func (*MockClient_OrganizationAddressUpdate_Call) Return added in v0.129.0

func (*MockClient_OrganizationAddressUpdate_Call) Run added in v0.129.0

func (*MockClient_OrganizationAddressUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationAuthDomainLink_Call struct {
	*mock.Call
}

MockClient_OrganizationAuthDomainLink_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAuthDomainLink'

type MockClient_OrganizationAuthDomainList_Call added in v0.129.0

type MockClient_OrganizationAuthDomainList_Call struct {
	*mock.Call
}

MockClient_OrganizationAuthDomainList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAuthDomainList'

func (*MockClient_OrganizationAuthDomainList_Call) Return added in v0.129.0

func (*MockClient_OrganizationAuthDomainList_Call) Run added in v0.129.0

func (_c *MockClient_OrganizationAuthDomainList_Call) Run(run func(ctx context.Context, organizationId string, authenticationMethodId string)) *MockClient_OrganizationAuthDomainList_Call

func (*MockClient_OrganizationAuthDomainList_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_OrganizationAuthDomainList_Call) RunAndReturn(run func(ctx context.Context, organizationId string, authenticationMethodId string) ([]organization.DomainOut, error)) *MockClient_OrganizationAuthDomainList_Call
type MockClient_OrganizationAuthDomainUnlink_Call struct {
	*mock.Call
}

MockClient_OrganizationAuthDomainUnlink_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAuthDomainUnlink'

func (_c *MockClient_OrganizationAuthDomainUnlink_Call) Run(run func(ctx context.Context, organizationId string, authenticationMethodId string, domainId string)) *MockClient_OrganizationAuthDomainUnlink_Call
func (_c *MockClient_OrganizationAuthDomainUnlink_Call) RunAndReturn(run func(ctx context.Context, organizationId string, authenticationMethodId string, domainId string) error) *MockClient_OrganizationAuthDomainUnlink_Call

type MockClient_OrganizationAuthenticationConfigGet_Call added in v0.129.0

type MockClient_OrganizationAuthenticationConfigGet_Call struct {
	*mock.Call
}

MockClient_OrganizationAuthenticationConfigGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAuthenticationConfigGet'

func (*MockClient_OrganizationAuthenticationConfigGet_Call) Return added in v0.129.0

func (*MockClient_OrganizationAuthenticationConfigGet_Call) Run added in v0.129.0

func (*MockClient_OrganizationAuthenticationConfigGet_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationAuthenticationConfigUpdate_Call added in v0.129.0

type MockClient_OrganizationAuthenticationConfigUpdate_Call struct {
	*mock.Call
}

MockClient_OrganizationAuthenticationConfigUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationAuthenticationConfigUpdate'

func (*MockClient_OrganizationAuthenticationConfigUpdate_Call) Return added in v0.129.0

func (*MockClient_OrganizationAuthenticationConfigUpdate_Call) Run added in v0.129.0

type MockClient_OrganizationBillingGroupCreate_Call added in v0.129.0

type MockClient_OrganizationBillingGroupCreate_Call struct {
	*mock.Call
}

MockClient_OrganizationBillingGroupCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationBillingGroupCreate'

func (*MockClient_OrganizationBillingGroupCreate_Call) Return added in v0.129.0

func (*MockClient_OrganizationBillingGroupCreate_Call) Run added in v0.129.0

type MockClient_OrganizationBillingGroupDelete_Call added in v0.129.0

type MockClient_OrganizationBillingGroupDelete_Call struct {
	*mock.Call
}

MockClient_OrganizationBillingGroupDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationBillingGroupDelete'

func (*MockClient_OrganizationBillingGroupDelete_Call) Return added in v0.129.0

func (*MockClient_OrganizationBillingGroupDelete_Call) Run added in v0.129.0

func (*MockClient_OrganizationBillingGroupDelete_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationBillingGroupGet_Call added in v0.129.0

type MockClient_OrganizationBillingGroupGet_Call struct {
	*mock.Call
}

MockClient_OrganizationBillingGroupGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationBillingGroupGet'

func (*MockClient_OrganizationBillingGroupGet_Call) Return added in v0.129.0

func (*MockClient_OrganizationBillingGroupGet_Call) Run added in v0.129.0

func (*MockClient_OrganizationBillingGroupGet_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationBillingGroupList_Call added in v0.129.0

type MockClient_OrganizationBillingGroupList_Call struct {
	*mock.Call
}

MockClient_OrganizationBillingGroupList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationBillingGroupList'

func (*MockClient_OrganizationBillingGroupList_Call) Return added in v0.129.0

func (*MockClient_OrganizationBillingGroupList_Call) Run added in v0.129.0

func (*MockClient_OrganizationBillingGroupList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationBillingGroupUpdate_Call added in v0.129.0

type MockClient_OrganizationBillingGroupUpdate_Call struct {
	*mock.Call
}

MockClient_OrganizationBillingGroupUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationBillingGroupUpdate'

func (*MockClient_OrganizationBillingGroupUpdate_Call) Return added in v0.129.0

func (*MockClient_OrganizationBillingGroupUpdate_Call) Run added in v0.129.0

func (*MockClient_OrganizationBillingGroupUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationDelete_Call added in v0.129.0

type MockClient_OrganizationDelete_Call struct {
	*mock.Call
}

MockClient_OrganizationDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationDelete'

func (*MockClient_OrganizationDelete_Call) Return added in v0.129.0

func (*MockClient_OrganizationDelete_Call) Run added in v0.129.0

func (_c *MockClient_OrganizationDelete_Call) Run(run func(ctx context.Context, organizationId string, query ...[2]string)) *MockClient_OrganizationDelete_Call

func (*MockClient_OrganizationDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_OrganizationDelete_Call) RunAndReturn(run func(ctx context.Context, organizationId string, query ...[2]string) error) *MockClient_OrganizationDelete_Call

type MockClient_OrganizationDomainAdd_Call added in v0.129.0

type MockClient_OrganizationDomainAdd_Call struct {
	*mock.Call
}

MockClient_OrganizationDomainAdd_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationDomainAdd'

func (*MockClient_OrganizationDomainAdd_Call) Return added in v0.129.0

func (*MockClient_OrganizationDomainAdd_Call) Run added in v0.129.0

func (*MockClient_OrganizationDomainAdd_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationDomainUpdate_Call added in v0.129.0

type MockClient_OrganizationDomainUpdate_Call struct {
	*mock.Call
}

MockClient_OrganizationDomainUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationDomainUpdate'

func (*MockClient_OrganizationDomainUpdate_Call) Return added in v0.129.0

func (*MockClient_OrganizationDomainUpdate_Call) Run added in v0.129.0

func (*MockClient_OrganizationDomainUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationDomainVerify_Call added in v0.129.0

type MockClient_OrganizationDomainVerify_Call struct {
	*mock.Call
}

MockClient_OrganizationDomainVerify_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationDomainVerify'

func (*MockClient_OrganizationDomainVerify_Call) Return added in v0.129.0

func (*MockClient_OrganizationDomainVerify_Call) Run added in v0.129.0

func (*MockClient_OrganizationDomainVerify_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationDomainsList_Call added in v0.129.0

type MockClient_OrganizationDomainsList_Call struct {
	*mock.Call
}

MockClient_OrganizationDomainsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationDomainsList'

func (*MockClient_OrganizationDomainsList_Call) Return added in v0.129.0

func (*MockClient_OrganizationDomainsList_Call) Run added in v0.129.0

func (*MockClient_OrganizationDomainsList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationDomainsRemove_Call added in v0.129.0

type MockClient_OrganizationDomainsRemove_Call struct {
	*mock.Call
}

MockClient_OrganizationDomainsRemove_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationDomainsRemove'

func (*MockClient_OrganizationDomainsRemove_Call) Return added in v0.129.0

func (*MockClient_OrganizationDomainsRemove_Call) Run added in v0.129.0

func (*MockClient_OrganizationDomainsRemove_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationGet_Call added in v0.129.0

type MockClient_OrganizationGet_Call struct {
	*mock.Call
}

MockClient_OrganizationGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationGet'

func (*MockClient_OrganizationGet_Call) Return added in v0.129.0

func (*MockClient_OrganizationGet_Call) Run added in v0.129.0

func (*MockClient_OrganizationGet_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationGovernanceAccessCreate_Call added in v0.129.0

type MockClient_OrganizationGovernanceAccessCreate_Call struct {
	*mock.Call
}

MockClient_OrganizationGovernanceAccessCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationGovernanceAccessCreate'

func (*MockClient_OrganizationGovernanceAccessCreate_Call) Return added in v0.129.0

func (*MockClient_OrganizationGovernanceAccessCreate_Call) Run added in v0.129.0

type MockClient_OrganizationGovernanceAccessDelete_Call added in v0.129.0

type MockClient_OrganizationGovernanceAccessDelete_Call struct {
	*mock.Call
}

MockClient_OrganizationGovernanceAccessDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationGovernanceAccessDelete'

func (*MockClient_OrganizationGovernanceAccessDelete_Call) Return added in v0.129.0

func (*MockClient_OrganizationGovernanceAccessDelete_Call) Run added in v0.129.0

func (*MockClient_OrganizationGovernanceAccessDelete_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationGovernanceAccessGet_Call added in v0.129.0

type MockClient_OrganizationGovernanceAccessGet_Call struct {
	*mock.Call
}

MockClient_OrganizationGovernanceAccessGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationGovernanceAccessGet'

func (*MockClient_OrganizationGovernanceAccessGet_Call) Return added in v0.129.0

func (*MockClient_OrganizationGovernanceAccessGet_Call) Run added in v0.129.0

func (*MockClient_OrganizationGovernanceAccessGet_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationGovernanceAccessList_Call added in v0.129.0

type MockClient_OrganizationGovernanceAccessList_Call struct {
	*mock.Call
}

MockClient_OrganizationGovernanceAccessList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationGovernanceAccessList'

func (*MockClient_OrganizationGovernanceAccessList_Call) Return added in v0.129.0

func (*MockClient_OrganizationGovernanceAccessList_Call) Run added in v0.129.0

func (*MockClient_OrganizationGovernanceAccessList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationMemberGroupsList_Call added in v0.129.0

type MockClient_OrganizationMemberGroupsList_Call struct {
	*mock.Call
}

MockClient_OrganizationMemberGroupsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationMemberGroupsList'

func (*MockClient_OrganizationMemberGroupsList_Call) Return added in v0.129.0

func (*MockClient_OrganizationMemberGroupsList_Call) Run added in v0.129.0

func (*MockClient_OrganizationMemberGroupsList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationProjectsCreate_Call added in v0.129.0

type MockClient_OrganizationProjectsCreate_Call struct {
	*mock.Call
}

MockClient_OrganizationProjectsCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationProjectsCreate'

func (*MockClient_OrganizationProjectsCreate_Call) Return added in v0.129.0

func (*MockClient_OrganizationProjectsCreate_Call) Run added in v0.129.0

func (*MockClient_OrganizationProjectsCreate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationProjectsDelete_Call added in v0.129.0

type MockClient_OrganizationProjectsDelete_Call struct {
	*mock.Call
}

MockClient_OrganizationProjectsDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationProjectsDelete'

func (*MockClient_OrganizationProjectsDelete_Call) Return added in v0.129.0

func (*MockClient_OrganizationProjectsDelete_Call) Run added in v0.129.0

func (*MockClient_OrganizationProjectsDelete_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationProjectsGet_Call added in v0.129.0

type MockClient_OrganizationProjectsGet_Call struct {
	*mock.Call
}

MockClient_OrganizationProjectsGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationProjectsGet'

func (*MockClient_OrganizationProjectsGet_Call) Return added in v0.129.0

func (*MockClient_OrganizationProjectsGet_Call) Run added in v0.129.0

func (*MockClient_OrganizationProjectsGet_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationProjectsList_Call added in v0.129.0

type MockClient_OrganizationProjectsList_Call struct {
	*mock.Call
}

MockClient_OrganizationProjectsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationProjectsList'

func (*MockClient_OrganizationProjectsList_Call) Return added in v0.129.0

func (*MockClient_OrganizationProjectsList_Call) Run added in v0.129.0

func (*MockClient_OrganizationProjectsList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationProjectsUpdate_Call added in v0.129.0

type MockClient_OrganizationProjectsUpdate_Call struct {
	*mock.Call
}

MockClient_OrganizationProjectsUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationProjectsUpdate'

func (*MockClient_OrganizationProjectsUpdate_Call) Return added in v0.129.0

func (*MockClient_OrganizationProjectsUpdate_Call) Run added in v0.129.0

func (*MockClient_OrganizationProjectsUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUpdate_Call added in v0.129.0

type MockClient_OrganizationUpdate_Call struct {
	*mock.Call
}

MockClient_OrganizationUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUpdate'

func (*MockClient_OrganizationUpdate_Call) Return added in v0.129.0

func (*MockClient_OrganizationUpdate_Call) Run added in v0.129.0

func (*MockClient_OrganizationUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserAuthenticationMethodsList_Call added in v0.129.0

type MockClient_OrganizationUserAuthenticationMethodsList_Call struct {
	*mock.Call
}

MockClient_OrganizationUserAuthenticationMethodsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserAuthenticationMethodsList'

func (*MockClient_OrganizationUserAuthenticationMethodsList_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserAuthenticationMethodsList_Call) Run added in v0.129.0

func (*MockClient_OrganizationUserAuthenticationMethodsList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserDelete_Call added in v0.129.0

type MockClient_OrganizationUserDelete_Call struct {
	*mock.Call
}

MockClient_OrganizationUserDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserDelete'

func (*MockClient_OrganizationUserDelete_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserDelete_Call) Run added in v0.129.0

func (_c *MockClient_OrganizationUserDelete_Call) Run(run func(ctx context.Context, organizationId string, memberUserId string)) *MockClient_OrganizationUserDelete_Call

func (*MockClient_OrganizationUserDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_OrganizationUserDelete_Call) RunAndReturn(run func(ctx context.Context, organizationId string, memberUserId string) error) *MockClient_OrganizationUserDelete_Call

type MockClient_OrganizationUserGet_Call added in v0.129.0

type MockClient_OrganizationUserGet_Call struct {
	*mock.Call
}

MockClient_OrganizationUserGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserGet'

func (*MockClient_OrganizationUserGet_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserGet_Call) Run added in v0.129.0

func (_c *MockClient_OrganizationUserGet_Call) Run(run func(ctx context.Context, organizationId string, memberUserId string)) *MockClient_OrganizationUserGet_Call

func (*MockClient_OrganizationUserGet_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserInvitationAccept_Call added in v0.129.0

type MockClient_OrganizationUserInvitationAccept_Call struct {
	*mock.Call
}

MockClient_OrganizationUserInvitationAccept_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserInvitationAccept'

func (*MockClient_OrganizationUserInvitationAccept_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserInvitationAccept_Call) Run added in v0.129.0

func (*MockClient_OrganizationUserInvitationAccept_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserInvitationDelete_Call added in v0.129.0

type MockClient_OrganizationUserInvitationDelete_Call struct {
	*mock.Call
}

MockClient_OrganizationUserInvitationDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserInvitationDelete'

func (*MockClient_OrganizationUserInvitationDelete_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserInvitationDelete_Call) Run added in v0.129.0

func (*MockClient_OrganizationUserInvitationDelete_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserInvitationsList_Call added in v0.129.0

type MockClient_OrganizationUserInvitationsList_Call struct {
	*mock.Call
}

MockClient_OrganizationUserInvitationsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserInvitationsList'

func (*MockClient_OrganizationUserInvitationsList_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserInvitationsList_Call) Run added in v0.129.0

func (*MockClient_OrganizationUserInvitationsList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserInvite_Call added in v0.129.0

type MockClient_OrganizationUserInvite_Call struct {
	*mock.Call
}

MockClient_OrganizationUserInvite_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserInvite'

func (*MockClient_OrganizationUserInvite_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserInvite_Call) Run added in v0.129.0

func (*MockClient_OrganizationUserInvite_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserList_Call added in v0.129.0

type MockClient_OrganizationUserList_Call struct {
	*mock.Call
}

MockClient_OrganizationUserList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserList'

func (*MockClient_OrganizationUserList_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserList_Call) Run added in v0.129.0

func (*MockClient_OrganizationUserList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserPasswordReset_Call added in v0.129.0

type MockClient_OrganizationUserPasswordReset_Call struct {
	*mock.Call
}

MockClient_OrganizationUserPasswordReset_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserPasswordReset'

func (*MockClient_OrganizationUserPasswordReset_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserPasswordReset_Call) Run added in v0.129.0

func (*MockClient_OrganizationUserPasswordReset_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserRevokeToken_Call added in v0.129.0

type MockClient_OrganizationUserRevokeToken_Call struct {
	*mock.Call
}

MockClient_OrganizationUserRevokeToken_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserRevokeToken'

func (*MockClient_OrganizationUserRevokeToken_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserRevokeToken_Call) Run added in v0.129.0

func (_c *MockClient_OrganizationUserRevokeToken_Call) Run(run func(ctx context.Context, organizationId string, memberUserId string, tokenPrefix string)) *MockClient_OrganizationUserRevokeToken_Call

func (*MockClient_OrganizationUserRevokeToken_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_OrganizationUserRevokeToken_Call) RunAndReturn(run func(ctx context.Context, organizationId string, memberUserId string, tokenPrefix string) error) *MockClient_OrganizationUserRevokeToken_Call

type MockClient_OrganizationUserTokensList_Call added in v0.129.0

type MockClient_OrganizationUserTokensList_Call struct {
	*mock.Call
}

MockClient_OrganizationUserTokensList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserTokensList'

func (*MockClient_OrganizationUserTokensList_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserTokensList_Call) Run added in v0.129.0

func (*MockClient_OrganizationUserTokensList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationUserUpdate_Call added in v0.129.0

type MockClient_OrganizationUserUpdate_Call struct {
	*mock.Call
}

MockClient_OrganizationUserUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationUserUpdate'

func (*MockClient_OrganizationUserUpdate_Call) Return added in v0.129.0

func (*MockClient_OrganizationUserUpdate_Call) Run added in v0.129.0

func (*MockClient_OrganizationUserUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationVpcCreate_Call added in v0.129.0

type MockClient_OrganizationVpcCreate_Call struct {
	*mock.Call
}

MockClient_OrganizationVpcCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationVpcCreate'

func (*MockClient_OrganizationVpcCreate_Call) Return added in v0.129.0

func (*MockClient_OrganizationVpcCreate_Call) Run added in v0.129.0

func (*MockClient_OrganizationVpcCreate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationVpcDelete_Call added in v0.129.0

type MockClient_OrganizationVpcDelete_Call struct {
	*mock.Call
}

MockClient_OrganizationVpcDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationVpcDelete'

func (*MockClient_OrganizationVpcDelete_Call) Return added in v0.129.0

func (*MockClient_OrganizationVpcDelete_Call) Run added in v0.129.0

func (_c *MockClient_OrganizationVpcDelete_Call) Run(run func(ctx context.Context, organizationId string, organizationVpcId string)) *MockClient_OrganizationVpcDelete_Call

func (*MockClient_OrganizationVpcDelete_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationVpcGet_Call added in v0.129.0

type MockClient_OrganizationVpcGet_Call struct {
	*mock.Call
}

MockClient_OrganizationVpcGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationVpcGet'

func (*MockClient_OrganizationVpcGet_Call) Return added in v0.129.0

func (*MockClient_OrganizationVpcGet_Call) Run added in v0.129.0

func (_c *MockClient_OrganizationVpcGet_Call) Run(run func(ctx context.Context, organizationId string, organizationVpcId string)) *MockClient_OrganizationVpcGet_Call

func (*MockClient_OrganizationVpcGet_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationVpcList_Call added in v0.129.0

type MockClient_OrganizationVpcList_Call struct {
	*mock.Call
}

MockClient_OrganizationVpcList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationVpcList'

func (*MockClient_OrganizationVpcList_Call) Return added in v0.129.0

func (*MockClient_OrganizationVpcList_Call) Run added in v0.129.0

func (*MockClient_OrganizationVpcList_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationVpcPeeringConnectionCreate_Call added in v0.129.0

type MockClient_OrganizationVpcPeeringConnectionCreate_Call struct {
	*mock.Call
}

MockClient_OrganizationVpcPeeringConnectionCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationVpcPeeringConnectionCreate'

func (*MockClient_OrganizationVpcPeeringConnectionCreate_Call) Return added in v0.129.0

func (*MockClient_OrganizationVpcPeeringConnectionCreate_Call) Run added in v0.129.0

func (*MockClient_OrganizationVpcPeeringConnectionCreate_Call) RunAndReturn added in v0.129.0

type MockClient_OrganizationVpcPeeringConnectionDeleteById_Call added in v0.129.0

type MockClient_OrganizationVpcPeeringConnectionDeleteById_Call struct {
	*mock.Call
}

MockClient_OrganizationVpcPeeringConnectionDeleteById_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'OrganizationVpcPeeringConnectionDeleteById'

func (*MockClient_OrganizationVpcPeeringConnectionDeleteById_Call) Return added in v0.129.0

func (*MockClient_OrganizationVpcPeeringConnectionDeleteById_Call) Run added in v0.129.0

func (*MockClient_OrganizationVpcPeeringConnectionDeleteById_Call) RunAndReturn added in v0.129.0

type MockClient_PGServiceAvailableExtensions_Call added in v0.129.0

type MockClient_PGServiceAvailableExtensions_Call struct {
	*mock.Call
}

MockClient_PGServiceAvailableExtensions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PGServiceAvailableExtensions'

func (*MockClient_PGServiceAvailableExtensions_Call) Return added in v0.129.0

func (*MockClient_PGServiceAvailableExtensions_Call) Run added in v0.129.0

func (*MockClient_PGServiceAvailableExtensions_Call) RunAndReturn added in v0.129.0

type MockClient_PGServiceQueryStatistics_Call added in v0.129.0

type MockClient_PGServiceQueryStatistics_Call struct {
	*mock.Call
}

MockClient_PGServiceQueryStatistics_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PGServiceQueryStatistics'

func (*MockClient_PGServiceQueryStatistics_Call) Return added in v0.129.0

func (*MockClient_PGServiceQueryStatistics_Call) Run added in v0.129.0

func (*MockClient_PGServiceQueryStatistics_Call) RunAndReturn added in v0.129.0

type MockClient_PermissionsGet_Call added in v0.129.0

type MockClient_PermissionsGet_Call struct {
	*mock.Call
}

MockClient_PermissionsGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PermissionsGet'

func (*MockClient_PermissionsGet_Call) Return added in v0.129.0

func (*MockClient_PermissionsGet_Call) Run added in v0.129.0

func (_c *MockClient_PermissionsGet_Call) Run(run func(ctx context.Context, organizationId string, resourceType organization.ResourceType, resourceId string)) *MockClient_PermissionsGet_Call

func (*MockClient_PermissionsGet_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_PermissionsGet_Call) RunAndReturn(run func(ctx context.Context, organizationId string, resourceType organization.ResourceType, resourceId string) ([]organization.PermissionOut, error)) *MockClient_PermissionsGet_Call

type MockClient_PermissionsSet_Call added in v0.129.0

type MockClient_PermissionsSet_Call struct {
	*mock.Call
}

MockClient_PermissionsSet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PermissionsSet'

func (*MockClient_PermissionsSet_Call) Return added in v0.129.0

func (*MockClient_PermissionsSet_Call) Run added in v0.129.0

func (*MockClient_PermissionsSet_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_PermissionsSet_Call) RunAndReturn(run func(ctx context.Context, organizationId string, resourceType organization.ResourceType, resourceId string, in *organization.PermissionsSetIn) error) *MockClient_PermissionsSet_Call

type MockClient_PermissionsUpdate_Call added in v0.129.0

type MockClient_PermissionsUpdate_Call struct {
	*mock.Call
}

MockClient_PermissionsUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PermissionsUpdate'

func (*MockClient_PermissionsUpdate_Call) Return added in v0.129.0

func (*MockClient_PermissionsUpdate_Call) Run added in v0.129.0

func (*MockClient_PermissionsUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_PgAvailableExtensions_Call added in v0.129.0

type MockClient_PgAvailableExtensions_Call struct {
	*mock.Call
}

MockClient_PgAvailableExtensions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PgAvailableExtensions'

func (*MockClient_PgAvailableExtensions_Call) Return added in v0.129.0

func (*MockClient_PgAvailableExtensions_Call) Run added in v0.129.0

func (*MockClient_PgAvailableExtensions_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectAlertsList_Call added in v0.129.0

type MockClient_ProjectAlertsList_Call struct {
	*mock.Call
}

MockClient_ProjectAlertsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectAlertsList'

func (*MockClient_ProjectAlertsList_Call) Return added in v0.129.0

func (*MockClient_ProjectAlertsList_Call) Run added in v0.129.0

func (*MockClient_ProjectAlertsList_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectCreate_Call added in v0.129.0

type MockClient_ProjectCreate_Call struct {
	*mock.Call
}

MockClient_ProjectCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectCreate'

func (*MockClient_ProjectCreate_Call) Return added in v0.129.0

func (*MockClient_ProjectCreate_Call) Run added in v0.129.0

func (*MockClient_ProjectCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectCreditsClaim_Call added in v0.129.0

type MockClient_ProjectCreditsClaim_Call struct {
	*mock.Call
}

MockClient_ProjectCreditsClaim_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectCreditsClaim'

func (*MockClient_ProjectCreditsClaim_Call) Return added in v0.129.0

func (*MockClient_ProjectCreditsClaim_Call) Run added in v0.129.0

func (*MockClient_ProjectCreditsClaim_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectCreditsList_Call added in v0.129.0

type MockClient_ProjectCreditsList_Call struct {
	*mock.Call
}

MockClient_ProjectCreditsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectCreditsList'

func (*MockClient_ProjectCreditsList_Call) Return added in v0.129.0

func (*MockClient_ProjectCreditsList_Call) Run added in v0.129.0

func (*MockClient_ProjectCreditsList_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectDelete_Call added in v0.129.0

type MockClient_ProjectDelete_Call struct {
	*mock.Call
}

MockClient_ProjectDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectDelete'

func (*MockClient_ProjectDelete_Call) Return added in v0.129.0

func (*MockClient_ProjectDelete_Call) Run added in v0.129.0

func (*MockClient_ProjectDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ProjectDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string) error) *MockClient_ProjectDelete_Call

type MockClient_ProjectGenerateSbomDownloadUrl_Call added in v0.129.0

type MockClient_ProjectGenerateSbomDownloadUrl_Call struct {
	*mock.Call
}

MockClient_ProjectGenerateSbomDownloadUrl_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectGenerateSbomDownloadUrl'

func (*MockClient_ProjectGenerateSbomDownloadUrl_Call) Return added in v0.129.0

func (*MockClient_ProjectGenerateSbomDownloadUrl_Call) Run added in v0.129.0

func (*MockClient_ProjectGenerateSbomDownloadUrl_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectGetEventLogs_Call added in v0.129.0

type MockClient_ProjectGetEventLogs_Call struct {
	*mock.Call
}

MockClient_ProjectGetEventLogs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectGetEventLogs'

func (*MockClient_ProjectGetEventLogs_Call) Return added in v0.129.0

func (*MockClient_ProjectGetEventLogs_Call) Run added in v0.129.0

func (*MockClient_ProjectGetEventLogs_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectGetServiceLogs_Call added in v0.129.0

type MockClient_ProjectGetServiceLogs_Call struct {
	*mock.Call
}

MockClient_ProjectGetServiceLogs_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectGetServiceLogs'

func (*MockClient_ProjectGetServiceLogs_Call) Return added in v0.129.0

func (*MockClient_ProjectGetServiceLogs_Call) Run added in v0.129.0

func (*MockClient_ProjectGetServiceLogs_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectGet_Call added in v0.129.0

type MockClient_ProjectGet_Call struct {
	*mock.Call
}

MockClient_ProjectGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectGet'

func (*MockClient_ProjectGet_Call) Return added in v0.129.0

func (*MockClient_ProjectGet_Call) Run added in v0.129.0

func (*MockClient_ProjectGet_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectInviteAccept_Call added in v0.129.0

type MockClient_ProjectInviteAccept_Call struct {
	*mock.Call
}

MockClient_ProjectInviteAccept_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectInviteAccept'

func (*MockClient_ProjectInviteAccept_Call) Return added in v0.129.0

func (*MockClient_ProjectInviteAccept_Call) Run added in v0.129.0

func (_c *MockClient_ProjectInviteAccept_Call) Run(run func(ctx context.Context, project1 string, inviteVerificationCode string)) *MockClient_ProjectInviteAccept_Call

func (*MockClient_ProjectInviteAccept_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ProjectInviteAccept_Call) RunAndReturn(run func(ctx context.Context, project1 string, inviteVerificationCode string) (*project.ProjectInviteAcceptOut, error)) *MockClient_ProjectInviteAccept_Call

type MockClient_ProjectInviteDelete_Call added in v0.129.0

type MockClient_ProjectInviteDelete_Call struct {
	*mock.Call
}

MockClient_ProjectInviteDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectInviteDelete'

func (*MockClient_ProjectInviteDelete_Call) Return added in v0.129.0

func (*MockClient_ProjectInviteDelete_Call) Run added in v0.129.0

func (*MockClient_ProjectInviteDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ProjectInviteDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, invitedEmail string) error) *MockClient_ProjectInviteDelete_Call

type MockClient_ProjectInvite_Call added in v0.129.0

type MockClient_ProjectInvite_Call struct {
	*mock.Call
}

MockClient_ProjectInvite_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectInvite'

func (*MockClient_ProjectInvite_Call) Return added in v0.129.0

func (*MockClient_ProjectInvite_Call) Run added in v0.129.0

func (*MockClient_ProjectInvite_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectInvoiceList_Call added in v0.129.0

type MockClient_ProjectInvoiceList_Call struct {
	*mock.Call
}

MockClient_ProjectInvoiceList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectInvoiceList'

func (*MockClient_ProjectInvoiceList_Call) Return added in v0.129.0

func (*MockClient_ProjectInvoiceList_Call) Run added in v0.129.0

func (*MockClient_ProjectInvoiceList_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectKmsGetCA_Call added in v0.129.0

type MockClient_ProjectKmsGetCA_Call struct {
	*mock.Call
}

MockClient_ProjectKmsGetCA_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectKmsGetCA'

func (*MockClient_ProjectKmsGetCA_Call) Return added in v0.129.0

func (*MockClient_ProjectKmsGetCA_Call) Run added in v0.129.0

func (*MockClient_ProjectKmsGetCA_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectList_Call added in v0.129.0

type MockClient_ProjectList_Call struct {
	*mock.Call
}

MockClient_ProjectList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectList'

func (*MockClient_ProjectList_Call) Return added in v0.129.0

func (*MockClient_ProjectList_Call) Run added in v0.129.0

func (*MockClient_ProjectList_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectPrivatelinkAvailabilityList_Call added in v0.129.0

type MockClient_ProjectPrivatelinkAvailabilityList_Call struct {
	*mock.Call
}

MockClient_ProjectPrivatelinkAvailabilityList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectPrivatelinkAvailabilityList'

func (*MockClient_ProjectPrivatelinkAvailabilityList_Call) Return added in v0.129.0

func (*MockClient_ProjectPrivatelinkAvailabilityList_Call) Run added in v0.129.0

func (*MockClient_ProjectPrivatelinkAvailabilityList_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectServicePlanList_Call added in v0.129.0

type MockClient_ProjectServicePlanList_Call struct {
	*mock.Call
}

MockClient_ProjectServicePlanList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectServicePlanList'

func (*MockClient_ProjectServicePlanList_Call) Return added in v0.129.0

func (*MockClient_ProjectServicePlanList_Call) Run added in v0.129.0

func (*MockClient_ProjectServicePlanList_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectServicePlanPriceGet_Call added in v0.129.0

type MockClient_ProjectServicePlanPriceGet_Call struct {
	*mock.Call
}

MockClient_ProjectServicePlanPriceGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectServicePlanPriceGet'

func (*MockClient_ProjectServicePlanPriceGet_Call) Return added in v0.129.0

func (*MockClient_ProjectServicePlanPriceGet_Call) Run added in v0.129.0

func (_c *MockClient_ProjectServicePlanPriceGet_Call) Run(run func(ctx context.Context, project1 string, serviceType string, servicePlan string, cloud1 string)) *MockClient_ProjectServicePlanPriceGet_Call

func (*MockClient_ProjectServicePlanPriceGet_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectServicePlanSpecsGet_Call added in v0.129.0

type MockClient_ProjectServicePlanSpecsGet_Call struct {
	*mock.Call
}

MockClient_ProjectServicePlanSpecsGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectServicePlanSpecsGet'

func (*MockClient_ProjectServicePlanSpecsGet_Call) Return added in v0.129.0

func (*MockClient_ProjectServicePlanSpecsGet_Call) Run added in v0.129.0

func (*MockClient_ProjectServicePlanSpecsGet_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectServiceTagsList_Call added in v0.129.0

type MockClient_ProjectServiceTagsList_Call struct {
	*mock.Call
}

MockClient_ProjectServiceTagsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectServiceTagsList'

func (*MockClient_ProjectServiceTagsList_Call) Return added in v0.129.0

func (*MockClient_ProjectServiceTagsList_Call) Run added in v0.129.0

func (*MockClient_ProjectServiceTagsList_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ProjectServiceTagsList_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string) (map[string]string, error)) *MockClient_ProjectServiceTagsList_Call

type MockClient_ProjectServiceTagsReplace_Call added in v0.129.0

type MockClient_ProjectServiceTagsReplace_Call struct {
	*mock.Call
}

MockClient_ProjectServiceTagsReplace_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectServiceTagsReplace'

func (*MockClient_ProjectServiceTagsReplace_Call) Return added in v0.129.0

func (*MockClient_ProjectServiceTagsReplace_Call) Run added in v0.129.0

func (*MockClient_ProjectServiceTagsReplace_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectServiceTagsUpdate_Call added in v0.129.0

type MockClient_ProjectServiceTagsUpdate_Call struct {
	*mock.Call
}

MockClient_ProjectServiceTagsUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectServiceTagsUpdate'

func (*MockClient_ProjectServiceTagsUpdate_Call) Return added in v0.129.0

func (*MockClient_ProjectServiceTagsUpdate_Call) Run added in v0.129.0

func (*MockClient_ProjectServiceTagsUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectServiceTypesGet_Call added in v0.129.0

type MockClient_ProjectServiceTypesGet_Call struct {
	*mock.Call
}

MockClient_ProjectServiceTypesGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectServiceTypesGet'

func (*MockClient_ProjectServiceTypesGet_Call) Return added in v0.129.0

func (*MockClient_ProjectServiceTypesGet_Call) Run added in v0.129.0

func (*MockClient_ProjectServiceTypesGet_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectServiceTypesList_Call added in v0.129.0

type MockClient_ProjectServiceTypesList_Call struct {
	*mock.Call
}

MockClient_ProjectServiceTypesList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectServiceTypesList'

func (*MockClient_ProjectServiceTypesList_Call) Return added in v0.129.0

func (*MockClient_ProjectServiceTypesList_Call) Run added in v0.129.0

func (*MockClient_ProjectServiceTypesList_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectStaticIPAssociate_Call added in v0.129.0

type MockClient_ProjectStaticIPAssociate_Call struct {
	*mock.Call
}

MockClient_ProjectStaticIPAssociate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectStaticIPAssociate'

func (*MockClient_ProjectStaticIPAssociate_Call) Return added in v0.129.0

func (*MockClient_ProjectStaticIPAssociate_Call) Run added in v0.129.0

func (*MockClient_ProjectStaticIPAssociate_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectStaticIPAvailabilityList_Call added in v0.129.0

type MockClient_ProjectStaticIPAvailabilityList_Call struct {
	*mock.Call
}

MockClient_ProjectStaticIPAvailabilityList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectStaticIPAvailabilityList'

func (*MockClient_ProjectStaticIPAvailabilityList_Call) Return added in v0.129.0

func (*MockClient_ProjectStaticIPAvailabilityList_Call) Run added in v0.129.0

func (*MockClient_ProjectStaticIPAvailabilityList_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectStaticIPDissociate_Call added in v0.129.0

type MockClient_ProjectStaticIPDissociate_Call struct {
	*mock.Call
}

MockClient_ProjectStaticIPDissociate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectStaticIPDissociate'

func (*MockClient_ProjectStaticIPDissociate_Call) Return added in v0.129.0

func (*MockClient_ProjectStaticIPDissociate_Call) Run added in v0.129.0

func (*MockClient_ProjectStaticIPDissociate_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectStaticIPPatch_Call added in v0.129.0

type MockClient_ProjectStaticIPPatch_Call struct {
	*mock.Call
}

MockClient_ProjectStaticIPPatch_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectStaticIPPatch'

func (*MockClient_ProjectStaticIPPatch_Call) Return added in v0.129.0

func (*MockClient_ProjectStaticIPPatch_Call) Run added in v0.129.0

func (*MockClient_ProjectStaticIPPatch_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectTagsList_Call added in v0.129.0

type MockClient_ProjectTagsList_Call struct {
	*mock.Call
}

MockClient_ProjectTagsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectTagsList'

func (*MockClient_ProjectTagsList_Call) Return added in v0.129.0

func (*MockClient_ProjectTagsList_Call) Run added in v0.129.0

func (*MockClient_ProjectTagsList_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ProjectTagsList_Call) RunAndReturn(run func(ctx context.Context, project1 string) (map[string]string, error)) *MockClient_ProjectTagsList_Call

type MockClient_ProjectTagsReplace_Call added in v0.129.0

type MockClient_ProjectTagsReplace_Call struct {
	*mock.Call
}

MockClient_ProjectTagsReplace_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectTagsReplace'

func (*MockClient_ProjectTagsReplace_Call) Return added in v0.129.0

func (*MockClient_ProjectTagsReplace_Call) Run added in v0.129.0

func (*MockClient_ProjectTagsReplace_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectTagsUpdate_Call added in v0.129.0

type MockClient_ProjectTagsUpdate_Call struct {
	*mock.Call
}

MockClient_ProjectTagsUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectTagsUpdate'

func (*MockClient_ProjectTagsUpdate_Call) Return added in v0.129.0

func (*MockClient_ProjectTagsUpdate_Call) Run added in v0.129.0

func (*MockClient_ProjectTagsUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectUpdate_Call added in v0.129.0

type MockClient_ProjectUpdate_Call struct {
	*mock.Call
}

MockClient_ProjectUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectUpdate'

func (*MockClient_ProjectUpdate_Call) Return added in v0.129.0

func (*MockClient_ProjectUpdate_Call) Run added in v0.129.0

func (*MockClient_ProjectUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectUserList_Call added in v0.129.0

type MockClient_ProjectUserList_Call struct {
	*mock.Call
}

MockClient_ProjectUserList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectUserList'

func (*MockClient_ProjectUserList_Call) Return added in v0.129.0

func (*MockClient_ProjectUserList_Call) Run added in v0.129.0

func (*MockClient_ProjectUserList_Call) RunAndReturn added in v0.129.0

type MockClient_ProjectUserRemove_Call added in v0.129.0

type MockClient_ProjectUserRemove_Call struct {
	*mock.Call
}

MockClient_ProjectUserRemove_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectUserRemove'

func (*MockClient_ProjectUserRemove_Call) Return added in v0.129.0

func (*MockClient_ProjectUserRemove_Call) Run added in v0.129.0

func (*MockClient_ProjectUserRemove_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ProjectUserRemove_Call) RunAndReturn(run func(ctx context.Context, project1 string, userEmail string) error) *MockClient_ProjectUserRemove_Call

type MockClient_ProjectUserUpdate_Call added in v0.129.0

type MockClient_ProjectUserUpdate_Call struct {
	*mock.Call
}

MockClient_ProjectUserUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ProjectUserUpdate'

func (*MockClient_ProjectUserUpdate_Call) Return added in v0.129.0

func (*MockClient_ProjectUserUpdate_Call) Run added in v0.129.0

func (*MockClient_ProjectUserUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_PublicPrivatelinkAvailabilityList_Call added in v0.129.0

type MockClient_PublicPrivatelinkAvailabilityList_Call struct {
	*mock.Call
}

MockClient_PublicPrivatelinkAvailabilityList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PublicPrivatelinkAvailabilityList'

func (*MockClient_PublicPrivatelinkAvailabilityList_Call) Return added in v0.129.0

func (*MockClient_PublicPrivatelinkAvailabilityList_Call) Run added in v0.129.0

func (*MockClient_PublicPrivatelinkAvailabilityList_Call) RunAndReturn added in v0.129.0

type MockClient_PublicStaticIPAvailabilityList_Call added in v0.129.0

type MockClient_PublicStaticIPAvailabilityList_Call struct {
	*mock.Call
}

MockClient_PublicStaticIPAvailabilityList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'PublicStaticIPAvailabilityList'

func (*MockClient_PublicStaticIPAvailabilityList_Call) Return added in v0.129.0

func (*MockClient_PublicStaticIPAvailabilityList_Call) Run added in v0.129.0

func (*MockClient_PublicStaticIPAvailabilityList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceAlertsList_Call added in v0.129.0

type MockClient_ServiceAlertsList_Call struct {
	*mock.Call
}

MockClient_ServiceAlertsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceAlertsList'

func (*MockClient_ServiceAlertsList_Call) Return added in v0.129.0

func (*MockClient_ServiceAlertsList_Call) Run added in v0.129.0

func (*MockClient_ServiceAlertsList_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceAlertsList_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string) ([]service.AlertOut, error)) *MockClient_ServiceAlertsList_Call

type MockClient_ServiceBackupToAnotherRegionReport_Call added in v0.129.0

type MockClient_ServiceBackupToAnotherRegionReport_Call struct {
	*mock.Call
}

MockClient_ServiceBackupToAnotherRegionReport_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceBackupToAnotherRegionReport'

func (*MockClient_ServiceBackupToAnotherRegionReport_Call) Return added in v0.129.0

func (*MockClient_ServiceBackupToAnotherRegionReport_Call) Run added in v0.129.0

func (*MockClient_ServiceBackupToAnotherRegionReport_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceBackupsGet_Call added in v0.129.0

type MockClient_ServiceBackupsGet_Call struct {
	*mock.Call
}

MockClient_ServiceBackupsGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceBackupsGet'

func (*MockClient_ServiceBackupsGet_Call) Return added in v0.129.0

func (*MockClient_ServiceBackupsGet_Call) Run added in v0.129.0

func (*MockClient_ServiceBackupsGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceCancelQuery_Call added in v0.129.0

type MockClient_ServiceCancelQuery_Call struct {
	*mock.Call
}

MockClient_ServiceCancelQuery_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceCancelQuery'

func (*MockClient_ServiceCancelQuery_Call) Return added in v0.129.0

func (*MockClient_ServiceCancelQuery_Call) Run added in v0.129.0

func (*MockClient_ServiceCancelQuery_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHouseCurrentQueries_Call added in v0.129.0

type MockClient_ServiceClickHouseCurrentQueries_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseCurrentQueries_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseCurrentQueries'

func (*MockClient_ServiceClickHouseCurrentQueries_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseCurrentQueries_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseCurrentQueries_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHouseDatabaseCreate_Call added in v0.129.0

type MockClient_ServiceClickHouseDatabaseCreate_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseDatabaseCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseDatabaseCreate'

func (*MockClient_ServiceClickHouseDatabaseCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseDatabaseCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseDatabaseCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHouseDatabaseDelete_Call added in v0.129.0

type MockClient_ServiceClickHouseDatabaseDelete_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseDatabaseDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseDatabaseDelete'

func (*MockClient_ServiceClickHouseDatabaseDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseDatabaseDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseDatabaseDelete_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHouseDatabaseList_Call added in v0.129.0

type MockClient_ServiceClickHouseDatabaseList_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseDatabaseList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseDatabaseList'

func (*MockClient_ServiceClickHouseDatabaseList_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseDatabaseList_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseDatabaseList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHousePasswordReset_Call added in v0.129.0

type MockClient_ServiceClickHousePasswordReset_Call struct {
	*mock.Call
}

MockClient_ServiceClickHousePasswordReset_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHousePasswordReset'

func (*MockClient_ServiceClickHousePasswordReset_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHousePasswordReset_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHousePasswordReset_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHouseQueryStats_Call added in v0.129.0

type MockClient_ServiceClickHouseQueryStats_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseQueryStats_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseQueryStats'

func (*MockClient_ServiceClickHouseQueryStats_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseQueryStats_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseQueryStats_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHouseQuery_Call added in v0.129.0

type MockClient_ServiceClickHouseQuery_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseQuery_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseQuery'

func (*MockClient_ServiceClickHouseQuery_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseQuery_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseQuery_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHouseTieredStorageSummary_Call added in v0.129.0

type MockClient_ServiceClickHouseTieredStorageSummary_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseTieredStorageSummary_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseTieredStorageSummary'

func (*MockClient_ServiceClickHouseTieredStorageSummary_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseTieredStorageSummary_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseTieredStorageSummary_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHouseUserCreate_Call added in v0.129.0

type MockClient_ServiceClickHouseUserCreate_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseUserCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseUserCreate'

func (*MockClient_ServiceClickHouseUserCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseUserCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseUserCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceClickHouseUserDelete_Call added in v0.129.0

type MockClient_ServiceClickHouseUserDelete_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseUserDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseUserDelete'

func (*MockClient_ServiceClickHouseUserDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseUserDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseUserDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceClickHouseUserDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, userUuid string) error) *MockClient_ServiceClickHouseUserDelete_Call

type MockClient_ServiceClickHouseUserList_Call added in v0.129.0

type MockClient_ServiceClickHouseUserList_Call struct {
	*mock.Call
}

MockClient_ServiceClickHouseUserList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceClickHouseUserList'

func (*MockClient_ServiceClickHouseUserList_Call) Return added in v0.129.0

func (*MockClient_ServiceClickHouseUserList_Call) Run added in v0.129.0

func (*MockClient_ServiceClickHouseUserList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceCreate_Call added in v0.129.0

type MockClient_ServiceCreate_Call struct {
	*mock.Call
}

MockClient_ServiceCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceCreate'

func (*MockClient_ServiceCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceDatabaseCreate_Call added in v0.129.0

type MockClient_ServiceDatabaseCreate_Call struct {
	*mock.Call
}

MockClient_ServiceDatabaseCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceDatabaseCreate'

func (*MockClient_ServiceDatabaseCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceDatabaseCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceDatabaseCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceDatabaseDelete_Call added in v0.129.0

type MockClient_ServiceDatabaseDelete_Call struct {
	*mock.Call
}

MockClient_ServiceDatabaseDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceDatabaseDelete'

func (*MockClient_ServiceDatabaseDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceDatabaseDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceDatabaseDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceDatabaseDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, dbname string) error) *MockClient_ServiceDatabaseDelete_Call

type MockClient_ServiceDatabaseList_Call added in v0.129.0

type MockClient_ServiceDatabaseList_Call struct {
	*mock.Call
}

MockClient_ServiceDatabaseList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceDatabaseList'

func (*MockClient_ServiceDatabaseList_Call) Return added in v0.129.0

func (*MockClient_ServiceDatabaseList_Call) Run added in v0.129.0

func (*MockClient_ServiceDatabaseList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceDelete_Call added in v0.129.0

type MockClient_ServiceDelete_Call struct {
	*mock.Call
}

MockClient_ServiceDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceDelete'

func (*MockClient_ServiceDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceDelete_Call) Run added in v0.129.0

func (_c *MockClient_ServiceDelete_Call) Run(run func(ctx context.Context, project1 string, serviceName string)) *MockClient_ServiceDelete_Call

func (*MockClient_ServiceDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string) error) *MockClient_ServiceDelete_Call

type MockClient_ServiceEnableWrites_Call added in v0.129.0

type MockClient_ServiceEnableWrites_Call struct {
	*mock.Call
}

MockClient_ServiceEnableWrites_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceEnableWrites'

func (*MockClient_ServiceEnableWrites_Call) Return added in v0.129.0

func (*MockClient_ServiceEnableWrites_Call) Run added in v0.129.0

func (*MockClient_ServiceEnableWrites_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceEnableWrites_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string) (*string, error)) *MockClient_ServiceEnableWrites_Call

type MockClient_ServiceFlinkCancelApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkCancelApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkCancelApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkCancelApplicationDeployment'

func (*MockClient_ServiceFlinkCancelApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkCancelApplicationDeployment_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkCancelApplicationDeployment_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkCancelJarApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkCancelJarApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkCancelJarApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkCancelJarApplicationDeployment'

func (*MockClient_ServiceFlinkCancelJarApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkCancelJarApplicationDeployment_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkCancelJarApplicationDeployment_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkCreateApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkCreateApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkCreateApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkCreateApplicationDeployment'

func (*MockClient_ServiceFlinkCreateApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkCreateApplicationDeployment_Call) Run added in v0.129.0

type MockClient_ServiceFlinkCreateApplicationVersion_Call added in v0.129.0

type MockClient_ServiceFlinkCreateApplicationVersion_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkCreateApplicationVersion_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkCreateApplicationVersion'

func (*MockClient_ServiceFlinkCreateApplicationVersion_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkCreateApplicationVersion_Call) Run added in v0.129.0

type MockClient_ServiceFlinkCreateApplication_Call added in v0.129.0

type MockClient_ServiceFlinkCreateApplication_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkCreateApplication_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkCreateApplication'

func (*MockClient_ServiceFlinkCreateApplication_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkCreateApplication_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkCreateApplication_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkCreateJarApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkCreateJarApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkCreateJarApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkCreateJarApplicationDeployment'

func (*MockClient_ServiceFlinkCreateJarApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkCreateJarApplicationDeployment_Call) Run added in v0.129.0

type MockClient_ServiceFlinkCreateJarApplicationVersion_Call added in v0.129.0

type MockClient_ServiceFlinkCreateJarApplicationVersion_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkCreateJarApplicationVersion_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkCreateJarApplicationVersion'

func (*MockClient_ServiceFlinkCreateJarApplicationVersion_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkCreateJarApplicationVersion_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkCreateJarApplicationVersion_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkCreateJarApplication_Call added in v0.129.0

type MockClient_ServiceFlinkCreateJarApplication_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkCreateJarApplication_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkCreateJarApplication'

func (*MockClient_ServiceFlinkCreateJarApplication_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkCreateJarApplication_Call) Run added in v0.129.0

type MockClient_ServiceFlinkDeleteApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkDeleteApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkDeleteApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkDeleteApplicationDeployment'

func (*MockClient_ServiceFlinkDeleteApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkDeleteApplicationDeployment_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkDeleteApplicationDeployment_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkDeleteApplicationVersion_Call added in v0.129.0

type MockClient_ServiceFlinkDeleteApplicationVersion_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkDeleteApplicationVersion_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkDeleteApplicationVersion'

func (*MockClient_ServiceFlinkDeleteApplicationVersion_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkDeleteApplicationVersion_Call) Run added in v0.129.0

func (_c *MockClient_ServiceFlinkDeleteApplicationVersion_Call) Run(run func(ctx context.Context, project1 string, serviceName string, applicationId string, applicationVersionId string)) *MockClient_ServiceFlinkDeleteApplicationVersion_Call

func (*MockClient_ServiceFlinkDeleteApplicationVersion_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkDeleteApplication_Call added in v0.129.0

type MockClient_ServiceFlinkDeleteApplication_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkDeleteApplication_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkDeleteApplication'

func (*MockClient_ServiceFlinkDeleteApplication_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkDeleteApplication_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkDeleteApplication_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkDeleteJarApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkDeleteJarApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkDeleteJarApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkDeleteJarApplicationDeployment'

func (*MockClient_ServiceFlinkDeleteJarApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkDeleteJarApplicationDeployment_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkDeleteJarApplicationDeployment_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkDeleteJarApplicationVersion_Call added in v0.129.0

type MockClient_ServiceFlinkDeleteJarApplicationVersion_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkDeleteJarApplicationVersion_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkDeleteJarApplicationVersion'

func (*MockClient_ServiceFlinkDeleteJarApplicationVersion_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkDeleteJarApplicationVersion_Call) Run added in v0.129.0

func (_c *MockClient_ServiceFlinkDeleteJarApplicationVersion_Call) Run(run func(ctx context.Context, project1 string, serviceName string, applicationId string, applicationVersionId string)) *MockClient_ServiceFlinkDeleteJarApplicationVersion_Call

func (*MockClient_ServiceFlinkDeleteJarApplicationVersion_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkDeleteJarApplication_Call added in v0.129.0

type MockClient_ServiceFlinkDeleteJarApplication_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkDeleteJarApplication_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkDeleteJarApplication'

func (*MockClient_ServiceFlinkDeleteJarApplication_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkDeleteJarApplication_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkDeleteJarApplication_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkGetApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkGetApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkGetApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkGetApplicationDeployment'

func (*MockClient_ServiceFlinkGetApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkGetApplicationDeployment_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkGetApplicationDeployment_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkGetApplicationVersion_Call added in v0.129.0

type MockClient_ServiceFlinkGetApplicationVersion_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkGetApplicationVersion_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkGetApplicationVersion'

func (*MockClient_ServiceFlinkGetApplicationVersion_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkGetApplicationVersion_Call) Run added in v0.129.0

func (_c *MockClient_ServiceFlinkGetApplicationVersion_Call) Run(run func(ctx context.Context, project1 string, serviceName string, applicationId string, applicationVersionId string)) *MockClient_ServiceFlinkGetApplicationVersion_Call

func (*MockClient_ServiceFlinkGetApplicationVersion_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkGetApplication_Call added in v0.129.0

type MockClient_ServiceFlinkGetApplication_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkGetApplication_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkGetApplication'

func (*MockClient_ServiceFlinkGetApplication_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkGetApplication_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkGetApplication_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkGetJarApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkGetJarApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkGetJarApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkGetJarApplicationDeployment'

func (*MockClient_ServiceFlinkGetJarApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkGetJarApplicationDeployment_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkGetJarApplicationDeployment_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkGetJarApplicationVersion_Call added in v0.129.0

type MockClient_ServiceFlinkGetJarApplicationVersion_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkGetJarApplicationVersion_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkGetJarApplicationVersion'

func (*MockClient_ServiceFlinkGetJarApplicationVersion_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkGetJarApplicationVersion_Call) Run added in v0.129.0

func (_c *MockClient_ServiceFlinkGetJarApplicationVersion_Call) Run(run func(ctx context.Context, project1 string, serviceName string, applicationId string, applicationVersionId string)) *MockClient_ServiceFlinkGetJarApplicationVersion_Call

func (*MockClient_ServiceFlinkGetJarApplicationVersion_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkGetJarApplication_Call added in v0.129.0

type MockClient_ServiceFlinkGetJarApplication_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkGetJarApplication_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkGetJarApplication'

func (*MockClient_ServiceFlinkGetJarApplication_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkGetJarApplication_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkGetJarApplication_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkJobDetails_Call added in v0.129.0

type MockClient_ServiceFlinkJobDetails_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkJobDetails_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkJobDetails'

func (*MockClient_ServiceFlinkJobDetails_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkJobDetails_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkJobDetails_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkJobsList_Call added in v0.129.0

type MockClient_ServiceFlinkJobsList_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkJobsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkJobsList'

func (*MockClient_ServiceFlinkJobsList_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkJobsList_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkJobsList_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceFlinkJobsList_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string) ([]flinkjob.JobOut, error)) *MockClient_ServiceFlinkJobsList_Call

type MockClient_ServiceFlinkListApplicationDeployments_Call added in v0.129.0

type MockClient_ServiceFlinkListApplicationDeployments_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkListApplicationDeployments_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkListApplicationDeployments'

func (*MockClient_ServiceFlinkListApplicationDeployments_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkListApplicationDeployments_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkListApplicationDeployments_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkListApplications_Call added in v0.129.0

type MockClient_ServiceFlinkListApplications_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkListApplications_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkListApplications'

func (*MockClient_ServiceFlinkListApplications_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkListApplications_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkListApplications_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkListJarApplicationDeployments_Call added in v0.129.0

type MockClient_ServiceFlinkListJarApplicationDeployments_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkListJarApplicationDeployments_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkListJarApplicationDeployments'

func (*MockClient_ServiceFlinkListJarApplicationDeployments_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkListJarApplicationDeployments_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkListJarApplicationDeployments_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkListJarApplications_Call added in v0.129.0

type MockClient_ServiceFlinkListJarApplications_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkListJarApplications_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkListJarApplications'

func (*MockClient_ServiceFlinkListJarApplications_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkListJarApplications_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkListJarApplications_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkOverview_Call added in v0.129.0

type MockClient_ServiceFlinkOverview_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkOverview_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkOverview'

func (*MockClient_ServiceFlinkOverview_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkOverview_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkOverview_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkStopApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkStopApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkStopApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkStopApplicationDeployment'

func (*MockClient_ServiceFlinkStopApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkStopApplicationDeployment_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkStopApplicationDeployment_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkStopJarApplicationDeployment_Call added in v0.129.0

type MockClient_ServiceFlinkStopJarApplicationDeployment_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkStopJarApplicationDeployment_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkStopJarApplicationDeployment'

func (*MockClient_ServiceFlinkStopJarApplicationDeployment_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkStopJarApplicationDeployment_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkStopJarApplicationDeployment_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkUpdateApplication_Call added in v0.129.0

type MockClient_ServiceFlinkUpdateApplication_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkUpdateApplication_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkUpdateApplication'

func (*MockClient_ServiceFlinkUpdateApplication_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkUpdateApplication_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkUpdateApplication_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkUpdateJarApplication_Call added in v0.129.0

type MockClient_ServiceFlinkUpdateJarApplication_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkUpdateJarApplication_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkUpdateJarApplication'

func (*MockClient_ServiceFlinkUpdateJarApplication_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkUpdateJarApplication_Call) Run added in v0.129.0

func (*MockClient_ServiceFlinkUpdateJarApplication_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceFlinkValidateApplicationVersion_Call added in v0.129.0

type MockClient_ServiceFlinkValidateApplicationVersion_Call struct {
	*mock.Call
}

MockClient_ServiceFlinkValidateApplicationVersion_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceFlinkValidateApplicationVersion'

func (*MockClient_ServiceFlinkValidateApplicationVersion_Call) Return added in v0.129.0

func (*MockClient_ServiceFlinkValidateApplicationVersion_Call) Run added in v0.129.0

type MockClient_ServiceGetMigrationStatus_Call added in v0.129.0

type MockClient_ServiceGetMigrationStatus_Call struct {
	*mock.Call
}

MockClient_ServiceGetMigrationStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceGetMigrationStatus'

func (*MockClient_ServiceGetMigrationStatus_Call) Return added in v0.129.0

func (*MockClient_ServiceGetMigrationStatus_Call) Run added in v0.129.0

func (*MockClient_ServiceGetMigrationStatus_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceGet_Call added in v0.129.0

type MockClient_ServiceGet_Call struct {
	*mock.Call
}

MockClient_ServiceGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceGet'

func (*MockClient_ServiceGet_Call) Return added in v0.129.0

func (*MockClient_ServiceGet_Call) Run added in v0.129.0

func (_c *MockClient_ServiceGet_Call) Run(run func(ctx context.Context, project1 string, serviceName string, query ...[2]string)) *MockClient_ServiceGet_Call

func (*MockClient_ServiceGet_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceGet_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, query ...[2]string) (*service.ServiceGetOut, error)) *MockClient_ServiceGet_Call

type MockClient_ServiceIntegrationCreate_Call added in v0.129.0

type MockClient_ServiceIntegrationCreate_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationCreate'

func (*MockClient_ServiceIntegrationCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationDelete_Call added in v0.129.0

type MockClient_ServiceIntegrationDelete_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationDelete'

func (*MockClient_ServiceIntegrationDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationDelete_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationEndpointCreate_Call added in v0.129.0

type MockClient_ServiceIntegrationEndpointCreate_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationEndpointCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationEndpointCreate'

func (*MockClient_ServiceIntegrationEndpointCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationEndpointDelete_Call added in v0.129.0

type MockClient_ServiceIntegrationEndpointDelete_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationEndpointDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationEndpointDelete'

func (*MockClient_ServiceIntegrationEndpointDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointDelete_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationEndpointGet_Call added in v0.129.0

type MockClient_ServiceIntegrationEndpointGet_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationEndpointGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationEndpointGet'

func (*MockClient_ServiceIntegrationEndpointGet_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointGet_Call) Run added in v0.129.0

func (_c *MockClient_ServiceIntegrationEndpointGet_Call) Run(run func(ctx context.Context, project1 string, integrationEndpointId string, query ...[2]string)) *MockClient_ServiceIntegrationEndpointGet_Call

func (*MockClient_ServiceIntegrationEndpointGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationEndpointList_Call added in v0.129.0

type MockClient_ServiceIntegrationEndpointList_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationEndpointList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationEndpointList'

func (*MockClient_ServiceIntegrationEndpointList_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointList_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationEndpointTypes_Call added in v0.129.0

type MockClient_ServiceIntegrationEndpointTypes_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationEndpointTypes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationEndpointTypes'

func (*MockClient_ServiceIntegrationEndpointTypes_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointTypes_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointTypes_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationEndpointUpdate_Call added in v0.129.0

type MockClient_ServiceIntegrationEndpointUpdate_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationEndpointUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationEndpointUpdate'

func (*MockClient_ServiceIntegrationEndpointUpdate_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointUpdate_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationEndpointUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationGet_Call added in v0.129.0

type MockClient_ServiceIntegrationGet_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationGet'

func (*MockClient_ServiceIntegrationGet_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationGet_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationList_Call added in v0.129.0

type MockClient_ServiceIntegrationList_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationList'

func (*MockClient_ServiceIntegrationList_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationList_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationTypes_Call added in v0.129.0

type MockClient_ServiceIntegrationTypes_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationTypes_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationTypes'

func (*MockClient_ServiceIntegrationTypes_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationTypes_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationTypes_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceIntegrationUpdate_Call added in v0.129.0

type MockClient_ServiceIntegrationUpdate_Call struct {
	*mock.Call
}

MockClient_ServiceIntegrationUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceIntegrationUpdate'

func (*MockClient_ServiceIntegrationUpdate_Call) Return added in v0.129.0

func (*MockClient_ServiceIntegrationUpdate_Call) Run added in v0.129.0

func (*MockClient_ServiceIntegrationUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaAclAdd_Call added in v0.129.0

type MockClient_ServiceKafkaAclAdd_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaAclAdd_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaAclAdd'

func (*MockClient_ServiceKafkaAclAdd_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaAclAdd_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaAclAdd_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaAclDelete_Call added in v0.129.0

type MockClient_ServiceKafkaAclDelete_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaAclDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaAclDelete'

func (*MockClient_ServiceKafkaAclDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaAclDelete_Call) Run added in v0.129.0

func (_c *MockClient_ServiceKafkaAclDelete_Call) Run(run func(ctx context.Context, project1 string, serviceName string, kafkaAclId string)) *MockClient_ServiceKafkaAclDelete_Call

func (*MockClient_ServiceKafkaAclDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceKafkaAclDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, kafkaAclId string) ([]kafka.AclOut, error)) *MockClient_ServiceKafkaAclDelete_Call

type MockClient_ServiceKafkaAclList_Call added in v0.129.0

type MockClient_ServiceKafkaAclList_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaAclList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaAclList'

func (*MockClient_ServiceKafkaAclList_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaAclList_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaAclList_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceKafkaAclList_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string) ([]kafka.AclOut, error)) *MockClient_ServiceKafkaAclList_Call

type MockClient_ServiceKafkaConnectCreateConnector_Call added in v0.129.0

type MockClient_ServiceKafkaConnectCreateConnector_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectCreateConnector_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectCreateConnector'

func (*MockClient_ServiceKafkaConnectCreateConnector_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectCreateConnector_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectCreateConnector_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectDeleteConnector_Call added in v0.129.0

type MockClient_ServiceKafkaConnectDeleteConnector_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectDeleteConnector_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectDeleteConnector'

func (*MockClient_ServiceKafkaConnectDeleteConnector_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectDeleteConnector_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectDeleteConnector_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectEditConnector_Call added in v0.129.0

type MockClient_ServiceKafkaConnectEditConnector_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectEditConnector_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectEditConnector'

func (*MockClient_ServiceKafkaConnectEditConnector_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectEditConnector_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectEditConnector_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectGetAvailableConnectors_Call added in v0.129.0

type MockClient_ServiceKafkaConnectGetAvailableConnectors_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectGetAvailableConnectors_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectGetAvailableConnectors'

func (*MockClient_ServiceKafkaConnectGetAvailableConnectors_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectGetAvailableConnectors_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectGetAvailableConnectors_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectGetConnectorConfiguration_Call added in v0.129.0

type MockClient_ServiceKafkaConnectGetConnectorConfiguration_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectGetConnectorConfiguration_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectGetConnectorConfiguration'

func (*MockClient_ServiceKafkaConnectGetConnectorConfiguration_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectGetConnectorConfiguration_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectGetConnectorConfiguration_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectGetConnectorStatus_Call added in v0.129.0

type MockClient_ServiceKafkaConnectGetConnectorStatus_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectGetConnectorStatus_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectGetConnectorStatus'

func (*MockClient_ServiceKafkaConnectGetConnectorStatus_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectGetConnectorStatus_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectGetConnectorStatus_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectList_Call added in v0.129.0

type MockClient_ServiceKafkaConnectList_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectList'

func (*MockClient_ServiceKafkaConnectList_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectList_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectPauseConnector_Call added in v0.129.0

type MockClient_ServiceKafkaConnectPauseConnector_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectPauseConnector_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectPauseConnector'

func (*MockClient_ServiceKafkaConnectPauseConnector_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectPauseConnector_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectPauseConnector_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectRestartConnectorTask_Call added in v0.129.0

type MockClient_ServiceKafkaConnectRestartConnectorTask_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectRestartConnectorTask_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectRestartConnectorTask'

func (*MockClient_ServiceKafkaConnectRestartConnectorTask_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectRestartConnectorTask_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectRestartConnectorTask_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectRestartConnector_Call added in v0.129.0

type MockClient_ServiceKafkaConnectRestartConnector_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectRestartConnector_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectRestartConnector'

func (*MockClient_ServiceKafkaConnectRestartConnector_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectRestartConnector_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectRestartConnector_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaConnectResumeConnector_Call added in v0.129.0

type MockClient_ServiceKafkaConnectResumeConnector_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaConnectResumeConnector_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaConnectResumeConnector'

func (*MockClient_ServiceKafkaConnectResumeConnector_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaConnectResumeConnector_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaConnectResumeConnector_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerCreateReplicationFlow_Call added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerCreateReplicationFlow_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaMirrorMakerCreateReplicationFlow_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaMirrorMakerCreateReplicationFlow'

func (*MockClient_ServiceKafkaMirrorMakerCreateReplicationFlow_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerCreateReplicationFlow_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerCreateReplicationFlow_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerDeleteReplicationFlow_Call added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerDeleteReplicationFlow_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaMirrorMakerDeleteReplicationFlow_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaMirrorMakerDeleteReplicationFlow'

func (*MockClient_ServiceKafkaMirrorMakerDeleteReplicationFlow_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerDeleteReplicationFlow_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerDeleteReplicationFlow_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerGetReplicationFlow_Call added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerGetReplicationFlow_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaMirrorMakerGetReplicationFlow_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaMirrorMakerGetReplicationFlow'

func (*MockClient_ServiceKafkaMirrorMakerGetReplicationFlow_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerGetReplicationFlow_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerGetReplicationFlow_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerGetReplicationFlows_Call added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerGetReplicationFlows_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaMirrorMakerGetReplicationFlows_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaMirrorMakerGetReplicationFlows'

func (*MockClient_ServiceKafkaMirrorMakerGetReplicationFlows_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerGetReplicationFlows_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerGetReplicationFlows_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerPatchReplicationFlow_Call added in v0.129.0

type MockClient_ServiceKafkaMirrorMakerPatchReplicationFlow_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaMirrorMakerPatchReplicationFlow_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaMirrorMakerPatchReplicationFlow'

func (*MockClient_ServiceKafkaMirrorMakerPatchReplicationFlow_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerPatchReplicationFlow_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaMirrorMakerPatchReplicationFlow_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaNativeAclAdd_Call added in v0.129.0

type MockClient_ServiceKafkaNativeAclAdd_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaNativeAclAdd_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaNativeAclAdd'

func (*MockClient_ServiceKafkaNativeAclAdd_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaNativeAclAdd_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaNativeAclAdd_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaNativeAclDelete_Call added in v0.129.0

type MockClient_ServiceKafkaNativeAclDelete_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaNativeAclDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaNativeAclDelete'

func (*MockClient_ServiceKafkaNativeAclDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaNativeAclDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaNativeAclDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceKafkaNativeAclDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, kafkaAclId string) error) *MockClient_ServiceKafkaNativeAclDelete_Call

type MockClient_ServiceKafkaNativeAclGet_Call added in v0.129.0

type MockClient_ServiceKafkaNativeAclGet_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaNativeAclGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaNativeAclGet'

func (*MockClient_ServiceKafkaNativeAclGet_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaNativeAclGet_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaNativeAclGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaNativeAclList_Call added in v0.129.0

type MockClient_ServiceKafkaNativeAclList_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaNativeAclList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaNativeAclList'

func (*MockClient_ServiceKafkaNativeAclList_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaNativeAclList_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaNativeAclList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaQuotaCreate_Call added in v0.129.0

type MockClient_ServiceKafkaQuotaCreate_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaQuotaCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaQuotaCreate'

func (*MockClient_ServiceKafkaQuotaCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaQuotaCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaQuotaCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaQuotaDelete_Call added in v0.129.0

type MockClient_ServiceKafkaQuotaDelete_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaQuotaDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaQuotaDelete'

func (*MockClient_ServiceKafkaQuotaDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaQuotaDelete_Call) Run added in v0.129.0

func (_c *MockClient_ServiceKafkaQuotaDelete_Call) Run(run func(ctx context.Context, project1 string, serviceName string, query ...[2]string)) *MockClient_ServiceKafkaQuotaDelete_Call

func (*MockClient_ServiceKafkaQuotaDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceKafkaQuotaDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, query ...[2]string) error) *MockClient_ServiceKafkaQuotaDelete_Call

type MockClient_ServiceKafkaQuotaDescribe_Call added in v0.129.0

type MockClient_ServiceKafkaQuotaDescribe_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaQuotaDescribe_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaQuotaDescribe'

func (*MockClient_ServiceKafkaQuotaDescribe_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaQuotaDescribe_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaQuotaDescribe_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaQuotaList_Call added in v0.129.0

type MockClient_ServiceKafkaQuotaList_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaQuotaList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaQuotaList'

func (*MockClient_ServiceKafkaQuotaList_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaQuotaList_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaQuotaList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTieredStorageStorageUsageByTopic_Call added in v0.129.0

type MockClient_ServiceKafkaTieredStorageStorageUsageByTopic_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTieredStorageStorageUsageByTopic_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTieredStorageStorageUsageByTopic'

func (*MockClient_ServiceKafkaTieredStorageStorageUsageByTopic_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTieredStorageStorageUsageByTopic_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTieredStorageStorageUsageByTopic_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTieredStorageStorageUsageTotal_Call added in v0.129.0

type MockClient_ServiceKafkaTieredStorageStorageUsageTotal_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTieredStorageStorageUsageTotal_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTieredStorageStorageUsageTotal'

func (*MockClient_ServiceKafkaTieredStorageStorageUsageTotal_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTieredStorageStorageUsageTotal_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTieredStorageStorageUsageTotal_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTieredStorageSummary_Call added in v0.129.0

type MockClient_ServiceKafkaTieredStorageSummary_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTieredStorageSummary_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTieredStorageSummary'

func (*MockClient_ServiceKafkaTieredStorageSummary_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTieredStorageSummary_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTieredStorageSummary_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTopicCreate_Call added in v0.129.0

type MockClient_ServiceKafkaTopicCreate_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTopicCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTopicCreate'

func (*MockClient_ServiceKafkaTopicCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTopicCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTopicCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTopicDelete_Call added in v0.129.0

type MockClient_ServiceKafkaTopicDelete_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTopicDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTopicDelete'

func (*MockClient_ServiceKafkaTopicDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTopicDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTopicDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceKafkaTopicDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, topicName string) error) *MockClient_ServiceKafkaTopicDelete_Call

type MockClient_ServiceKafkaTopicGet_Call added in v0.129.0

type MockClient_ServiceKafkaTopicGet_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTopicGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTopicGet'

func (*MockClient_ServiceKafkaTopicGet_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTopicGet_Call) Run added in v0.129.0

func (_c *MockClient_ServiceKafkaTopicGet_Call) Run(run func(ctx context.Context, project1 string, serviceName string, topicName string)) *MockClient_ServiceKafkaTopicGet_Call

func (*MockClient_ServiceKafkaTopicGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTopicListV2_Call added in v0.129.0

type MockClient_ServiceKafkaTopicListV2_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTopicListV2_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTopicListV2'

func (*MockClient_ServiceKafkaTopicListV2_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTopicListV2_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTopicListV2_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTopicList_Call added in v0.129.0

type MockClient_ServiceKafkaTopicList_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTopicList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTopicList'

func (*MockClient_ServiceKafkaTopicList_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTopicList_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTopicList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTopicMessageList_Call added in v0.129.0

type MockClient_ServiceKafkaTopicMessageList_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTopicMessageList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTopicMessageList'

func (*MockClient_ServiceKafkaTopicMessageList_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTopicMessageList_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTopicMessageList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTopicMessageProduce_Call added in v0.129.0

type MockClient_ServiceKafkaTopicMessageProduce_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTopicMessageProduce_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTopicMessageProduce'

func (*MockClient_ServiceKafkaTopicMessageProduce_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTopicMessageProduce_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTopicMessageProduce_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKafkaTopicUpdate_Call added in v0.129.0

type MockClient_ServiceKafkaTopicUpdate_Call struct {
	*mock.Call
}

MockClient_ServiceKafkaTopicUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKafkaTopicUpdate'

func (*MockClient_ServiceKafkaTopicUpdate_Call) Return added in v0.129.0

func (*MockClient_ServiceKafkaTopicUpdate_Call) Run added in v0.129.0

func (*MockClient_ServiceKafkaTopicUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceKmsGetCA_Call added in v0.129.0

type MockClient_ServiceKmsGetCA_Call struct {
	*mock.Call
}

MockClient_ServiceKmsGetCA_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKmsGetCA'

func (*MockClient_ServiceKmsGetCA_Call) Return added in v0.129.0

func (*MockClient_ServiceKmsGetCA_Call) Run added in v0.129.0

func (_c *MockClient_ServiceKmsGetCA_Call) Run(run func(ctx context.Context, project1 string, serviceName string, caName string)) *MockClient_ServiceKmsGetCA_Call

func (*MockClient_ServiceKmsGetCA_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceKmsGetCA_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, caName string) (string, error)) *MockClient_ServiceKmsGetCA_Call

type MockClient_ServiceKmsGetKeypair_Call added in v0.129.0

type MockClient_ServiceKmsGetKeypair_Call struct {
	*mock.Call
}

MockClient_ServiceKmsGetKeypair_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceKmsGetKeypair'

func (*MockClient_ServiceKmsGetKeypair_Call) Return added in v0.129.0

func (*MockClient_ServiceKmsGetKeypair_Call) Run added in v0.129.0

func (_c *MockClient_ServiceKmsGetKeypair_Call) Run(run func(ctx context.Context, project1 string, serviceName string, keypairName string)) *MockClient_ServiceKmsGetKeypair_Call

func (*MockClient_ServiceKmsGetKeypair_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceList_Call added in v0.129.0

type MockClient_ServiceList_Call struct {
	*mock.Call
}

MockClient_ServiceList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceList'

func (*MockClient_ServiceList_Call) Return added in v0.129.0

func (*MockClient_ServiceList_Call) Run added in v0.129.0

func (_c *MockClient_ServiceList_Call) Run(run func(ctx context.Context, project1 string, query ...[2]string)) *MockClient_ServiceList_Call

func (*MockClient_ServiceList_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceList_Call) RunAndReturn(run func(ctx context.Context, project1 string, query ...[2]string) ([]service.ServiceOut, error)) *MockClient_ServiceList_Call

type MockClient_ServiceMaintenanceStart_Call added in v0.129.0

type MockClient_ServiceMaintenanceStart_Call struct {
	*mock.Call
}

MockClient_ServiceMaintenanceStart_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceMaintenanceStart'

func (*MockClient_ServiceMaintenanceStart_Call) Return added in v0.129.0

func (*MockClient_ServiceMaintenanceStart_Call) Run added in v0.129.0

func (*MockClient_ServiceMaintenanceStart_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceMetricsFetch_Call added in v0.129.0

type MockClient_ServiceMetricsFetch_Call struct {
	*mock.Call
}

MockClient_ServiceMetricsFetch_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceMetricsFetch'

func (*MockClient_ServiceMetricsFetch_Call) Return added in v0.129.0

func (*MockClient_ServiceMetricsFetch_Call) Run added in v0.129.0

func (*MockClient_ServiceMetricsFetch_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceOpenSearchAclGet_Call added in v0.129.0

type MockClient_ServiceOpenSearchAclGet_Call struct {
	*mock.Call
}

MockClient_ServiceOpenSearchAclGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceOpenSearchAclGet'

func (*MockClient_ServiceOpenSearchAclGet_Call) Return added in v0.129.0

func (*MockClient_ServiceOpenSearchAclGet_Call) Run added in v0.129.0

func (*MockClient_ServiceOpenSearchAclGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceOpenSearchAclSet_Call added in v0.129.0

type MockClient_ServiceOpenSearchAclSet_Call struct {
	*mock.Call
}

MockClient_ServiceOpenSearchAclSet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceOpenSearchAclSet'

func (*MockClient_ServiceOpenSearchAclSet_Call) Return added in v0.129.0

func (*MockClient_ServiceOpenSearchAclSet_Call) Run added in v0.129.0

func (*MockClient_ServiceOpenSearchAclSet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceOpenSearchAclUpdate_Call added in v0.129.0

type MockClient_ServiceOpenSearchAclUpdate_Call struct {
	*mock.Call
}

MockClient_ServiceOpenSearchAclUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceOpenSearchAclUpdate'

func (*MockClient_ServiceOpenSearchAclUpdate_Call) Return added in v0.129.0

func (*MockClient_ServiceOpenSearchAclUpdate_Call) Run added in v0.129.0

func (*MockClient_ServiceOpenSearchAclUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceOpenSearchIndexDelete_Call added in v0.129.0

type MockClient_ServiceOpenSearchIndexDelete_Call struct {
	*mock.Call
}

MockClient_ServiceOpenSearchIndexDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceOpenSearchIndexDelete'

func (*MockClient_ServiceOpenSearchIndexDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceOpenSearchIndexDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceOpenSearchIndexDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceOpenSearchIndexDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, indexPattern string) error) *MockClient_ServiceOpenSearchIndexDelete_Call

type MockClient_ServiceOpenSearchIndexList_Call added in v0.129.0

type MockClient_ServiceOpenSearchIndexList_Call struct {
	*mock.Call
}

MockClient_ServiceOpenSearchIndexList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceOpenSearchIndexList'

func (*MockClient_ServiceOpenSearchIndexList_Call) Return added in v0.129.0

func (*MockClient_ServiceOpenSearchIndexList_Call) Run added in v0.129.0

func (*MockClient_ServiceOpenSearchIndexList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceOpenSearchSecurityGet_Call added in v0.129.0

type MockClient_ServiceOpenSearchSecurityGet_Call struct {
	*mock.Call
}

MockClient_ServiceOpenSearchSecurityGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceOpenSearchSecurityGet'

func (*MockClient_ServiceOpenSearchSecurityGet_Call) Return added in v0.129.0

func (*MockClient_ServiceOpenSearchSecurityGet_Call) Run added in v0.129.0

func (*MockClient_ServiceOpenSearchSecurityGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceOpenSearchSecurityReset_Call added in v0.129.0

type MockClient_ServiceOpenSearchSecurityReset_Call struct {
	*mock.Call
}

MockClient_ServiceOpenSearchSecurityReset_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceOpenSearchSecurityReset'

func (*MockClient_ServiceOpenSearchSecurityReset_Call) Return added in v0.129.0

func (*MockClient_ServiceOpenSearchSecurityReset_Call) Run added in v0.129.0

func (*MockClient_ServiceOpenSearchSecurityReset_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceOpenSearchSecuritySet_Call added in v0.129.0

type MockClient_ServiceOpenSearchSecuritySet_Call struct {
	*mock.Call
}

MockClient_ServiceOpenSearchSecuritySet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceOpenSearchSecuritySet'

func (*MockClient_ServiceOpenSearchSecuritySet_Call) Return added in v0.129.0

func (*MockClient_ServiceOpenSearchSecuritySet_Call) Run added in v0.129.0

func (*MockClient_ServiceOpenSearchSecuritySet_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePGBouncerCreate_Call added in v0.129.0

type MockClient_ServicePGBouncerCreate_Call struct {
	*mock.Call
}

MockClient_ServicePGBouncerCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePGBouncerCreate'

func (*MockClient_ServicePGBouncerCreate_Call) Return added in v0.129.0

func (*MockClient_ServicePGBouncerCreate_Call) Run added in v0.129.0

func (*MockClient_ServicePGBouncerCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePGBouncerDelete_Call added in v0.129.0

type MockClient_ServicePGBouncerDelete_Call struct {
	*mock.Call
}

MockClient_ServicePGBouncerDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePGBouncerDelete'

func (*MockClient_ServicePGBouncerDelete_Call) Return added in v0.129.0

func (*MockClient_ServicePGBouncerDelete_Call) Run added in v0.129.0

func (_c *MockClient_ServicePGBouncerDelete_Call) Run(run func(ctx context.Context, project1 string, serviceName string, poolName string)) *MockClient_ServicePGBouncerDelete_Call

func (*MockClient_ServicePGBouncerDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServicePGBouncerDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, poolName string) error) *MockClient_ServicePGBouncerDelete_Call

type MockClient_ServicePGBouncerUpdate_Call added in v0.129.0

type MockClient_ServicePGBouncerUpdate_Call struct {
	*mock.Call
}

MockClient_ServicePGBouncerUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePGBouncerUpdate'

func (*MockClient_ServicePGBouncerUpdate_Call) Return added in v0.129.0

func (*MockClient_ServicePGBouncerUpdate_Call) Run added in v0.129.0

func (*MockClient_ServicePGBouncerUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAWSConnectionList_Call added in v0.129.0

type MockClient_ServicePrivatelinkAWSConnectionList_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAWSConnectionList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAWSConnectionList'

func (*MockClient_ServicePrivatelinkAWSConnectionList_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSConnectionList_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSConnectionList_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAWSCreate_Call added in v0.129.0

type MockClient_ServicePrivatelinkAWSCreate_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAWSCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAWSCreate'

func (*MockClient_ServicePrivatelinkAWSCreate_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSCreate_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAWSDelete_Call added in v0.129.0

type MockClient_ServicePrivatelinkAWSDelete_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAWSDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAWSDelete'

func (*MockClient_ServicePrivatelinkAWSDelete_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSDelete_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSDelete_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAWSGet_Call added in v0.129.0

type MockClient_ServicePrivatelinkAWSGet_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAWSGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAWSGet'

func (*MockClient_ServicePrivatelinkAWSGet_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSGet_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAWSUpdate_Call added in v0.129.0

type MockClient_ServicePrivatelinkAWSUpdate_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAWSUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAWSUpdate'

func (*MockClient_ServicePrivatelinkAWSUpdate_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSUpdate_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAWSUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAzureConnectionApproval_Call added in v0.129.0

type MockClient_ServicePrivatelinkAzureConnectionApproval_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAzureConnectionApproval_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAzureConnectionApproval'

func (*MockClient_ServicePrivatelinkAzureConnectionApproval_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureConnectionApproval_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureConnectionApproval_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAzureConnectionList_Call added in v0.129.0

type MockClient_ServicePrivatelinkAzureConnectionList_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAzureConnectionList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAzureConnectionList'

func (*MockClient_ServicePrivatelinkAzureConnectionList_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureConnectionList_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureConnectionList_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAzureConnectionUpdate_Call added in v0.129.0

type MockClient_ServicePrivatelinkAzureConnectionUpdate_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAzureConnectionUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAzureConnectionUpdate'

func (*MockClient_ServicePrivatelinkAzureConnectionUpdate_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureConnectionUpdate_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureConnectionUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAzureCreate_Call added in v0.129.0

type MockClient_ServicePrivatelinkAzureCreate_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAzureCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAzureCreate'

func (*MockClient_ServicePrivatelinkAzureCreate_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureCreate_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAzureDelete_Call added in v0.129.0

type MockClient_ServicePrivatelinkAzureDelete_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAzureDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAzureDelete'

func (*MockClient_ServicePrivatelinkAzureDelete_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureDelete_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureDelete_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAzureGet_Call added in v0.129.0

type MockClient_ServicePrivatelinkAzureGet_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAzureGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAzureGet'

func (*MockClient_ServicePrivatelinkAzureGet_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureGet_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServicePrivatelinkAzureUpdate_Call added in v0.129.0

type MockClient_ServicePrivatelinkAzureUpdate_Call struct {
	*mock.Call
}

MockClient_ServicePrivatelinkAzureUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServicePrivatelinkAzureUpdate'

func (*MockClient_ServicePrivatelinkAzureUpdate_Call) Return added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureUpdate_Call) Run added in v0.129.0

func (*MockClient_ServicePrivatelinkAzureUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceQueryActivity_Call added in v0.129.0

type MockClient_ServiceQueryActivity_Call struct {
	*mock.Call
}

MockClient_ServiceQueryActivity_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceQueryActivity'

func (*MockClient_ServiceQueryActivity_Call) Return added in v0.129.0

func (*MockClient_ServiceQueryActivity_Call) Run added in v0.129.0

func (*MockClient_ServiceQueryActivity_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceQueryStatisticsReset_Call added in v0.129.0

type MockClient_ServiceQueryStatisticsReset_Call struct {
	*mock.Call
}

MockClient_ServiceQueryStatisticsReset_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceQueryStatisticsReset'

func (*MockClient_ServiceQueryStatisticsReset_Call) Return added in v0.129.0

func (*MockClient_ServiceQueryStatisticsReset_Call) Run added in v0.129.0

func (*MockClient_ServiceQueryStatisticsReset_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistryAclAdd_Call added in v0.129.0

type MockClient_ServiceSchemaRegistryAclAdd_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistryAclAdd_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistryAclAdd'

func (*MockClient_ServiceSchemaRegistryAclAdd_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistryAclAdd_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistryAclAdd_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistryAclDelete_Call added in v0.129.0

type MockClient_ServiceSchemaRegistryAclDelete_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistryAclDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistryAclDelete'

func (*MockClient_ServiceSchemaRegistryAclDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistryAclDelete_Call) Run added in v0.129.0

func (_c *MockClient_ServiceSchemaRegistryAclDelete_Call) Run(run func(ctx context.Context, project1 string, serviceName string, schemaRegistryAclId string)) *MockClient_ServiceSchemaRegistryAclDelete_Call

func (*MockClient_ServiceSchemaRegistryAclDelete_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistryAclList_Call added in v0.129.0

type MockClient_ServiceSchemaRegistryAclList_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistryAclList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistryAclList'

func (*MockClient_ServiceSchemaRegistryAclList_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistryAclList_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistryAclList_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistryCompatibility_Call added in v0.129.0

type MockClient_ServiceSchemaRegistryCompatibility_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistryCompatibility_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistryCompatibility'

func (*MockClient_ServiceSchemaRegistryCompatibility_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistryCompatibility_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistryCompatibility_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistryGlobalConfigGet_Call added in v0.129.0

type MockClient_ServiceSchemaRegistryGlobalConfigGet_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistryGlobalConfigGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistryGlobalConfigGet'

func (*MockClient_ServiceSchemaRegistryGlobalConfigGet_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistryGlobalConfigGet_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistryGlobalConfigGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistryGlobalConfigPut_Call added in v0.129.0

type MockClient_ServiceSchemaRegistryGlobalConfigPut_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistryGlobalConfigPut_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistryGlobalConfigPut'

func (*MockClient_ServiceSchemaRegistryGlobalConfigPut_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistryGlobalConfigPut_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistryGlobalConfigPut_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySchemaGet_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySchemaGet_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySchemaGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySchemaGet'

func (*MockClient_ServiceSchemaRegistrySchemaGet_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySchemaGet_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySchemaGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectConfigGet_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectConfigGet_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySubjectConfigGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySubjectConfigGet'

func (*MockClient_ServiceSchemaRegistrySubjectConfigGet_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectConfigGet_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectConfigGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectConfigPut_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectConfigPut_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySubjectConfigPut_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySubjectConfigPut'

func (*MockClient_ServiceSchemaRegistrySubjectConfigPut_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectConfigPut_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectConfigPut_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectDelete_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectDelete_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySubjectDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySubjectDelete'

func (*MockClient_ServiceSchemaRegistrySubjectDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectDelete_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionDelete_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionDelete_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySubjectVersionDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySubjectVersionDelete'

func (*MockClient_ServiceSchemaRegistrySubjectVersionDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionDelete_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionDelete_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionGet_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionGet_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySubjectVersionGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySubjectVersionGet'

func (*MockClient_ServiceSchemaRegistrySubjectVersionGet_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionGet_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionPost_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionPost_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySubjectVersionPost_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySubjectVersionPost'

func (*MockClient_ServiceSchemaRegistrySubjectVersionPost_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionPost_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionPost_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionSchemaGet_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionSchemaGet_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySubjectVersionSchemaGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySubjectVersionSchemaGet'

func (*MockClient_ServiceSchemaRegistrySubjectVersionSchemaGet_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionSchemaGet_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionSchemaGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionsGet_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjectVersionsGet_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySubjectVersionsGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySubjectVersionsGet'

func (*MockClient_ServiceSchemaRegistrySubjectVersionsGet_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionsGet_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjectVersionsGet_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjects_Call added in v0.129.0

type MockClient_ServiceSchemaRegistrySubjects_Call struct {
	*mock.Call
}

MockClient_ServiceSchemaRegistrySubjects_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceSchemaRegistrySubjects'

func (*MockClient_ServiceSchemaRegistrySubjects_Call) Return added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjects_Call) Run added in v0.129.0

func (*MockClient_ServiceSchemaRegistrySubjects_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceTaskCreate_Call added in v0.129.0

type MockClient_ServiceTaskCreate_Call struct {
	*mock.Call
}

MockClient_ServiceTaskCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceTaskCreate'

func (*MockClient_ServiceTaskCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceTaskCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceTaskCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceTaskGet_Call added in v0.129.0

type MockClient_ServiceTaskGet_Call struct {
	*mock.Call
}

MockClient_ServiceTaskGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceTaskGet'

func (*MockClient_ServiceTaskGet_Call) Return added in v0.129.0

func (*MockClient_ServiceTaskGet_Call) Run added in v0.129.0

func (_c *MockClient_ServiceTaskGet_Call) Run(run func(ctx context.Context, project1 string, serviceName string, taskId string)) *MockClient_ServiceTaskGet_Call

func (*MockClient_ServiceTaskGet_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceTaskGet_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, taskId string) (*service.ServiceTaskGetOut, error)) *MockClient_ServiceTaskGet_Call

type MockClient_ServiceThanosStorageSummary_Call added in v0.129.0

type MockClient_ServiceThanosStorageSummary_Call struct {
	*mock.Call
}

MockClient_ServiceThanosStorageSummary_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceThanosStorageSummary'

func (*MockClient_ServiceThanosStorageSummary_Call) Return added in v0.129.0

func (*MockClient_ServiceThanosStorageSummary_Call) Run added in v0.129.0

func (*MockClient_ServiceThanosStorageSummary_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceUpdate_Call added in v0.129.0

type MockClient_ServiceUpdate_Call struct {
	*mock.Call
}

MockClient_ServiceUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceUpdate'

func (*MockClient_ServiceUpdate_Call) Return added in v0.129.0

func (*MockClient_ServiceUpdate_Call) Run added in v0.129.0

func (_c *MockClient_ServiceUpdate_Call) Run(run func(ctx context.Context, project1 string, serviceName string, in *service.ServiceUpdateIn, query ...[2]string)) *MockClient_ServiceUpdate_Call

func (*MockClient_ServiceUpdate_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceUpdate_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, in *service.ServiceUpdateIn, query ...[2]string) (*service.ServiceUpdateOut, error)) *MockClient_ServiceUpdate_Call

type MockClient_ServiceUserCreate_Call added in v0.129.0

type MockClient_ServiceUserCreate_Call struct {
	*mock.Call
}

MockClient_ServiceUserCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceUserCreate'

func (*MockClient_ServiceUserCreate_Call) Return added in v0.129.0

func (*MockClient_ServiceUserCreate_Call) Run added in v0.129.0

func (*MockClient_ServiceUserCreate_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceUserCredentialsModify_Call added in v0.129.0

type MockClient_ServiceUserCredentialsModify_Call struct {
	*mock.Call
}

MockClient_ServiceUserCredentialsModify_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceUserCredentialsModify'

func (*MockClient_ServiceUserCredentialsModify_Call) Return added in v0.129.0

func (*MockClient_ServiceUserCredentialsModify_Call) Run added in v0.129.0

func (*MockClient_ServiceUserCredentialsModify_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceUserCredentialsReset_Call added in v0.129.0

type MockClient_ServiceUserCredentialsReset_Call struct {
	*mock.Call
}

MockClient_ServiceUserCredentialsReset_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceUserCredentialsReset'

func (*MockClient_ServiceUserCredentialsReset_Call) Return added in v0.129.0

func (*MockClient_ServiceUserCredentialsReset_Call) Run added in v0.129.0

func (_c *MockClient_ServiceUserCredentialsReset_Call) Run(run func(ctx context.Context, project1 string, serviceName string, serviceUsername string)) *MockClient_ServiceUserCredentialsReset_Call

func (*MockClient_ServiceUserCredentialsReset_Call) RunAndReturn added in v0.129.0

type MockClient_ServiceUserDelete_Call added in v0.129.0

type MockClient_ServiceUserDelete_Call struct {
	*mock.Call
}

MockClient_ServiceUserDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceUserDelete'

func (*MockClient_ServiceUserDelete_Call) Return added in v0.129.0

func (*MockClient_ServiceUserDelete_Call) Run added in v0.129.0

func (_c *MockClient_ServiceUserDelete_Call) Run(run func(ctx context.Context, project1 string, serviceName string, serviceUsername string)) *MockClient_ServiceUserDelete_Call

func (*MockClient_ServiceUserDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceUserDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, serviceUsername string) error) *MockClient_ServiceUserDelete_Call

type MockClient_ServiceUserGet_Call added in v0.129.0

type MockClient_ServiceUserGet_Call struct {
	*mock.Call
}

MockClient_ServiceUserGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ServiceUserGet'

func (*MockClient_ServiceUserGet_Call) Return added in v0.129.0

func (*MockClient_ServiceUserGet_Call) Run added in v0.129.0

func (_c *MockClient_ServiceUserGet_Call) Run(run func(ctx context.Context, project1 string, serviceName string, serviceUsername string, query ...[2]string)) *MockClient_ServiceUserGet_Call

func (*MockClient_ServiceUserGet_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_ServiceUserGet_Call) RunAndReturn(run func(ctx context.Context, project1 string, serviceName string, serviceUsername string, query ...[2]string) (*service.ServiceUserGetOut, error)) *MockClient_ServiceUserGet_Call

type MockClient_StaticIPCreate_Call added in v0.129.0

type MockClient_StaticIPCreate_Call struct {
	*mock.Call
}

MockClient_StaticIPCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'StaticIPCreate'

func (*MockClient_StaticIPCreate_Call) Return added in v0.129.0

func (*MockClient_StaticIPCreate_Call) Run added in v0.129.0

func (*MockClient_StaticIPCreate_Call) RunAndReturn added in v0.129.0

type MockClient_StaticIPList_Call added in v0.129.0

type MockClient_StaticIPList_Call struct {
	*mock.Call
}

MockClient_StaticIPList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'StaticIPList'

func (*MockClient_StaticIPList_Call) Return added in v0.129.0

func (*MockClient_StaticIPList_Call) Run added in v0.129.0

func (*MockClient_StaticIPList_Call) RunAndReturn added in v0.129.0

type MockClient_TwoFactorAuthConfigureOTP_Call added in v0.129.0

type MockClient_TwoFactorAuthConfigureOTP_Call struct {
	*mock.Call
}

MockClient_TwoFactorAuthConfigureOTP_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TwoFactorAuthConfigureOTP'

func (*MockClient_TwoFactorAuthConfigureOTP_Call) Return added in v0.129.0

func (*MockClient_TwoFactorAuthConfigureOTP_Call) Run added in v0.129.0

func (*MockClient_TwoFactorAuthConfigureOTP_Call) RunAndReturn added in v0.129.0

type MockClient_TwoFactorAuthConfigure_Call added in v0.129.0

type MockClient_TwoFactorAuthConfigure_Call struct {
	*mock.Call
}

MockClient_TwoFactorAuthConfigure_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'TwoFactorAuthConfigure'

func (*MockClient_TwoFactorAuthConfigure_Call) Return added in v0.129.0

func (*MockClient_TwoFactorAuthConfigure_Call) Run added in v0.129.0

func (*MockClient_TwoFactorAuthConfigure_Call) RunAndReturn added in v0.129.0

type MockClient_UserAccountDelete_Call added in v0.129.0

type MockClient_UserAccountDelete_Call struct {
	*mock.Call
}

MockClient_UserAccountDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserAccountDelete'

func (*MockClient_UserAccountDelete_Call) Return added in v0.129.0

func (*MockClient_UserAccountDelete_Call) Run added in v0.129.0

func (*MockClient_UserAccountDelete_Call) RunAndReturn added in v0.129.0

type MockClient_UserAccountInvitesAccept_Call added in v0.129.0

type MockClient_UserAccountInvitesAccept_Call struct {
	*mock.Call
}

MockClient_UserAccountInvitesAccept_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserAccountInvitesAccept'

func (*MockClient_UserAccountInvitesAccept_Call) Return added in v0.129.0

func (*MockClient_UserAccountInvitesAccept_Call) Run added in v0.129.0

func (*MockClient_UserAccountInvitesAccept_Call) RunAndReturn added in v0.129.0

type MockClient_UserAccountInvitesList_Call added in v0.129.0

type MockClient_UserAccountInvitesList_Call struct {
	*mock.Call
}

MockClient_UserAccountInvitesList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserAccountInvitesList'

func (*MockClient_UserAccountInvitesList_Call) Return added in v0.129.0

func (*MockClient_UserAccountInvitesList_Call) Run added in v0.129.0

func (*MockClient_UserAccountInvitesList_Call) RunAndReturn added in v0.129.0

type MockClient_UserAuthLoginOptions_Call added in v0.129.0

type MockClient_UserAuthLoginOptions_Call struct {
	*mock.Call
}

MockClient_UserAuthLoginOptions_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserAuthLoginOptions'

func (*MockClient_UserAuthLoginOptions_Call) Return added in v0.129.0

func (*MockClient_UserAuthLoginOptions_Call) Run added in v0.129.0

func (*MockClient_UserAuthLoginOptions_Call) RunAndReturn added in v0.129.0

type MockClient_UserAuth_Call added in v0.129.0

type MockClient_UserAuth_Call struct {
	*mock.Call
}

MockClient_UserAuth_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserAuth'

func (*MockClient_UserAuth_Call) Return added in v0.129.0

func (*MockClient_UserAuth_Call) Run added in v0.129.0

func (*MockClient_UserAuth_Call) RunAndReturn added in v0.129.0

type MockClient_UserAuthenticationMethodDelete_Call added in v0.129.0

type MockClient_UserAuthenticationMethodDelete_Call struct {
	*mock.Call
}

MockClient_UserAuthenticationMethodDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserAuthenticationMethodDelete'

func (*MockClient_UserAuthenticationMethodDelete_Call) Return added in v0.129.0

func (*MockClient_UserAuthenticationMethodDelete_Call) Run added in v0.129.0

func (*MockClient_UserAuthenticationMethodDelete_Call) RunAndReturn added in v0.129.0

type MockClient_UserAuthenticationMethodsList_Call added in v0.129.0

type MockClient_UserAuthenticationMethodsList_Call struct {
	*mock.Call
}

MockClient_UserAuthenticationMethodsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserAuthenticationMethodsList'

func (*MockClient_UserAuthenticationMethodsList_Call) Return added in v0.129.0

func (*MockClient_UserAuthenticationMethodsList_Call) Run added in v0.129.0

func (*MockClient_UserAuthenticationMethodsList_Call) RunAndReturn added in v0.129.0

type MockClient_UserCreate_Call added in v0.129.0

type MockClient_UserCreate_Call struct {
	*mock.Call
}

MockClient_UserCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserCreate'

func (*MockClient_UserCreate_Call) Return added in v0.129.0

func (*MockClient_UserCreate_Call) Run added in v0.129.0

func (*MockClient_UserCreate_Call) RunAndReturn added in v0.129.0

type MockClient_UserCreditCardsList_Call added in v0.129.0

type MockClient_UserCreditCardsList_Call struct {
	*mock.Call
}

MockClient_UserCreditCardsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserCreditCardsList'

func (*MockClient_UserCreditCardsList_Call) Return added in v0.129.0

func (*MockClient_UserCreditCardsList_Call) Run added in v0.129.0

func (*MockClient_UserCreditCardsList_Call) RunAndReturn added in v0.129.0

type MockClient_UserExpireTokens_Call added in v0.129.0

type MockClient_UserExpireTokens_Call struct {
	*mock.Call
}

MockClient_UserExpireTokens_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserExpireTokens'

func (*MockClient_UserExpireTokens_Call) Return added in v0.129.0

func (*MockClient_UserExpireTokens_Call) Run added in v0.129.0

func (*MockClient_UserExpireTokens_Call) RunAndReturn added in v0.129.0

type MockClient_UserGroupCreate_Call added in v0.129.0

type MockClient_UserGroupCreate_Call struct {
	*mock.Call
}

MockClient_UserGroupCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserGroupCreate'

func (*MockClient_UserGroupCreate_Call) Return added in v0.129.0

func (*MockClient_UserGroupCreate_Call) Run added in v0.129.0

func (*MockClient_UserGroupCreate_Call) RunAndReturn added in v0.129.0

type MockClient_UserGroupDelete_Call added in v0.129.0

type MockClient_UserGroupDelete_Call struct {
	*mock.Call
}

MockClient_UserGroupDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserGroupDelete'

func (*MockClient_UserGroupDelete_Call) Return added in v0.129.0

func (*MockClient_UserGroupDelete_Call) Run added in v0.129.0

func (_c *MockClient_UserGroupDelete_Call) Run(run func(ctx context.Context, organizationId string, userGroupId string)) *MockClient_UserGroupDelete_Call

func (*MockClient_UserGroupDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_UserGroupDelete_Call) RunAndReturn(run func(ctx context.Context, organizationId string, userGroupId string) error) *MockClient_UserGroupDelete_Call

type MockClient_UserGroupGet_Call added in v0.129.0

type MockClient_UserGroupGet_Call struct {
	*mock.Call
}

MockClient_UserGroupGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserGroupGet'

func (*MockClient_UserGroupGet_Call) Return added in v0.129.0

func (*MockClient_UserGroupGet_Call) Run added in v0.129.0

func (_c *MockClient_UserGroupGet_Call) Run(run func(ctx context.Context, organizationId string, userGroupId string)) *MockClient_UserGroupGet_Call

func (*MockClient_UserGroupGet_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_UserGroupGet_Call) RunAndReturn(run func(ctx context.Context, organizationId string, userGroupId string) (*usergroup.UserGroupGetOut, error)) *MockClient_UserGroupGet_Call

type MockClient_UserGroupMemberList_Call added in v0.129.0

type MockClient_UserGroupMemberList_Call struct {
	*mock.Call
}

MockClient_UserGroupMemberList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserGroupMemberList'

func (*MockClient_UserGroupMemberList_Call) Return added in v0.129.0

func (*MockClient_UserGroupMemberList_Call) Run added in v0.129.0

func (_c *MockClient_UserGroupMemberList_Call) Run(run func(ctx context.Context, organizationId string, userGroupId string)) *MockClient_UserGroupMemberList_Call

func (*MockClient_UserGroupMemberList_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_UserGroupMemberList_Call) RunAndReturn(run func(ctx context.Context, organizationId string, userGroupId string) ([]usergroup.MemberOut, error)) *MockClient_UserGroupMemberList_Call

type MockClient_UserGroupMembersUpdate_Call added in v0.129.0

type MockClient_UserGroupMembersUpdate_Call struct {
	*mock.Call
}

MockClient_UserGroupMembersUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserGroupMembersUpdate'

func (*MockClient_UserGroupMembersUpdate_Call) Return added in v0.129.0

func (*MockClient_UserGroupMembersUpdate_Call) Run added in v0.129.0

func (*MockClient_UserGroupMembersUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_UserGroupUpdate_Call added in v0.129.0

type MockClient_UserGroupUpdate_Call struct {
	*mock.Call
}

MockClient_UserGroupUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserGroupUpdate'

func (*MockClient_UserGroupUpdate_Call) Return added in v0.129.0

func (*MockClient_UserGroupUpdate_Call) Run added in v0.129.0

func (*MockClient_UserGroupUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_UserGroupsList_Call added in v0.129.0

type MockClient_UserGroupsList_Call struct {
	*mock.Call
}

MockClient_UserGroupsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserGroupsList'

func (*MockClient_UserGroupsList_Call) Return added in v0.129.0

func (*MockClient_UserGroupsList_Call) Run added in v0.129.0

func (*MockClient_UserGroupsList_Call) RunAndReturn added in v0.129.0

type MockClient_UserInfo_Call added in v0.129.0

type MockClient_UserInfo_Call struct {
	*mock.Call
}

MockClient_UserInfo_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserInfo'

func (*MockClient_UserInfo_Call) Return added in v0.129.0

func (*MockClient_UserInfo_Call) Run added in v0.129.0

func (*MockClient_UserInfo_Call) RunAndReturn added in v0.129.0

type MockClient_UserLogout_Call added in v0.129.0

type MockClient_UserLogout_Call struct {
	*mock.Call
}

MockClient_UserLogout_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserLogout'

func (*MockClient_UserLogout_Call) Return added in v0.129.0

func (*MockClient_UserLogout_Call) Run added in v0.129.0

func (*MockClient_UserLogout_Call) RunAndReturn added in v0.129.0

type MockClient_UserOrganizationCreate_Call added in v0.129.0

type MockClient_UserOrganizationCreate_Call struct {
	*mock.Call
}

MockClient_UserOrganizationCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserOrganizationCreate'

func (*MockClient_UserOrganizationCreate_Call) Return added in v0.129.0

func (*MockClient_UserOrganizationCreate_Call) Run added in v0.129.0

func (*MockClient_UserOrganizationCreate_Call) RunAndReturn added in v0.129.0

type MockClient_UserOrganizationsList_Call added in v0.129.0

type MockClient_UserOrganizationsList_Call struct {
	*mock.Call
}

MockClient_UserOrganizationsList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserOrganizationsList'

func (*MockClient_UserOrganizationsList_Call) Return added in v0.129.0

func (*MockClient_UserOrganizationsList_Call) Run added in v0.129.0

func (*MockClient_UserOrganizationsList_Call) RunAndReturn added in v0.129.0

type MockClient_UserPasswordChange_Call added in v0.129.0

type MockClient_UserPasswordChange_Call struct {
	*mock.Call
}

MockClient_UserPasswordChange_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserPasswordChange'

func (*MockClient_UserPasswordChange_Call) Return added in v0.129.0

func (*MockClient_UserPasswordChange_Call) Run added in v0.129.0

func (*MockClient_UserPasswordChange_Call) RunAndReturn added in v0.129.0

type MockClient_UserPasswordResetRequest_Call added in v0.129.0

type MockClient_UserPasswordResetRequest_Call struct {
	*mock.Call
}

MockClient_UserPasswordResetRequest_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserPasswordResetRequest'

func (*MockClient_UserPasswordResetRequest_Call) Return added in v0.129.0

func (*MockClient_UserPasswordResetRequest_Call) Run added in v0.129.0

func (*MockClient_UserPasswordResetRequest_Call) RunAndReturn added in v0.129.0

type MockClient_UserPasswordReset_Call added in v0.129.0

type MockClient_UserPasswordReset_Call struct {
	*mock.Call
}

MockClient_UserPasswordReset_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserPasswordReset'

func (*MockClient_UserPasswordReset_Call) Return added in v0.129.0

func (*MockClient_UserPasswordReset_Call) Run added in v0.129.0

func (*MockClient_UserPasswordReset_Call) RunAndReturn added in v0.129.0

type MockClient_UserUpdate_Call added in v0.129.0

type MockClient_UserUpdate_Call struct {
	*mock.Call
}

MockClient_UserUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserUpdate'

func (*MockClient_UserUpdate_Call) Return added in v0.129.0

func (*MockClient_UserUpdate_Call) Run added in v0.129.0

func (*MockClient_UserUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_UserVerifyEmail_Call added in v0.129.0

type MockClient_UserVerifyEmail_Call struct {
	*mock.Call
}

MockClient_UserVerifyEmail_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'UserVerifyEmail'

func (*MockClient_UserVerifyEmail_Call) Return added in v0.129.0

func (*MockClient_UserVerifyEmail_Call) Run added in v0.129.0

func (_c *MockClient_UserVerifyEmail_Call) Run(run func(ctx context.Context, verificationCode string)) *MockClient_UserVerifyEmail_Call

func (*MockClient_UserVerifyEmail_Call) RunAndReturn added in v0.129.0

type MockClient_ValidateCreditCode_Call added in v0.129.0

type MockClient_ValidateCreditCode_Call struct {
	*mock.Call
}

MockClient_ValidateCreditCode_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ValidateCreditCode'

func (*MockClient_ValidateCreditCode_Call) Return added in v0.129.0

func (*MockClient_ValidateCreditCode_Call) Run added in v0.129.0

func (*MockClient_ValidateCreditCode_Call) RunAndReturn added in v0.129.0

type MockClient_ValidateReferralCode_Call added in v0.129.0

type MockClient_ValidateReferralCode_Call struct {
	*mock.Call
}

MockClient_ValidateReferralCode_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'ValidateReferralCode'

func (*MockClient_ValidateReferralCode_Call) Return added in v0.129.0

func (*MockClient_ValidateReferralCode_Call) Run added in v0.129.0

func (*MockClient_ValidateReferralCode_Call) RunAndReturn added in v0.129.0

type MockClient_VpcCreate_Call added in v0.129.0

type MockClient_VpcCreate_Call struct {
	*mock.Call
}

MockClient_VpcCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'VpcCreate'

func (*MockClient_VpcCreate_Call) Return added in v0.129.0

func (*MockClient_VpcCreate_Call) Run added in v0.129.0

func (*MockClient_VpcCreate_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_VpcCreate_Call) RunAndReturn(run func(ctx context.Context, project1 string, in *vpc.VpcCreateIn) (*vpc.VpcCreateOut, error)) *MockClient_VpcCreate_Call

type MockClient_VpcDelete_Call added in v0.129.0

type MockClient_VpcDelete_Call struct {
	*mock.Call
}

MockClient_VpcDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'VpcDelete'

func (*MockClient_VpcDelete_Call) Return added in v0.129.0

func (*MockClient_VpcDelete_Call) Run added in v0.129.0

func (_c *MockClient_VpcDelete_Call) Run(run func(ctx context.Context, project1 string, projectVpcId string)) *MockClient_VpcDelete_Call

func (*MockClient_VpcDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_VpcDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, projectVpcId string) (*vpc.VpcDeleteOut, error)) *MockClient_VpcDelete_Call

type MockClient_VpcGet_Call added in v0.129.0

type MockClient_VpcGet_Call struct {
	*mock.Call
}

MockClient_VpcGet_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'VpcGet'

func (*MockClient_VpcGet_Call) Return added in v0.129.0

func (_c *MockClient_VpcGet_Call) Return(vpcGetOut *vpc.VpcGetOut, err error) *MockClient_VpcGet_Call

func (*MockClient_VpcGet_Call) Run added in v0.129.0

func (_c *MockClient_VpcGet_Call) Run(run func(ctx context.Context, project1 string, projectVpcId string)) *MockClient_VpcGet_Call

func (*MockClient_VpcGet_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_VpcGet_Call) RunAndReturn(run func(ctx context.Context, project1 string, projectVpcId string) (*vpc.VpcGetOut, error)) *MockClient_VpcGet_Call

type MockClient_VpcList_Call added in v0.129.0

type MockClient_VpcList_Call struct {
	*mock.Call
}

MockClient_VpcList_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'VpcList'

func (*MockClient_VpcList_Call) Return added in v0.129.0

func (_c *MockClient_VpcList_Call) Return(vpcOuts []vpc.VpcOut, err error) *MockClient_VpcList_Call

func (*MockClient_VpcList_Call) Run added in v0.129.0

func (_c *MockClient_VpcList_Call) Run(run func(ctx context.Context, project1 string)) *MockClient_VpcList_Call

func (*MockClient_VpcList_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_VpcList_Call) RunAndReturn(run func(ctx context.Context, project1 string) ([]vpc.VpcOut, error)) *MockClient_VpcList_Call

type MockClient_VpcPeeringConnectionCreate_Call added in v0.129.0

type MockClient_VpcPeeringConnectionCreate_Call struct {
	*mock.Call
}

MockClient_VpcPeeringConnectionCreate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'VpcPeeringConnectionCreate'

func (*MockClient_VpcPeeringConnectionCreate_Call) Return added in v0.129.0

func (*MockClient_VpcPeeringConnectionCreate_Call) Run added in v0.129.0

func (*MockClient_VpcPeeringConnectionCreate_Call) RunAndReturn added in v0.129.0

type MockClient_VpcPeeringConnectionDelete_Call added in v0.129.0

type MockClient_VpcPeeringConnectionDelete_Call struct {
	*mock.Call
}

MockClient_VpcPeeringConnectionDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'VpcPeeringConnectionDelete'

func (*MockClient_VpcPeeringConnectionDelete_Call) Return added in v0.129.0

func (*MockClient_VpcPeeringConnectionDelete_Call) Run added in v0.129.0

func (_c *MockClient_VpcPeeringConnectionDelete_Call) Run(run func(ctx context.Context, project1 string, projectVpcId string, peerCloudAccount string, peerVpc string)) *MockClient_VpcPeeringConnectionDelete_Call

func (*MockClient_VpcPeeringConnectionDelete_Call) RunAndReturn added in v0.129.0

func (_c *MockClient_VpcPeeringConnectionDelete_Call) RunAndReturn(run func(ctx context.Context, project1 string, projectVpcId string, peerCloudAccount string, peerVpc string) (*vpc.VpcPeeringConnectionDeleteOut, error)) *MockClient_VpcPeeringConnectionDelete_Call

type MockClient_VpcPeeringConnectionUpdate_Call added in v0.129.0

type MockClient_VpcPeeringConnectionUpdate_Call struct {
	*mock.Call
}

MockClient_VpcPeeringConnectionUpdate_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'VpcPeeringConnectionUpdate'

func (*MockClient_VpcPeeringConnectionUpdate_Call) Return added in v0.129.0

func (*MockClient_VpcPeeringConnectionUpdate_Call) Run added in v0.129.0

func (*MockClient_VpcPeeringConnectionUpdate_Call) RunAndReturn added in v0.129.0

type MockClient_VpcPeeringConnectionWithRegionDelete_Call added in v0.129.0

type MockClient_VpcPeeringConnectionWithRegionDelete_Call struct {
	*mock.Call
}

MockClient_VpcPeeringConnectionWithRegionDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'VpcPeeringConnectionWithRegionDelete'

func (*MockClient_VpcPeeringConnectionWithRegionDelete_Call) Return added in v0.129.0

func (*MockClient_VpcPeeringConnectionWithRegionDelete_Call) Run added in v0.129.0

func (_c *MockClient_VpcPeeringConnectionWithRegionDelete_Call) Run(run func(ctx context.Context, project1 string, projectVpcId string, peerCloudAccount string, peerVpc string, peerRegion string)) *MockClient_VpcPeeringConnectionWithRegionDelete_Call

func (*MockClient_VpcPeeringConnectionWithRegionDelete_Call) RunAndReturn added in v0.129.0

type MockClient_VpcPeeringConnectionWithResourceGroupDelete_Call added in v0.129.0

type MockClient_VpcPeeringConnectionWithResourceGroupDelete_Call struct {
	*mock.Call
}

MockClient_VpcPeeringConnectionWithResourceGroupDelete_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'VpcPeeringConnectionWithResourceGroupDelete'

func (*MockClient_VpcPeeringConnectionWithResourceGroupDelete_Call) Return added in v0.129.0

func (*MockClient_VpcPeeringConnectionWithResourceGroupDelete_Call) Run added in v0.129.0

func (_c *MockClient_VpcPeeringConnectionWithResourceGroupDelete_Call) Run(run func(ctx context.Context, project1 string, projectVpcId string, peerCloudAccount string, peerResourceGroup string, peerVpc string)) *MockClient_VpcPeeringConnectionWithResourceGroupDelete_Call

func (*MockClient_VpcPeeringConnectionWithResourceGroupDelete_Call) RunAndReturn added in v0.129.0

type OperationIDKey

type OperationIDKey struct{}

OperationIDKey is the key used to store the operation ID in the context.

type Option

type Option func(*aivenClient)

Option is a function that configures the client.

func DebugOpt

func DebugOpt(debug bool) Option

DebugOpt whether should the client run in debug mode. For instance, to output debug information

func DoerOpt

func DoerOpt(doer Doer) Option

DoerOpt replaces underlying http client in aivenClient

func HostOpt

func HostOpt(host string) Option

HostOpt API host url

func RetryMaxOpt added in v0.56.0

func RetryMaxOpt(retryMax int) Option

RetryMaxOpt sets the maximum number of retries

func RetryWaitMaxOpt added in v0.56.0

func RetryWaitMaxOpt(retryWaitMax time.Duration) Option

RetryWaitMaxOpt sets the maximum wait time between retries

func RetryWaitMinOpt added in v0.56.0

func RetryWaitMinOpt(retryWaitMin time.Duration) Option

RetryWaitMinOpt sets the minimum wait time between retries

func TokenOpt

func TokenOpt(token string) Option

TokenOpt runs the client with the given token

func UserAgentOpt

func UserAgentOpt(userAgent string) Option

UserAgentOpt sets User-Agent header

Jump to

Keyboard shortcuts

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