certificates

package module
v1.5.1 Latest Latest
Warning

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

Go to latest
Published: Mar 31, 2026 License: Apache-2.0 Imports: 23 Imported by: 0

Documentation

Overview

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CacheExpires

func CacheExpires(r *http.Response) time.Time

CacheExpires helper function to determine remaining time before repeating a request. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func IsNil

func IsNil(i interface{}) bool

IsNil checks if an input is nil Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewConfiguration

func NewConfiguration() *config.Configuration

NewConfiguration returns a new Configuration object Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func ParameterValueToString deprecated

func ParameterValueToString(obj interface{}, key string) string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func PtrBool

func PtrBool(v bool) *bool

PtrBool is a helper routine that returns a pointer to given boolean value. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func PtrFloat32

func PtrFloat32(v float32) *float32

PtrFloat32 is a helper routine that returns a pointer to given float value. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func PtrFloat64

func PtrFloat64(v float64) *float64

PtrFloat64 is a helper routine that returns a pointer to given float value. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func PtrInt

func PtrInt(v int) *int

PtrInt is a helper routine that returns a pointer to given integer value. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func PtrInt32

func PtrInt32(v int32) *int32

PtrInt32 is a helper routine that returns a pointer to given integer value. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func PtrInt64

func PtrInt64(v int64) *int64

PtrInt64 is a helper routine that returns a pointer to given integer value. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func PtrString

func PtrString(v string) *string

PtrString is a helper routine that returns a pointer to given string value. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func PtrTime

func PtrTime(v time.Time) *time.Time

PtrTime is helper routine that returns a pointer to given Time value. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Types

type APIClient

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

APIClient manages communication with the STACKIT Application Load Balancer Certificates API API v2.0.0 In most cases there should be only one, shared, APIClient. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewAPIClient

func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error)

NewAPIClient creates a new API client. Optionally receives configuration options Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*APIClient) CreateCertificate deprecated

func (a *APIClient) CreateCertificate(ctx context.Context, projectId string, region string) ApiCreateCertificateRequest

CreateCertificate: Store a TLS certificate in a project.

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId
@param region
@return ApiCreateCertificateRequest

func (*APIClient) CreateCertificateExecute deprecated

func (a *APIClient) CreateCertificateExecute(ctx context.Context, projectId string, region string) (*GetCertificateResponse, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*APIClient) DeleteCertificate deprecated

func (a *APIClient) DeleteCertificate(ctx context.Context, projectId string, region string, id string) ApiDeleteCertificateRequest

DeleteCertificate: Delete a stored TLS certificate in a project.

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId
@param region
@param id
@return ApiDeleteCertificateRequest

func (*APIClient) DeleteCertificateExecute deprecated

func (a *APIClient) DeleteCertificateExecute(ctx context.Context, projectId string, region string, id string) (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*APIClient) GetCertificate deprecated

func (a *APIClient) GetCertificate(ctx context.Context, projectId string, region string, id string) ApiGetCertificateRequest

GetCertificate: Retrieve the public parts of a stored TLS certificate.

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId
@param region
@param id
@return ApiGetCertificateRequest

func (*APIClient) GetCertificateExecute deprecated

func (a *APIClient) GetCertificateExecute(ctx context.Context, projectId string, region string, id string) (*GetCertificateResponse, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*APIClient) GetConfig

func (c *APIClient) GetConfig() *config.Configuration

Allow modification of underlying config for alternate implementations and testing Caution: modifying the configuration while live can cause data races and potentially unwanted behavior Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*APIClient) GetQuota deprecated added in v1.5.0

func (a *APIClient) GetQuota(ctx context.Context, projectId string, region string) ApiGetQuotaRequest

GetQuota: Get the quota for TLS certificates in a project.

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId
@param region
@return ApiGetQuotaRequest

func (*APIClient) GetQuotaExecute deprecated added in v1.5.0

func (a *APIClient) GetQuotaExecute(ctx context.Context, projectId string, region string) (*GetQuotaResponse, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*APIClient) ListCertificates deprecated

func (a *APIClient) ListCertificates(ctx context.Context, projectId string, region string) ApiListCertificatesRequest

ListCertificates: Retrieve the list of TLS certificate stored in a project.

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param projectId
@param region
@return ApiListCertificatesRequest

func (*APIClient) ListCertificatesExecute deprecated

func (a *APIClient) ListCertificatesExecute(ctx context.Context, projectId string, region string) (*ListCertificatesResponse, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ApiCreateCertificateRequest deprecated

type ApiCreateCertificateRequest interface {
	// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	CreateCertificatePayload(createCertificatePayload CreateCertificatePayload) ApiCreateCertificateRequest
	// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	Execute() (*GetCertificateResponse, error)
}

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ApiDeleteCertificateRequest deprecated

type ApiDeleteCertificateRequest interface {
	// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	Execute() (map[string]interface{}, error)
}

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ApiGetCertificateRequest deprecated

type ApiGetCertificateRequest interface {
	// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	Execute() (*GetCertificateResponse, error)
}

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ApiGetQuotaRequest deprecated added in v1.5.0

type ApiGetQuotaRequest interface {
	// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	Execute() (*GetQuotaResponse, error)
}

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ApiListCertificatesRequest deprecated

type ApiListCertificatesRequest interface {
	// page_size specifies how many certificates should be returned on this page. Must be a positive number <= 1000
	// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	PageSize(pageSize string) ApiListCertificatesRequest
	// page_id is a page identifier returned by the previous response and is used to request the next page
	// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	PageId(pageId string) ApiListCertificatesRequest
	// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	Execute() (*ListCertificatesResponse, error)
}

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CertificatesQuota added in v1.5.0

type CertificatesQuota struct {
	// The maximum number of TLS certificates in this project.
	// Can be cast to int32 without loss of precision.
	Limit CertificatesQuotaGetLimitAttributeType `json:"limit,omitempty"`
	// The number of certificates that are currently existing in this project.
	// Can be cast to int32 without loss of precision.
	Usage CertificatesQuotaGetUsageAttributeType `json:"usage,omitempty"`
}

CertificatesQuota Certificates quotas holds the limits and usage for certificates resources Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewCertificatesQuota added in v1.5.0

func NewCertificatesQuota() *CertificatesQuota

NewCertificatesQuota instantiates a new CertificatesQuota object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewCertificatesQuotaWithDefaults added in v1.5.0

func NewCertificatesQuotaWithDefaults() *CertificatesQuota

NewCertificatesQuotaWithDefaults instantiates a new CertificatesQuota object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CertificatesQuota) GetLimit added in v1.5.0

GetLimit returns the Limit field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CertificatesQuota) GetLimitOk added in v1.5.0

func (o *CertificatesQuota) GetLimitOk() (ret CertificatesQuotaGetLimitRetType, ok bool)

GetLimitOk returns a tuple with the Limit field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CertificatesQuota) GetUsage added in v1.5.0

GetUsage returns the Usage field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CertificatesQuota) GetUsageOk added in v1.5.0

func (o *CertificatesQuota) GetUsageOk() (ret CertificatesQuotaGetUsageRetType, ok bool)

GetUsageOk returns a tuple with the Usage field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CertificatesQuota) HasLimit added in v1.5.0

func (o *CertificatesQuota) HasLimit() bool

HasLimit returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CertificatesQuota) HasUsage added in v1.5.0

func (o *CertificatesQuota) HasUsage() bool

HasUsage returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CertificatesQuota) SetLimit added in v1.5.0

SetLimit gets a reference to the given int64 and assigns it to the Limit field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CertificatesQuota) SetUsage added in v1.5.0

SetUsage gets a reference to the given int64 and assigns it to the Usage field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (CertificatesQuota) ToMap deprecated added in v1.5.0

func (o CertificatesQuota) ToMap() (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CertificatesQuotaGetLimitArgType deprecated added in v1.5.0

type CertificatesQuotaGetLimitArgType = int64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CertificatesQuotaGetLimitAttributeType added in v1.5.0

type CertificatesQuotaGetLimitAttributeType = *int64

isInteger Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CertificatesQuotaGetLimitRetType deprecated added in v1.5.0

type CertificatesQuotaGetLimitRetType = int64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CertificatesQuotaGetUsageArgType deprecated added in v1.5.0

type CertificatesQuotaGetUsageArgType = int64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CertificatesQuotaGetUsageAttributeType added in v1.5.0

type CertificatesQuotaGetUsageAttributeType = *int64

isInteger Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CertificatesQuotaGetUsageRetType deprecated added in v1.5.0

type CertificatesQuotaGetUsageRetType = int64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayload

type CreateCertificatePayload struct {
	// TLS certificate name
	Name CreateCertificatePayloadGetNameAttributeType `json:"name,omitempty"`
	// The PEM encoded private key part
	PrivateKey CreateCertificatePayloadGetPrivateKeyAttributeType `json:"privateKey,omitempty"`
	// Project identifier
	ProjectId CreateCertificatePayloadGetProjectIdAttributeType `json:"projectId,omitempty"`
	// The PEM encoded public key part
	PublicKey CreateCertificatePayloadGetPublicKeyAttributeType `json:"publicKey,omitempty"`
	// Region
	Region CreateCertificatePayloadGetRegionAttributeType `json:"region,omitempty"`
}

CreateCertificatePayload Uploads a PEM encoded X509 public/private key pair Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewCreateCertificatePayload

func NewCreateCertificatePayload() *CreateCertificatePayload

NewCreateCertificatePayload instantiates a new CreateCertificatePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewCreateCertificatePayloadWithDefaults

func NewCreateCertificatePayloadWithDefaults() *CreateCertificatePayload

NewCreateCertificatePayloadWithDefaults instantiates a new CreateCertificatePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetName

GetName returns the Name field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetPrivateKey

GetPrivateKey returns the PrivateKey field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetPrivateKeyOk

GetPrivateKeyOk returns a tuple with the PrivateKey field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetProjectId

GetProjectId returns the ProjectId field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetProjectIdOk

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetPublicKey

GetPublicKey returns the PublicKey field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetPublicKeyOk

GetPublicKeyOk returns a tuple with the PublicKey field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetRegion added in v1.0.1

GetRegion returns the Region field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) GetRegionOk added in v1.0.1

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) HasName

func (o *CreateCertificatePayload) HasName() bool

HasName returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) HasPrivateKey

func (o *CreateCertificatePayload) HasPrivateKey() bool

HasPrivateKey returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) HasProjectId

func (o *CreateCertificatePayload) HasProjectId() bool

HasProjectId returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) HasPublicKey

func (o *CreateCertificatePayload) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) HasRegion added in v1.0.1

func (o *CreateCertificatePayload) HasRegion() bool

HasRegion returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) SetName

SetName gets a reference to the given string and assigns it to the Name field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) SetPrivateKey

SetPrivateKey gets a reference to the given string and assigns it to the PrivateKey field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) SetProjectId

SetProjectId gets a reference to the given string and assigns it to the ProjectId field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) SetPublicKey

SetPublicKey gets a reference to the given string and assigns it to the PublicKey field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*CreateCertificatePayload) SetRegion added in v1.0.1

SetRegion gets a reference to the given string and assigns it to the Region field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (CreateCertificatePayload) ToMap deprecated

func (o CreateCertificatePayload) ToMap() (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetNameArgType deprecated added in v1.0.1

type CreateCertificatePayloadGetNameArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetNameAttributeType added in v1.0.1

type CreateCertificatePayloadGetNameAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetNameRetType deprecated added in v1.0.1

type CreateCertificatePayloadGetNameRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetPrivateKeyArgType deprecated added in v1.0.1

type CreateCertificatePayloadGetPrivateKeyArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetPrivateKeyAttributeType added in v1.0.1

type CreateCertificatePayloadGetPrivateKeyAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetPrivateKeyRetType deprecated added in v1.0.1

type CreateCertificatePayloadGetPrivateKeyRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetProjectIdArgType deprecated added in v1.0.1

type CreateCertificatePayloadGetProjectIdArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetProjectIdAttributeType added in v1.0.1

type CreateCertificatePayloadGetProjectIdAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetProjectIdRetType deprecated added in v1.0.1

type CreateCertificatePayloadGetProjectIdRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetPublicKeyArgType deprecated added in v1.0.1

type CreateCertificatePayloadGetPublicKeyArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetPublicKeyAttributeType added in v1.0.1

type CreateCertificatePayloadGetPublicKeyAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetPublicKeyRetType deprecated added in v1.0.1

type CreateCertificatePayloadGetPublicKeyRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetRegionArgType deprecated added in v1.0.1

type CreateCertificatePayloadGetRegionArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetRegionAttributeType added in v1.0.1

type CreateCertificatePayloadGetRegionAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificatePayloadGetRegionRetType deprecated added in v1.0.1

type CreateCertificatePayloadGetRegionRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type CreateCertificateRequest deprecated added in v1.1.0

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (CreateCertificateRequest) CreateCertificatePayload deprecated added in v1.1.0

func (r CreateCertificateRequest) CreateCertificatePayload(createCertificatePayload CreateCertificatePayload) ApiCreateCertificateRequest

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (CreateCertificateRequest) Execute deprecated added in v1.1.0

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type DefaultApi deprecated added in v1.1.0

type DefaultApi interface {
	/*
		CreateCertificate Store a TLS certificate in a project.
		CreateCertificate will store a TLS certificate in a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@return ApiCreateCertificateRequest

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	CreateCertificate(ctx context.Context, projectId string, region string) ApiCreateCertificateRequest
	/*
		CreateCertificateExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@return GetCertificateResponse

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	CreateCertificateExecute(ctx context.Context, projectId string, region string) (*GetCertificateResponse, error)
	/*
		DeleteCertificate Delete a stored TLS certificate in a project.
		DeleteCertificate will delete the stored TLS certificate.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param id
		@return ApiDeleteCertificateRequest

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	DeleteCertificate(ctx context.Context, projectId string, region string, id string) ApiDeleteCertificateRequest
	/*
		DeleteCertificateExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param id
		@return map[string]interface{}

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	DeleteCertificateExecute(ctx context.Context, projectId string, region string, id string) (map[string]interface{}, error)
	/*
		GetCertificate Retrieve the public parts of a stored TLS certificate.
		GetCertificate will return the public parts of a stored TLS certificate.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param id
		@return ApiGetCertificateRequest

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	GetCertificate(ctx context.Context, projectId string, region string, id string) ApiGetCertificateRequest
	/*
		GetCertificateExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@param id
		@return GetCertificateResponse

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	GetCertificateExecute(ctx context.Context, projectId string, region string, id string) (*GetCertificateResponse, error)
	/*
		GetQuota Get the quota for TLS certificates in a project.
		Retrieves the configured TLS certificate quota for the project. Limit can be changed via service request.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@return ApiGetQuotaRequest

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	GetQuota(ctx context.Context, projectId string, region string) ApiGetQuotaRequest
	/*
		GetQuotaExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@return GetQuotaResponse

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	GetQuotaExecute(ctx context.Context, projectId string, region string) (*GetQuotaResponse, error)
	/*
		ListCertificates Retrieve the list of TLS certificate stored in a project.
		ListCertificates will return the list of TLS certificates in a project.

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@return ApiListCertificatesRequest

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	ListCertificates(ctx context.Context, projectId string, region string) ApiListCertificatesRequest
	/*
		ListCertificatesExecute executes the request

		@param ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
		@param projectId
		@param region
		@return ListCertificatesResponse

		// Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead
	*/
	ListCertificatesExecute(ctx context.Context, projectId string, region string) (*ListCertificatesResponse, error)
}

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type DefaultApiService

type DefaultApiService service

DefaultApiService DefaultApi service Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type DeleteCertificateRequest deprecated added in v1.1.0

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (DeleteCertificateRequest) Execute deprecated added in v1.1.0

func (r DeleteCertificateRequest) Execute() (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateRequest deprecated added in v1.1.0

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (GetCertificateRequest) Execute deprecated added in v1.1.0

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponse

type GetCertificateResponse struct {
	// The certificates resource id
	Id GetCertificateResponseGetIdAttributeType `json:"id,omitempty"`
	// TLS certificate name
	Name GetCertificateResponseGetNameAttributeType `json:"name,omitempty"`
	// The PEM encoded public key part
	PublicKey GetCertificateResponseGetPublicKeyAttributeType `json:"publicKey,omitempty"`
	// Region of the LoadBalancer
	Region GetCertificateResponseGetRegionAttributeType `json:"region,omitempty"`
}

GetCertificateResponse GetCertificateResponse returns name, id and public key Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewGetCertificateResponse

func NewGetCertificateResponse() *GetCertificateResponse

NewGetCertificateResponse instantiates a new GetCertificateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewGetCertificateResponseWithDefaults

func NewGetCertificateResponseWithDefaults() *GetCertificateResponse

NewGetCertificateResponseWithDefaults instantiates a new GetCertificateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) GetId

GetId returns the Id field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) GetIdOk

GetIdOk returns a tuple with the Id field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) GetName

GetName returns the Name field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) GetNameOk

GetNameOk returns a tuple with the Name field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) GetPublicKey

GetPublicKey returns the PublicKey field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) GetPublicKeyOk

GetPublicKeyOk returns a tuple with the PublicKey field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) GetRegion added in v1.0.1

GetRegion returns the Region field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) GetRegionOk added in v1.0.1

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) HasId

func (o *GetCertificateResponse) HasId() bool

HasId returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) HasName

func (o *GetCertificateResponse) HasName() bool

HasName returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) HasPublicKey

func (o *GetCertificateResponse) HasPublicKey() bool

HasPublicKey returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) HasRegion added in v1.0.1

func (o *GetCertificateResponse) HasRegion() bool

HasRegion returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) SetId

SetId gets a reference to the given string and assigns it to the Id field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) SetName

SetName gets a reference to the given string and assigns it to the Name field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) SetPublicKey

SetPublicKey gets a reference to the given string and assigns it to the PublicKey field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetCertificateResponse) SetRegion added in v1.0.1

SetRegion gets a reference to the given string and assigns it to the Region field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (GetCertificateResponse) ToMap deprecated

func (o GetCertificateResponse) ToMap() (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetIdArgType deprecated added in v1.0.1

type GetCertificateResponseGetIdArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetIdAttributeType added in v1.0.1

type GetCertificateResponseGetIdAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetIdRetType deprecated added in v1.0.1

type GetCertificateResponseGetIdRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetNameArgType deprecated added in v1.0.1

type GetCertificateResponseGetNameArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetNameAttributeType added in v1.0.1

type GetCertificateResponseGetNameAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetNameRetType deprecated added in v1.0.1

type GetCertificateResponseGetNameRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetPublicKeyArgType deprecated added in v1.0.1

type GetCertificateResponseGetPublicKeyArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetPublicKeyAttributeType added in v1.0.1

type GetCertificateResponseGetPublicKeyAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetPublicKeyRetType deprecated added in v1.0.1

type GetCertificateResponseGetPublicKeyRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetRegionArgType deprecated added in v1.0.1

type GetCertificateResponseGetRegionArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetRegionAttributeType added in v1.0.1

type GetCertificateResponseGetRegionAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetCertificateResponseGetRegionRetType deprecated added in v1.0.1

type GetCertificateResponseGetRegionRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaRequest deprecated added in v1.5.0

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (GetQuotaRequest) Execute deprecated added in v1.5.0

func (r GetQuotaRequest) Execute() (*GetQuotaResponse, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponse added in v1.5.0

type GetQuotaResponse struct {
	// Project identifier
	ProjectId GetQuotaResponseGetProjectIdAttributeType `json:"projectId,omitempty"`
	Quotas    GetQuotaResponseGetQuotasAttributeType    `json:"quotas,omitempty"`
	// Region
	Region GetQuotaResponseGetRegionAttributeType `json:"region,omitempty"`
}

GetQuotaResponse struct for GetQuotaResponse Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewGetQuotaResponse added in v1.5.0

func NewGetQuotaResponse() *GetQuotaResponse

NewGetQuotaResponse instantiates a new GetQuotaResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewGetQuotaResponseWithDefaults added in v1.5.0

func NewGetQuotaResponseWithDefaults() *GetQuotaResponse

NewGetQuotaResponseWithDefaults instantiates a new GetQuotaResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) GetProjectId added in v1.5.0

func (o *GetQuotaResponse) GetProjectId() (res GetQuotaResponseGetProjectIdRetType)

GetProjectId returns the ProjectId field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) GetProjectIdOk added in v1.5.0

func (o *GetQuotaResponse) GetProjectIdOk() (ret GetQuotaResponseGetProjectIdRetType, ok bool)

GetProjectIdOk returns a tuple with the ProjectId field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) GetQuotas added in v1.5.0

GetQuotas returns the Quotas field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) GetQuotasOk added in v1.5.0

func (o *GetQuotaResponse) GetQuotasOk() (ret GetQuotaResponseGetQuotasRetType, ok bool)

GetQuotasOk returns a tuple with the Quotas field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) GetRegion added in v1.5.0

GetRegion returns the Region field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) GetRegionOk added in v1.5.0

func (o *GetQuotaResponse) GetRegionOk() (ret GetQuotaResponseGetRegionRetType, ok bool)

GetRegionOk returns a tuple with the Region field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) HasProjectId added in v1.5.0

func (o *GetQuotaResponse) HasProjectId() bool

HasProjectId returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) HasQuotas added in v1.5.0

func (o *GetQuotaResponse) HasQuotas() bool

HasQuotas returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) HasRegion added in v1.5.0

func (o *GetQuotaResponse) HasRegion() bool

HasRegion returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) SetProjectId added in v1.5.0

SetProjectId gets a reference to the given string and assigns it to the ProjectId field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) SetQuotas added in v1.5.0

SetQuotas gets a reference to the given Quotas and assigns it to the Quotas field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GetQuotaResponse) SetRegion added in v1.5.0

SetRegion gets a reference to the given string and assigns it to the Region field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (GetQuotaResponse) ToMap deprecated added in v1.5.0

func (o GetQuotaResponse) ToMap() (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponseGetProjectIdArgType deprecated added in v1.5.0

type GetQuotaResponseGetProjectIdArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponseGetProjectIdAttributeType added in v1.5.0

type GetQuotaResponseGetProjectIdAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponseGetProjectIdRetType deprecated added in v1.5.0

type GetQuotaResponseGetProjectIdRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponseGetQuotasArgType deprecated added in v1.5.0

type GetQuotaResponseGetQuotasArgType = Quotas

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponseGetQuotasAttributeType added in v1.5.0

type GetQuotaResponseGetQuotasAttributeType = *Quotas

isModel Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponseGetQuotasRetType deprecated added in v1.5.0

type GetQuotaResponseGetQuotasRetType = Quotas

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponseGetRegionArgType deprecated added in v1.5.0

type GetQuotaResponseGetRegionArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponseGetRegionAttributeType added in v1.5.0

type GetQuotaResponseGetRegionAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GetQuotaResponseGetRegionRetType deprecated added in v1.5.0

type GetQuotaResponseGetRegionRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GoogleProtobufAny

type GoogleProtobufAny struct {
	// The type of the serialized message.
	Type                 GoogleProtobufAnyGetTypeAttributeType `json:"@type,omitempty"`
	AdditionalProperties map[string]interface{}
}

GoogleProtobufAny Contains an arbitrary serialized message along with a @type that describes the type of the serialized message. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewGoogleProtobufAny

func NewGoogleProtobufAny() *GoogleProtobufAny

NewGoogleProtobufAny instantiates a new GoogleProtobufAny object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewGoogleProtobufAnyWithDefaults

func NewGoogleProtobufAnyWithDefaults() *GoogleProtobufAny

NewGoogleProtobufAnyWithDefaults instantiates a new GoogleProtobufAny object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GoogleProtobufAny) GetType

GetType returns the Type field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GoogleProtobufAny) GetTypeOk

func (o *GoogleProtobufAny) GetTypeOk() (ret GoogleProtobufAnyGetTypeRetType, ok bool)

GetTypeOk returns a tuple with the Type field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GoogleProtobufAny) HasType

func (o *GoogleProtobufAny) HasType() bool

HasType returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*GoogleProtobufAny) SetType

SetType gets a reference to the given string and assigns it to the Type field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (GoogleProtobufAny) ToMap deprecated

func (o GoogleProtobufAny) ToMap() (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GoogleProtobufAnyGetTypeArgType deprecated added in v1.0.1

type GoogleProtobufAnyGetTypeArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GoogleProtobufAnyGetTypeAttributeType added in v1.0.1

type GoogleProtobufAnyGetTypeAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type GoogleProtobufAnyGetTypeRetType deprecated added in v1.0.1

type GoogleProtobufAnyGetTypeRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ListCertificatesRequest deprecated added in v1.1.0

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (ListCertificatesRequest) Execute deprecated added in v1.1.0

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (ListCertificatesRequest) PageId added in v1.1.0

page_id is a page identifier returned by the previous response and is used to request the next page Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (ListCertificatesRequest) PageSize added in v1.1.0

page_size specifies how many certificates should be returned on this page. Must be a positive number <= 1000 Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ListCertificatesResponse

type ListCertificatesResponse struct {
	Items ListCertificatesResponseGetItemsAttributeType `json:"items,omitempty"`
	// Continue token from the ListCertificatesResponse with Limit option
	NextPageId ListCertificatesResponseGetNextPageIdAttributeType `json:"nextPageId,omitempty"`
}

ListCertificatesResponse ListCertificateResponse returns a list of certificate responses Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewListCertificatesResponse

func NewListCertificatesResponse() *ListCertificatesResponse

NewListCertificatesResponse instantiates a new ListCertificatesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewListCertificatesResponseWithDefaults

func NewListCertificatesResponseWithDefaults() *ListCertificatesResponse

NewListCertificatesResponseWithDefaults instantiates a new ListCertificatesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*ListCertificatesResponse) GetItems

GetItems returns the Items field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*ListCertificatesResponse) GetItemsOk

GetItemsOk returns a tuple with the Items field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*ListCertificatesResponse) GetNextPageId

GetNextPageId returns the NextPageId field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*ListCertificatesResponse) GetNextPageIdOk

GetNextPageIdOk returns a tuple with the NextPageId field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*ListCertificatesResponse) HasItems

func (o *ListCertificatesResponse) HasItems() bool

HasItems returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*ListCertificatesResponse) HasNextPageId

func (o *ListCertificatesResponse) HasNextPageId() bool

HasNextPageId returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*ListCertificatesResponse) SetItems

SetItems gets a reference to the given []GetCertificateResponse and assigns it to the Items field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*ListCertificatesResponse) SetNextPageId

SetNextPageId gets a reference to the given string and assigns it to the NextPageId field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (ListCertificatesResponse) ToMap deprecated

func (o ListCertificatesResponse) ToMap() (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ListCertificatesResponseGetItemsArgType deprecated added in v1.0.1

type ListCertificatesResponseGetItemsArgType = []GetCertificateResponse

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ListCertificatesResponseGetItemsAttributeType added in v1.0.1

type ListCertificatesResponseGetItemsAttributeType = *[]GetCertificateResponse

isArray Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ListCertificatesResponseGetItemsRetType deprecated added in v1.0.1

type ListCertificatesResponseGetItemsRetType = []GetCertificateResponse

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ListCertificatesResponseGetNextPageIdArgType deprecated added in v1.0.1

type ListCertificatesResponseGetNextPageIdArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ListCertificatesResponseGetNextPageIdAttributeType added in v1.0.1

type ListCertificatesResponseGetNextPageIdAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type ListCertificatesResponseGetNextPageIdRetType deprecated added in v1.0.1

type ListCertificatesResponseGetNextPageIdRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type MappedNullable deprecated

type MappedNullable interface {
	ToMap() (map[string]interface{}, error)
}

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableBool deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableBool deprecated

func NewNullableBool(val *bool) *NullableBool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableBool) Get deprecated

func (v NullableBool) Get() *bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableBool) IsSet deprecated

func (v NullableBool) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableBool) MarshalJSON deprecated

func (v NullableBool) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableBool) Set deprecated

func (v *NullableBool) Set(val *bool)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableBool) UnmarshalJSON deprecated

func (v *NullableBool) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableBool) Unset deprecated

func (v *NullableBool) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableCertificatesQuota deprecated added in v1.5.0

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableCertificatesQuota deprecated added in v1.5.0

func NewNullableCertificatesQuota(val *CertificatesQuota) *NullableCertificatesQuota

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableCertificatesQuota) Get deprecated added in v1.5.0

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableCertificatesQuota) IsSet deprecated added in v1.5.0

func (v NullableCertificatesQuota) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableCertificatesQuota) MarshalJSON deprecated added in v1.5.0

func (v NullableCertificatesQuota) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableCertificatesQuota) Set deprecated added in v1.5.0

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableCertificatesQuota) UnmarshalJSON deprecated added in v1.5.0

func (v *NullableCertificatesQuota) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableCertificatesQuota) Unset deprecated added in v1.5.0

func (v *NullableCertificatesQuota) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableCreateCertificatePayload deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableCreateCertificatePayload deprecated

func NewNullableCreateCertificatePayload(val *CreateCertificatePayload) *NullableCreateCertificatePayload

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableCreateCertificatePayload) Get deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableCreateCertificatePayload) IsSet deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableCreateCertificatePayload) MarshalJSON deprecated

func (v NullableCreateCertificatePayload) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableCreateCertificatePayload) Set deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableCreateCertificatePayload) UnmarshalJSON deprecated

func (v *NullableCreateCertificatePayload) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableCreateCertificatePayload) Unset deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableFloat32 deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableFloat32 deprecated

func NewNullableFloat32(val *float32) *NullableFloat32

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableFloat32) Get deprecated

func (v NullableFloat32) Get() *float32

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableFloat32) IsSet deprecated

func (v NullableFloat32) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableFloat32) MarshalJSON deprecated

func (v NullableFloat32) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableFloat32) Set deprecated

func (v *NullableFloat32) Set(val *float32)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableFloat32) UnmarshalJSON deprecated

func (v *NullableFloat32) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableFloat32) Unset deprecated

func (v *NullableFloat32) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableFloat64 deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableFloat64 deprecated

func NewNullableFloat64(val *float64) *NullableFloat64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableFloat64) Get deprecated

func (v NullableFloat64) Get() *float64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableFloat64) IsSet deprecated

func (v NullableFloat64) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableFloat64) MarshalJSON deprecated

func (v NullableFloat64) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableFloat64) Set deprecated

func (v *NullableFloat64) Set(val *float64)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableFloat64) UnmarshalJSON deprecated

func (v *NullableFloat64) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableFloat64) Unset deprecated

func (v *NullableFloat64) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableGetCertificateResponse deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableGetCertificateResponse deprecated

func NewNullableGetCertificateResponse(val *GetCertificateResponse) *NullableGetCertificateResponse

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableGetCertificateResponse) Get deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableGetCertificateResponse) IsSet deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableGetCertificateResponse) MarshalJSON deprecated

func (v NullableGetCertificateResponse) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableGetCertificateResponse) Set deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableGetCertificateResponse) UnmarshalJSON deprecated

func (v *NullableGetCertificateResponse) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableGetCertificateResponse) Unset deprecated

func (v *NullableGetCertificateResponse) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableGetQuotaResponse deprecated added in v1.5.0

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableGetQuotaResponse deprecated added in v1.5.0

func NewNullableGetQuotaResponse(val *GetQuotaResponse) *NullableGetQuotaResponse

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableGetQuotaResponse) Get deprecated added in v1.5.0

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableGetQuotaResponse) IsSet deprecated added in v1.5.0

func (v NullableGetQuotaResponse) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableGetQuotaResponse) MarshalJSON deprecated added in v1.5.0

func (v NullableGetQuotaResponse) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableGetQuotaResponse) Set deprecated added in v1.5.0

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableGetQuotaResponse) UnmarshalJSON deprecated added in v1.5.0

func (v *NullableGetQuotaResponse) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableGetQuotaResponse) Unset deprecated added in v1.5.0

func (v *NullableGetQuotaResponse) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableGoogleProtobufAny deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableGoogleProtobufAny deprecated

func NewNullableGoogleProtobufAny(val *GoogleProtobufAny) *NullableGoogleProtobufAny

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableGoogleProtobufAny) Get deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableGoogleProtobufAny) IsSet deprecated

func (v NullableGoogleProtobufAny) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableGoogleProtobufAny) MarshalJSON deprecated

func (v NullableGoogleProtobufAny) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableGoogleProtobufAny) Set deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableGoogleProtobufAny) UnmarshalJSON deprecated

func (v *NullableGoogleProtobufAny) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableGoogleProtobufAny) Unset deprecated

func (v *NullableGoogleProtobufAny) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableInt deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableInt deprecated

func NewNullableInt(val *int) *NullableInt

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableInt) Get deprecated

func (v NullableInt) Get() *int

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableInt) IsSet deprecated

func (v NullableInt) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableInt) MarshalJSON deprecated

func (v NullableInt) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableInt) Set deprecated

func (v *NullableInt) Set(val *int)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableInt) UnmarshalJSON deprecated

func (v *NullableInt) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableInt) Unset deprecated

func (v *NullableInt) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableInt32 deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableInt32 deprecated

func NewNullableInt32(val *int32) *NullableInt32

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableInt32) Get deprecated

func (v NullableInt32) Get() *int32

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableInt32) IsSet deprecated

func (v NullableInt32) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableInt32) MarshalJSON deprecated

func (v NullableInt32) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableInt32) Set deprecated

func (v *NullableInt32) Set(val *int32)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableInt32) UnmarshalJSON deprecated

func (v *NullableInt32) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableInt32) Unset deprecated

func (v *NullableInt32) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableInt64 deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableInt64 deprecated

func NewNullableInt64(val *int64) *NullableInt64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableInt64) Get deprecated

func (v NullableInt64) Get() *int64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableInt64) IsSet deprecated

func (v NullableInt64) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableInt64) MarshalJSON deprecated

func (v NullableInt64) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableInt64) Set deprecated

func (v *NullableInt64) Set(val *int64)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableInt64) UnmarshalJSON deprecated

func (v *NullableInt64) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableInt64) Unset deprecated

func (v *NullableInt64) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableListCertificatesResponse deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableListCertificatesResponse deprecated

func NewNullableListCertificatesResponse(val *ListCertificatesResponse) *NullableListCertificatesResponse

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableListCertificatesResponse) Get deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableListCertificatesResponse) IsSet deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableListCertificatesResponse) MarshalJSON deprecated

func (v NullableListCertificatesResponse) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableListCertificatesResponse) Set deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableListCertificatesResponse) UnmarshalJSON deprecated

func (v *NullableListCertificatesResponse) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableListCertificatesResponse) Unset deprecated

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableQuotas deprecated added in v1.5.0

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableQuotas deprecated added in v1.5.0

func NewNullableQuotas(val *Quotas) *NullableQuotas

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableQuotas) Get deprecated added in v1.5.0

func (v NullableQuotas) Get() *Quotas

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableQuotas) IsSet deprecated added in v1.5.0

func (v NullableQuotas) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableQuotas) MarshalJSON deprecated added in v1.5.0

func (v NullableQuotas) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableQuotas) Set deprecated added in v1.5.0

func (v *NullableQuotas) Set(val *Quotas)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableQuotas) UnmarshalJSON deprecated added in v1.5.0

func (v *NullableQuotas) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableQuotas) Unset deprecated added in v1.5.0

func (v *NullableQuotas) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableStatus deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableStatus deprecated

func NewNullableStatus(val *Status) *NullableStatus

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableStatus) Get deprecated

func (v NullableStatus) Get() *Status

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableStatus) IsSet deprecated

func (v NullableStatus) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableStatus) MarshalJSON deprecated

func (v NullableStatus) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableStatus) Set deprecated

func (v *NullableStatus) Set(val *Status)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableStatus) UnmarshalJSON deprecated

func (v *NullableStatus) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableStatus) Unset deprecated

func (v *NullableStatus) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableString deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableString deprecated

func NewNullableString(val *string) *NullableString

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableString) Get deprecated

func (v NullableString) Get() *string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableString) IsSet deprecated

func (v NullableString) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableString) MarshalJSON deprecated

func (v NullableString) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableString) Set deprecated

func (v *NullableString) Set(val *string)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableString) UnmarshalJSON deprecated

func (v *NullableString) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableString) Unset deprecated

func (v *NullableString) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableTime deprecated

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

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewNullableTime deprecated

func NewNullableTime(val *time.Time) *NullableTime

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableTime) Get deprecated

func (v NullableTime) Get() *time.Time

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableTime) IsSet deprecated

func (v NullableTime) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableTime) MarshalJSON deprecated

func (v NullableTime) MarshalJSON() ([]byte, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableTime) Set deprecated

func (v *NullableTime) Set(val *time.Time)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableTime) UnmarshalJSON deprecated

func (v *NullableTime) UnmarshalJSON(src []byte) error

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableTime) Unset deprecated

func (v *NullableTime) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type NullableValue deprecated added in v1.0.1

type NullableValue[T any] struct {
	// contains filtered or unexported fields
}

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableValue[T]) Get deprecated added in v1.0.1

func (v NullableValue[T]) Get() *T

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (NullableValue[T]) IsSet deprecated added in v1.0.1

func (v NullableValue[T]) IsSet() bool

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableValue[T]) Set deprecated added in v1.0.1

func (v *NullableValue[T]) Set(val *T)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*NullableValue[T]) Unset deprecated added in v1.0.1

func (v *NullableValue[T]) Unset()

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type Quotas added in v1.5.0

type Quotas struct {
	Certificates QuotasGetCertificatesAttributeType `json:"certificates,omitempty"`
}

Quotas Quotas holds the specific quota elements for different resources Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewQuotas added in v1.5.0

func NewQuotas() *Quotas

NewQuotas instantiates a new Quotas object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewQuotasWithDefaults added in v1.5.0

func NewQuotasWithDefaults() *Quotas

NewQuotasWithDefaults instantiates a new Quotas object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Quotas) GetCertificates added in v1.5.0

func (o *Quotas) GetCertificates() (res QuotasGetCertificatesRetType)

GetCertificates returns the Certificates field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Quotas) GetCertificatesOk added in v1.5.0

func (o *Quotas) GetCertificatesOk() (ret QuotasGetCertificatesRetType, ok bool)

GetCertificatesOk returns a tuple with the Certificates field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Quotas) HasCertificates added in v1.5.0

func (o *Quotas) HasCertificates() bool

HasCertificates returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Quotas) SetCertificates added in v1.5.0

func (o *Quotas) SetCertificates(v QuotasGetCertificatesRetType)

SetCertificates gets a reference to the given CertificatesQuota and assigns it to the Certificates field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (Quotas) ToMap deprecated added in v1.5.0

func (o Quotas) ToMap() (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type QuotasGetCertificatesArgType deprecated added in v1.5.0

type QuotasGetCertificatesArgType = CertificatesQuota

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type QuotasGetCertificatesAttributeType added in v1.5.0

type QuotasGetCertificatesAttributeType = *CertificatesQuota

isModel Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type QuotasGetCertificatesRetType deprecated added in v1.5.0

type QuotasGetCertificatesRetType = CertificatesQuota

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type Status

type Status struct {
	// The status code, which should be an enum value of [google.rpc.Code][google.rpc.Code].
	// Can be cast to int32 without loss of precision.
	Code StatusGetCodeAttributeType `json:"code,omitempty"`
	// A list of messages that carry the error details.  There is a common set of message types for APIs to use.
	Details StatusGetDetailsAttributeType `json:"details,omitempty"`
	// A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the [google.rpc.Status.details][google.rpc.Status.details] field, or localized by the client.
	Message StatusGetMessageAttributeType `json:"message,omitempty"`
}

Status The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors). Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewStatus

func NewStatus() *Status

NewStatus instantiates a new Status object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func NewStatusWithDefaults

func NewStatusWithDefaults() *Status

NewStatusWithDefaults instantiates a new Status object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) GetCode

func (o *Status) GetCode() (res StatusGetCodeRetType)

GetCode returns the Code field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) GetCodeOk

func (o *Status) GetCodeOk() (ret StatusGetCodeRetType, ok bool)

GetCodeOk returns a tuple with the Code field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) GetDetails

func (o *Status) GetDetails() (res StatusGetDetailsRetType)

GetDetails returns the Details field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) GetDetailsOk

func (o *Status) GetDetailsOk() (ret StatusGetDetailsRetType, ok bool)

GetDetailsOk returns a tuple with the Details field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) GetMessage

func (o *Status) GetMessage() (res StatusGetMessageRetType)

GetMessage returns the Message field value if set, zero value otherwise. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) GetMessageOk

func (o *Status) GetMessageOk() (ret StatusGetMessageRetType, ok bool)

GetMessageOk returns a tuple with the Message field value if set, nil otherwise and a boolean to check if the value has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) HasCode

func (o *Status) HasCode() bool

HasCode returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) HasDetails

func (o *Status) HasDetails() bool

HasDetails returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) HasMessage

func (o *Status) HasMessage() bool

HasMessage returns a boolean if a field has been set. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) SetCode

func (o *Status) SetCode(v StatusGetCodeRetType)

SetCode gets a reference to the given int64 and assigns it to the Code field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) SetDetails

func (o *Status) SetDetails(v StatusGetDetailsRetType)

SetDetails gets a reference to the given []GoogleProtobufAny and assigns it to the Details field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (*Status) SetMessage

func (o *Status) SetMessage(v StatusGetMessageRetType)

SetMessage gets a reference to the given string and assigns it to the Message field. Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

func (Status) ToMap deprecated

func (o Status) ToMap() (map[string]interface{}, error)

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type StatusGetCodeArgType deprecated added in v1.0.1

type StatusGetCodeArgType = int64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type StatusGetCodeAttributeType added in v1.0.1

type StatusGetCodeAttributeType = *int64

isInteger Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type StatusGetCodeRetType deprecated added in v1.0.1

type StatusGetCodeRetType = int64

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type StatusGetDetailsArgType deprecated added in v1.0.1

type StatusGetDetailsArgType = []GoogleProtobufAny

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type StatusGetDetailsAttributeType added in v1.0.1

type StatusGetDetailsAttributeType = *[]GoogleProtobufAny

isArray Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type StatusGetDetailsRetType deprecated added in v1.0.1

type StatusGetDetailsRetType = []GoogleProtobufAny

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type StatusGetMessageArgType deprecated added in v1.0.1

type StatusGetMessageArgType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type StatusGetMessageAttributeType added in v1.0.1

type StatusGetMessageAttributeType = *string

isNotNullableString Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

type StatusGetMessageRetType deprecated added in v1.0.1

type StatusGetMessageRetType = string

Deprecated: Will be removed after 2026-09-30. Move to the packages generated for each available API version instead

Directories

Path Synopsis
Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.
Code generated by OpenAPI Generator (https://openapi-generator.tech); DO NOT EDIT.

Jump to

Keyboard shortcuts

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