model

package
v0.0.53 Latest Latest
Warning

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

Go to latest
Published: Jul 26, 2021 License: Apache-2.0, BSD-2-Clause, BSD-3-Clause Imports: 4 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AuthInfo

type AuthInfo struct {
	Auth string `json:"auth"`
}

func (AuthInfo) String

func (o AuthInfo) String() string

type CreateImageSyncRepoRequest

type CreateImageSyncRepoRequest struct {
	ContentType CreateImageSyncRepoRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *CreateImageSyncRepoRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateImageSyncRepoRequest) String

type CreateImageSyncRepoRequestBody

type CreateImageSyncRepoRequestBody struct {
	RemoteRegionId string `json:"remoteRegionId"`

	RemoteNamespace string `json:"remoteNamespace"`

	SyncAuto *bool `json:"syncAuto,omitempty"`

	Override *bool `json:"override,omitempty"`
}

func (CreateImageSyncRepoRequestBody) String

type CreateImageSyncRepoRequestContentType

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

func (CreateImageSyncRepoRequestContentType) MarshalJSON

func (c CreateImageSyncRepoRequestContentType) MarshalJSON() ([]byte, error)

func (*CreateImageSyncRepoRequestContentType) UnmarshalJSON

func (c *CreateImageSyncRepoRequestContentType) UnmarshalJSON(b []byte) error

type CreateImageSyncRepoRequestContentTypeEnum

type CreateImageSyncRepoRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateImageSyncRepoRequestContentType
	APPLICATION_JSON             CreateImageSyncRepoRequestContentType
}

func GetCreateImageSyncRepoRequestContentTypeEnum

func GetCreateImageSyncRepoRequestContentTypeEnum() CreateImageSyncRepoRequestContentTypeEnum

type CreateImageSyncRepoResponse

type CreateImageSyncRepoResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (CreateImageSyncRepoResponse) String

type CreateManualImageSyncRepoRequest

type CreateManualImageSyncRepoRequest struct {
	ContentType CreateManualImageSyncRepoRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *CreateManualImageSyncRepoRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateManualImageSyncRepoRequest) String

type CreateManualImageSyncRepoRequestBody

type CreateManualImageSyncRepoRequestBody struct {
	ImageTag []string `json:"imageTag"`

	Override *bool `json:"override,omitempty"`

	RemoteNamespace string `json:"remoteNamespace"`

	RemoteRegionId string `json:"remoteRegionId"`
}

手动同步镜像需要的参数

func (CreateManualImageSyncRepoRequestBody) String

type CreateManualImageSyncRepoRequestContentType

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

func (CreateManualImageSyncRepoRequestContentType) MarshalJSON

func (*CreateManualImageSyncRepoRequestContentType) UnmarshalJSON

type CreateManualImageSyncRepoRequestContentTypeEnum

type CreateManualImageSyncRepoRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateManualImageSyncRepoRequestContentType
	APPLICATION_JSON             CreateManualImageSyncRepoRequestContentType
}

func GetCreateManualImageSyncRepoRequestContentTypeEnum

func GetCreateManualImageSyncRepoRequestContentTypeEnum() CreateManualImageSyncRepoRequestContentTypeEnum

type CreateManualImageSyncRepoResponse

type CreateManualImageSyncRepoResponse struct {
	Body           *[]string `json:"body,omitempty"`
	HttpStatusCode int       `json:"-"`
}

Response Object

func (CreateManualImageSyncRepoResponse) String

type CreateNamespaceAuthRequest

type CreateNamespaceAuthRequest struct {
	ContentType CreateNamespaceAuthRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Body *[]UserAuth `json:"body,omitempty"`
}

Request Object

func (CreateNamespaceAuthRequest) String

type CreateNamespaceAuthRequestContentType

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

func (CreateNamespaceAuthRequestContentType) MarshalJSON

func (c CreateNamespaceAuthRequestContentType) MarshalJSON() ([]byte, error)

func (*CreateNamespaceAuthRequestContentType) UnmarshalJSON

func (c *CreateNamespaceAuthRequestContentType) UnmarshalJSON(b []byte) error

type CreateNamespaceAuthRequestContentTypeEnum

type CreateNamespaceAuthRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateNamespaceAuthRequestContentType
	APPLICATION_JSON             CreateNamespaceAuthRequestContentType
}

func GetCreateNamespaceAuthRequestContentTypeEnum

func GetCreateNamespaceAuthRequestContentTypeEnum() CreateNamespaceAuthRequestContentTypeEnum

type CreateNamespaceAuthResponse

type CreateNamespaceAuthResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (CreateNamespaceAuthResponse) String

type CreateNamespaceRequest

type CreateNamespaceRequest struct {
	ContentType CreateNamespaceRequestContentType `json:"Content-Type"`

	Body *CreateNamespaceRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateNamespaceRequest) String

func (o CreateNamespaceRequest) String() string

type CreateNamespaceRequestBody

type CreateNamespaceRequestBody struct {
	Namespace string `json:"namespace"`
}

func (CreateNamespaceRequestBody) String

type CreateNamespaceRequestContentType

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

func (CreateNamespaceRequestContentType) MarshalJSON

func (c CreateNamespaceRequestContentType) MarshalJSON() ([]byte, error)

func (*CreateNamespaceRequestContentType) UnmarshalJSON

func (c *CreateNamespaceRequestContentType) UnmarshalJSON(b []byte) error

type CreateNamespaceRequestContentTypeEnum

type CreateNamespaceRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateNamespaceRequestContentType
	APPLICATION_JSON             CreateNamespaceRequestContentType
}

func GetCreateNamespaceRequestContentTypeEnum

func GetCreateNamespaceRequestContentTypeEnum() CreateNamespaceRequestContentTypeEnum

type CreateNamespaceResponse

type CreateNamespaceResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (CreateNamespaceResponse) String

func (o CreateNamespaceResponse) String() string

type CreateRepoDomainsRequest

type CreateRepoDomainsRequest struct {
	ContentType CreateRepoDomainsRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *CreateRepoDomainsRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateRepoDomainsRequest) String

func (o CreateRepoDomainsRequest) String() string

type CreateRepoDomainsRequestBody

type CreateRepoDomainsRequestBody struct {
	AccessDomain string `json:"access_domain"`

	Permit string `json:"permit"`

	Deadline string `json:"deadline"`

	Description *string `json:"description,omitempty"`
}

func (CreateRepoDomainsRequestBody) String

type CreateRepoDomainsRequestContentType

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

func (CreateRepoDomainsRequestContentType) MarshalJSON

func (c CreateRepoDomainsRequestContentType) MarshalJSON() ([]byte, error)

func (*CreateRepoDomainsRequestContentType) UnmarshalJSON

func (c *CreateRepoDomainsRequestContentType) UnmarshalJSON(b []byte) error

type CreateRepoDomainsRequestContentTypeEnum

type CreateRepoDomainsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateRepoDomainsRequestContentType
	APPLICATION_JSON             CreateRepoDomainsRequestContentType
}

func GetCreateRepoDomainsRequestContentTypeEnum

func GetCreateRepoDomainsRequestContentTypeEnum() CreateRepoDomainsRequestContentTypeEnum

type CreateRepoDomainsResponse

type CreateRepoDomainsResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (CreateRepoDomainsResponse) String

func (o CreateRepoDomainsResponse) String() string

type CreateRepoRequest

type CreateRepoRequest struct {
	ContentType CreateRepoRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Body *CreateRepoRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateRepoRequest) String

func (o CreateRepoRequest) String() string

type CreateRepoRequestBody

type CreateRepoRequestBody struct {
	Repository string `json:"repository"`

	IsPublic bool `json:"is_public"`

	Category *CreateRepoRequestBodyCategory `json:"category,omitempty"`

	Description *string `json:"description,omitempty"`
}

func (CreateRepoRequestBody) String

func (o CreateRepoRequestBody) String() string

type CreateRepoRequestBodyCategory

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

func (CreateRepoRequestBodyCategory) MarshalJSON

func (c CreateRepoRequestBodyCategory) MarshalJSON() ([]byte, error)

func (*CreateRepoRequestBodyCategory) UnmarshalJSON

func (c *CreateRepoRequestBodyCategory) UnmarshalJSON(b []byte) error

type CreateRepoRequestContentType

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

func (CreateRepoRequestContentType) MarshalJSON

func (c CreateRepoRequestContentType) MarshalJSON() ([]byte, error)

func (*CreateRepoRequestContentType) UnmarshalJSON

func (c *CreateRepoRequestContentType) UnmarshalJSON(b []byte) error

type CreateRepoRequestContentTypeEnum

type CreateRepoRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateRepoRequestContentType
	APPLICATION_JSON             CreateRepoRequestContentType
}

func GetCreateRepoRequestContentTypeEnum

func GetCreateRepoRequestContentTypeEnum() CreateRepoRequestContentTypeEnum

type CreateRepoResponse

type CreateRepoResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (CreateRepoResponse) String

func (o CreateRepoResponse) String() string

type CreateRetentionRequest

type CreateRetentionRequest struct {
	ContentType CreateRetentionRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *CreateRetentionRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateRetentionRequest) String

func (o CreateRetentionRequest) String() string

type CreateRetentionRequestBody

type CreateRetentionRequestBody struct {
	Algorithm string `json:"algorithm"`

	Rules []Rule `json:"rules"`
}

func (CreateRetentionRequestBody) String

type CreateRetentionRequestContentType

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

func (CreateRetentionRequestContentType) MarshalJSON

func (c CreateRetentionRequestContentType) MarshalJSON() ([]byte, error)

func (*CreateRetentionRequestContentType) UnmarshalJSON

func (c *CreateRetentionRequestContentType) UnmarshalJSON(b []byte) error

type CreateRetentionRequestContentTypeEnum

type CreateRetentionRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateRetentionRequestContentType
	APPLICATION_JSON             CreateRetentionRequestContentType
}

func GetCreateRetentionRequestContentTypeEnum

func GetCreateRetentionRequestContentTypeEnum() CreateRetentionRequestContentTypeEnum

type CreateRetentionResponse

type CreateRetentionResponse struct {
	Id             *int32 `json:"id,omitempty"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (CreateRetentionResponse) String

func (o CreateRetentionResponse) String() string

type CreateSecretRequest

type CreateSecretRequest struct {
	ContentType CreateSecretRequestContentType `json:"Content-Type"`

	Projectname *string `json:"projectname,omitempty"`
}

Request Object

func (CreateSecretRequest) String

func (o CreateSecretRequest) String() string

type CreateSecretRequestContentType

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

func (CreateSecretRequestContentType) MarshalJSON

func (c CreateSecretRequestContentType) MarshalJSON() ([]byte, error)

func (*CreateSecretRequestContentType) UnmarshalJSON

func (c *CreateSecretRequestContentType) UnmarshalJSON(b []byte) error

type CreateSecretRequestContentTypeEnum

type CreateSecretRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateSecretRequestContentType
	APPLICATION_JSON             CreateSecretRequestContentType
}

func GetCreateSecretRequestContentTypeEnum

func GetCreateSecretRequestContentTypeEnum() CreateSecretRequestContentTypeEnum

type CreateSecretResponse

type CreateSecretResponse struct {
	Auths          map[string]AuthInfo `json:"auths,omitempty"`
	HttpStatusCode int                 `json:"-"`
}

Response Object

func (CreateSecretResponse) String

func (o CreateSecretResponse) String() string

type CreateTriggerRequest

type CreateTriggerRequest struct {
	ContentType CreateTriggerRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *CreateTriggerRequestBody `json:"body,omitempty"`
}

Request Object

func (CreateTriggerRequest) String

func (o CreateTriggerRequest) String() string

type CreateTriggerRequestBody

type CreateTriggerRequestBody struct {
	Action string `json:"action"`

	AppType string `json:"app_type"`

	Application string `json:"application"`

	ClusterId *string `json:"cluster_id,omitempty"`

	ClusterName *string `json:"cluster_name,omitempty"`

	ClusterNs string `json:"cluster_ns"`

	Condition string `json:"condition"`

	Container *string `json:"container,omitempty"`

	Enable string `json:"enable"`

	Name string `json:"name"`

	TriggerMode *string `json:"trigger_mode,omitempty"`

	TriggerType string `json:"trigger_type"`
}

需要创建触发器的信息

func (CreateTriggerRequestBody) String

func (o CreateTriggerRequestBody) String() string

type CreateTriggerRequestContentType

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

func (CreateTriggerRequestContentType) MarshalJSON

func (c CreateTriggerRequestContentType) MarshalJSON() ([]byte, error)

func (*CreateTriggerRequestContentType) UnmarshalJSON

func (c *CreateTriggerRequestContentType) UnmarshalJSON(b []byte) error

type CreateTriggerRequestContentTypeEnum

type CreateTriggerRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateTriggerRequestContentType
	APPLICATION_JSON             CreateTriggerRequestContentType
}

func GetCreateTriggerRequestContentTypeEnum

func GetCreateTriggerRequestContentTypeEnum() CreateTriggerRequestContentTypeEnum

type CreateTriggerResponse

type CreateTriggerResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (CreateTriggerResponse) String

func (o CreateTriggerResponse) String() string

type CreateUserRepositoryAuthRequest

type CreateUserRepositoryAuthRequest struct {
	ContentType CreateUserRepositoryAuthRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *[]UserAuth `json:"body,omitempty"`
}

Request Object

func (CreateUserRepositoryAuthRequest) String

type CreateUserRepositoryAuthRequestContentType

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

func (CreateUserRepositoryAuthRequestContentType) MarshalJSON

func (*CreateUserRepositoryAuthRequestContentType) UnmarshalJSON

type CreateUserRepositoryAuthRequestContentTypeEnum

type CreateUserRepositoryAuthRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 CreateUserRepositoryAuthRequestContentType
	APPLICATION_JSON             CreateUserRepositoryAuthRequestContentType
}

func GetCreateUserRepositoryAuthRequestContentTypeEnum

func GetCreateUserRepositoryAuthRequestContentTypeEnum() CreateUserRepositoryAuthRequestContentTypeEnum

type CreateUserRepositoryAuthResponse

type CreateUserRepositoryAuthResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (CreateUserRepositoryAuthResponse) String

type DeleteImageSyncRepoRequest

type DeleteImageSyncRepoRequest struct {
	ContentType DeleteImageSyncRepoRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *DeleteImageSyncRepoRequestBody `json:"body,omitempty"`
}

Request Object

func (DeleteImageSyncRepoRequest) String

type DeleteImageSyncRepoRequestBody

type DeleteImageSyncRepoRequestBody struct {
	RemoteRegionId string `json:"remoteRegionId"`

	RemoteNamespace string `json:"remoteNamespace"`
}

需要删除镜像自动同步任务的信息

func (DeleteImageSyncRepoRequestBody) String

type DeleteImageSyncRepoRequestContentType

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

func (DeleteImageSyncRepoRequestContentType) MarshalJSON

func (c DeleteImageSyncRepoRequestContentType) MarshalJSON() ([]byte, error)

func (*DeleteImageSyncRepoRequestContentType) UnmarshalJSON

func (c *DeleteImageSyncRepoRequestContentType) UnmarshalJSON(b []byte) error

type DeleteImageSyncRepoRequestContentTypeEnum

type DeleteImageSyncRepoRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 DeleteImageSyncRepoRequestContentType
	APPLICATION_JSON             DeleteImageSyncRepoRequestContentType
}

func GetDeleteImageSyncRepoRequestContentTypeEnum

func GetDeleteImageSyncRepoRequestContentTypeEnum() DeleteImageSyncRepoRequestContentTypeEnum

type DeleteImageSyncRepoResponse

type DeleteImageSyncRepoResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteImageSyncRepoResponse) String

type DeleteNamespaceAuthRequest

type DeleteNamespaceAuthRequest struct {
	ContentType DeleteNamespaceAuthRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Body *[]string `json:"body,omitempty"`
}

Request Object

func (DeleteNamespaceAuthRequest) String

type DeleteNamespaceAuthRequestContentType

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

func (DeleteNamespaceAuthRequestContentType) MarshalJSON

func (c DeleteNamespaceAuthRequestContentType) MarshalJSON() ([]byte, error)

func (*DeleteNamespaceAuthRequestContentType) UnmarshalJSON

func (c *DeleteNamespaceAuthRequestContentType) UnmarshalJSON(b []byte) error

type DeleteNamespaceAuthRequestContentTypeEnum

type DeleteNamespaceAuthRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 DeleteNamespaceAuthRequestContentType
	APPLICATION_JSON             DeleteNamespaceAuthRequestContentType
}

func GetDeleteNamespaceAuthRequestContentTypeEnum

func GetDeleteNamespaceAuthRequestContentTypeEnum() DeleteNamespaceAuthRequestContentTypeEnum

type DeleteNamespaceAuthResponse

type DeleteNamespaceAuthResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteNamespaceAuthResponse) String

type DeleteNamespacesRequest

type DeleteNamespacesRequest struct {
	ContentType DeleteNamespacesRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`
}

Request Object

func (DeleteNamespacesRequest) String

func (o DeleteNamespacesRequest) String() string

type DeleteNamespacesRequestContentType

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

func (DeleteNamespacesRequestContentType) MarshalJSON

func (c DeleteNamespacesRequestContentType) MarshalJSON() ([]byte, error)

func (*DeleteNamespacesRequestContentType) UnmarshalJSON

func (c *DeleteNamespacesRequestContentType) UnmarshalJSON(b []byte) error

type DeleteNamespacesRequestContentTypeEnum

type DeleteNamespacesRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 DeleteNamespacesRequestContentType
	APPLICATION_JSON             DeleteNamespacesRequestContentType
}

func GetDeleteNamespacesRequestContentTypeEnum

func GetDeleteNamespacesRequestContentTypeEnum() DeleteNamespacesRequestContentTypeEnum

type DeleteNamespacesResponse

type DeleteNamespacesResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteNamespacesResponse) String

func (o DeleteNamespacesResponse) String() string

type DeleteRepoDomainsRequest

type DeleteRepoDomainsRequest struct {
	ContentType DeleteRepoDomainsRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	AccessDomain string `json:"access_domain"`
}

Request Object

func (DeleteRepoDomainsRequest) String

func (o DeleteRepoDomainsRequest) String() string

type DeleteRepoDomainsRequestContentType

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

func (DeleteRepoDomainsRequestContentType) MarshalJSON

func (c DeleteRepoDomainsRequestContentType) MarshalJSON() ([]byte, error)

func (*DeleteRepoDomainsRequestContentType) UnmarshalJSON

func (c *DeleteRepoDomainsRequestContentType) UnmarshalJSON(b []byte) error

type DeleteRepoDomainsRequestContentTypeEnum

type DeleteRepoDomainsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 DeleteRepoDomainsRequestContentType
	APPLICATION_JSON             DeleteRepoDomainsRequestContentType
}

func GetDeleteRepoDomainsRequestContentTypeEnum

func GetDeleteRepoDomainsRequestContentTypeEnum() DeleteRepoDomainsRequestContentTypeEnum

type DeleteRepoDomainsResponse

type DeleteRepoDomainsResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteRepoDomainsResponse) String

func (o DeleteRepoDomainsResponse) String() string

type DeleteRepoRequest

type DeleteRepoRequest struct {
	ContentType DeleteRepoRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`
}

Request Object

func (DeleteRepoRequest) String

func (o DeleteRepoRequest) String() string

type DeleteRepoRequestContentType

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

func (DeleteRepoRequestContentType) MarshalJSON

func (c DeleteRepoRequestContentType) MarshalJSON() ([]byte, error)

func (*DeleteRepoRequestContentType) UnmarshalJSON

func (c *DeleteRepoRequestContentType) UnmarshalJSON(b []byte) error

type DeleteRepoRequestContentTypeEnum

type DeleteRepoRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 DeleteRepoRequestContentType
	APPLICATION_JSON             DeleteRepoRequestContentType
}

func GetDeleteRepoRequestContentTypeEnum

func GetDeleteRepoRequestContentTypeEnum() DeleteRepoRequestContentTypeEnum

type DeleteRepoResponse

type DeleteRepoResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteRepoResponse) String

func (o DeleteRepoResponse) String() string

type DeleteRepoTagRequest

type DeleteRepoTagRequest struct {
	ContentType DeleteRepoTagRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Tag string `json:"tag"`
}

Request Object

func (DeleteRepoTagRequest) String

func (o DeleteRepoTagRequest) String() string

type DeleteRepoTagRequestContentType

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

func (DeleteRepoTagRequestContentType) MarshalJSON

func (c DeleteRepoTagRequestContentType) MarshalJSON() ([]byte, error)

func (*DeleteRepoTagRequestContentType) UnmarshalJSON

func (c *DeleteRepoTagRequestContentType) UnmarshalJSON(b []byte) error

type DeleteRepoTagRequestContentTypeEnum

type DeleteRepoTagRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 DeleteRepoTagRequestContentType
	APPLICATION_JSON             DeleteRepoTagRequestContentType
}

func GetDeleteRepoTagRequestContentTypeEnum

func GetDeleteRepoTagRequestContentTypeEnum() DeleteRepoTagRequestContentTypeEnum

type DeleteRepoTagResponse

type DeleteRepoTagResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteRepoTagResponse) String

func (o DeleteRepoTagResponse) String() string

type DeleteRetentionRequest

type DeleteRetentionRequest struct {
	ContentType DeleteRetentionRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	RetentionId int32 `json:"retention_id"`
}

Request Object

func (DeleteRetentionRequest) String

func (o DeleteRetentionRequest) String() string

type DeleteRetentionRequestContentType

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

func (DeleteRetentionRequestContentType) MarshalJSON

func (c DeleteRetentionRequestContentType) MarshalJSON() ([]byte, error)

func (*DeleteRetentionRequestContentType) UnmarshalJSON

func (c *DeleteRetentionRequestContentType) UnmarshalJSON(b []byte) error

type DeleteRetentionRequestContentTypeEnum

type DeleteRetentionRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 DeleteRetentionRequestContentType
	APPLICATION_JSON             DeleteRetentionRequestContentType
}

func GetDeleteRetentionRequestContentTypeEnum

func GetDeleteRetentionRequestContentTypeEnum() DeleteRetentionRequestContentTypeEnum

type DeleteRetentionResponse

type DeleteRetentionResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteRetentionResponse) String

func (o DeleteRetentionResponse) String() string

type DeleteTriggerRequest

type DeleteTriggerRequest struct {
	ContentType DeleteTriggerRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Trigger string `json:"trigger"`
}

Request Object

func (DeleteTriggerRequest) String

func (o DeleteTriggerRequest) String() string

type DeleteTriggerRequestContentType

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

func (DeleteTriggerRequestContentType) MarshalJSON

func (c DeleteTriggerRequestContentType) MarshalJSON() ([]byte, error)

func (*DeleteTriggerRequestContentType) UnmarshalJSON

func (c *DeleteTriggerRequestContentType) UnmarshalJSON(b []byte) error

type DeleteTriggerRequestContentTypeEnum

type DeleteTriggerRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 DeleteTriggerRequestContentType
	APPLICATION_JSON             DeleteTriggerRequestContentType
}

func GetDeleteTriggerRequestContentTypeEnum

func GetDeleteTriggerRequestContentTypeEnum() DeleteTriggerRequestContentTypeEnum

type DeleteTriggerResponse

type DeleteTriggerResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteTriggerResponse) String

func (o DeleteTriggerResponse) String() string

type DeleteUserRepositoryAuthRequest

type DeleteUserRepositoryAuthRequest struct {
	ContentType DeleteUserRepositoryAuthRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *[]string `json:"body,omitempty"`
}

Request Object

func (DeleteUserRepositoryAuthRequest) String

type DeleteUserRepositoryAuthRequestContentType

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

func (DeleteUserRepositoryAuthRequestContentType) MarshalJSON

func (*DeleteUserRepositoryAuthRequestContentType) UnmarshalJSON

type DeleteUserRepositoryAuthRequestContentTypeEnum

type DeleteUserRepositoryAuthRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 DeleteUserRepositoryAuthRequestContentType
	APPLICATION_JSON             DeleteUserRepositoryAuthRequestContentType
}

func GetDeleteUserRepositoryAuthRequestContentTypeEnum

func GetDeleteUserRepositoryAuthRequestContentTypeEnum() DeleteUserRepositoryAuthRequestContentTypeEnum

type DeleteUserRepositoryAuthResponse

type DeleteUserRepositoryAuthResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (DeleteUserRepositoryAuthResponse) String

type Link struct {
	Href string `json:"href"`

	Rel string `json:"rel"`
}

func (Link) String

func (o Link) String() string

type ListApiVersionsRequest

type ListApiVersionsRequest struct {
	ContentType ListApiVersionsRequestContentType `json:"Content-Type"`
}

Request Object

func (ListApiVersionsRequest) String

func (o ListApiVersionsRequest) String() string

type ListApiVersionsRequestContentType

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

func (ListApiVersionsRequestContentType) MarshalJSON

func (c ListApiVersionsRequestContentType) MarshalJSON() ([]byte, error)

func (*ListApiVersionsRequestContentType) UnmarshalJSON

func (c *ListApiVersionsRequestContentType) UnmarshalJSON(b []byte) error

type ListApiVersionsRequestContentTypeEnum

type ListApiVersionsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListApiVersionsRequestContentType
	APPLICATION_JSON             ListApiVersionsRequestContentType
}

func GetListApiVersionsRequestContentTypeEnum

func GetListApiVersionsRequestContentTypeEnum() ListApiVersionsRequestContentTypeEnum

type ListApiVersionsResponse

type ListApiVersionsResponse struct {
	Versions       *[]VersionDetail `json:"versions,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ListApiVersionsResponse) String

func (o ListApiVersionsResponse) String() string

type ListImageAutoSyncReposDetailsRequest

type ListImageAutoSyncReposDetailsRequest struct {
	ContentType ListImageAutoSyncReposDetailsRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`
}

Request Object

func (ListImageAutoSyncReposDetailsRequest) String

type ListImageAutoSyncReposDetailsRequestContentType

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

func (ListImageAutoSyncReposDetailsRequestContentType) MarshalJSON

func (*ListImageAutoSyncReposDetailsRequestContentType) UnmarshalJSON

type ListImageAutoSyncReposDetailsRequestContentTypeEnum

type ListImageAutoSyncReposDetailsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListImageAutoSyncReposDetailsRequestContentType
	APPLICATION_JSON             ListImageAutoSyncReposDetailsRequestContentType
}

type ListImageAutoSyncReposDetailsResponse

type ListImageAutoSyncReposDetailsResponse struct {
	Body           *[]SyncRepo `json:"body,omitempty"`
	HttpStatusCode int         `json:"-"`
}

Response Object

func (ListImageAutoSyncReposDetailsResponse) String

type ListNamespacesRequest

type ListNamespacesRequest struct {
	ContentType ListNamespacesRequestContentType `json:"Content-Type"`

	Namespace *string `json:"namespace,omitempty"`
}

Request Object

func (ListNamespacesRequest) String

func (o ListNamespacesRequest) String() string

type ListNamespacesRequestContentType

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

func (ListNamespacesRequestContentType) MarshalJSON

func (c ListNamespacesRequestContentType) MarshalJSON() ([]byte, error)

func (*ListNamespacesRequestContentType) UnmarshalJSON

func (c *ListNamespacesRequestContentType) UnmarshalJSON(b []byte) error

type ListNamespacesRequestContentTypeEnum

type ListNamespacesRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListNamespacesRequestContentType
	APPLICATION_JSON             ListNamespacesRequestContentType
}

func GetListNamespacesRequestContentTypeEnum

func GetListNamespacesRequestContentTypeEnum() ListNamespacesRequestContentTypeEnum

type ListNamespacesResponse

type ListNamespacesResponse struct {
	Namespaces     *[]ShowNamespace `json:"namespaces,omitempty"`
	HttpStatusCode int              `json:"-"`
}

Response Object

func (ListNamespacesResponse) String

func (o ListNamespacesResponse) String() string

type ListRepoDomainsRequest

type ListRepoDomainsRequest struct {
	ContentType ListRepoDomainsRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`
}

Request Object

func (ListRepoDomainsRequest) String

func (o ListRepoDomainsRequest) String() string

type ListRepoDomainsRequestContentType

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

func (ListRepoDomainsRequestContentType) MarshalJSON

func (c ListRepoDomainsRequestContentType) MarshalJSON() ([]byte, error)

func (*ListRepoDomainsRequestContentType) UnmarshalJSON

func (c *ListRepoDomainsRequestContentType) UnmarshalJSON(b []byte) error

type ListRepoDomainsRequestContentTypeEnum

type ListRepoDomainsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListRepoDomainsRequestContentType
	APPLICATION_JSON             ListRepoDomainsRequestContentType
}

func GetListRepoDomainsRequestContentTypeEnum

func GetListRepoDomainsRequestContentTypeEnum() ListRepoDomainsRequestContentTypeEnum

type ListRepoDomainsResponse

type ListRepoDomainsResponse struct {
	Body           *[]ShowRepoDomainsResponse `json:"body,omitempty"`
	HttpStatusCode int                        `json:"-"`
}

Response Object

func (ListRepoDomainsResponse) String

func (o ListRepoDomainsResponse) String() string

type ListReposDetailsRequest

type ListReposDetailsRequest struct {
	ContentType ListReposDetailsRequestContentType `json:"Content-Type"`

	Namespace *string `json:"namespace,omitempty"`

	Name *string `json:"name,omitempty"`

	Category *string `json:"category,omitempty"`

	Filter *string `json:"filter,omitempty"`
}

Request Object

func (ListReposDetailsRequest) String

func (o ListReposDetailsRequest) String() string

type ListReposDetailsRequestContentType

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

func (ListReposDetailsRequestContentType) MarshalJSON

func (c ListReposDetailsRequestContentType) MarshalJSON() ([]byte, error)

func (*ListReposDetailsRequestContentType) UnmarshalJSON

func (c *ListReposDetailsRequestContentType) UnmarshalJSON(b []byte) error

type ListReposDetailsRequestContentTypeEnum

type ListReposDetailsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListReposDetailsRequestContentType
	APPLICATION_JSON             ListReposDetailsRequestContentType
}

func GetListReposDetailsRequestContentTypeEnum

func GetListReposDetailsRequestContentTypeEnum() ListReposDetailsRequestContentTypeEnum

type ListReposDetailsResponse

type ListReposDetailsResponse struct {
	Body *[]ShowReposResp `json:"body,omitempty"`

	ContentRange   *string `json:"Content-Range,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ListReposDetailsResponse) String

func (o ListReposDetailsResponse) String() string

type ListRepositoryTagsRequest

type ListRepositoryTagsRequest struct {
	ContentType ListRepositoryTagsRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Offset *string `json:"offset,omitempty"`

	Limit *string `json:"limit,omitempty"`

	OrderColumn *string `json:"order_column,omitempty"`

	OrderType *ListRepositoryTagsRequestOrderType `json:"order_type,omitempty"`

	Tag *string `json:"tag,omitempty"`
}

Request Object

func (ListRepositoryTagsRequest) String

func (o ListRepositoryTagsRequest) String() string

type ListRepositoryTagsRequestContentType

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

func (ListRepositoryTagsRequestContentType) MarshalJSON

func (c ListRepositoryTagsRequestContentType) MarshalJSON() ([]byte, error)

func (*ListRepositoryTagsRequestContentType) UnmarshalJSON

func (c *ListRepositoryTagsRequestContentType) UnmarshalJSON(b []byte) error

type ListRepositoryTagsRequestContentTypeEnum

type ListRepositoryTagsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListRepositoryTagsRequestContentType
	APPLICATION_JSON             ListRepositoryTagsRequestContentType
}

func GetListRepositoryTagsRequestContentTypeEnum

func GetListRepositoryTagsRequestContentTypeEnum() ListRepositoryTagsRequestContentTypeEnum

type ListRepositoryTagsRequestOrderType

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

func (ListRepositoryTagsRequestOrderType) MarshalJSON

func (c ListRepositoryTagsRequestOrderType) MarshalJSON() ([]byte, error)

func (*ListRepositoryTagsRequestOrderType) UnmarshalJSON

func (c *ListRepositoryTagsRequestOrderType) UnmarshalJSON(b []byte) error

type ListRepositoryTagsRequestOrderTypeEnum

type ListRepositoryTagsRequestOrderTypeEnum struct {
	DESC ListRepositoryTagsRequestOrderType
	ASC  ListRepositoryTagsRequestOrderType
}

func GetListRepositoryTagsRequestOrderTypeEnum

func GetListRepositoryTagsRequestOrderTypeEnum() ListRepositoryTagsRequestOrderTypeEnum

type ListRepositoryTagsResponse

type ListRepositoryTagsResponse struct {
	Body           *[]ShowReposTagResp `json:"body,omitempty"`
	HttpStatusCode int                 `json:"-"`
}

Response Object

func (ListRepositoryTagsResponse) String

type ListRetentionHistoriesRequest

type ListRetentionHistoriesRequest struct {
	ContentType ListRetentionHistoriesRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Offset *string `json:"offset,omitempty"`

	Limit *string `json:"limit,omitempty"`
}

Request Object

func (ListRetentionHistoriesRequest) String

type ListRetentionHistoriesRequestContentType

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

func (ListRetentionHistoriesRequestContentType) MarshalJSON

func (*ListRetentionHistoriesRequestContentType) UnmarshalJSON

func (c *ListRetentionHistoriesRequestContentType) UnmarshalJSON(b []byte) error

type ListRetentionHistoriesRequestContentTypeEnum

type ListRetentionHistoriesRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListRetentionHistoriesRequestContentType
	APPLICATION_JSON             ListRetentionHistoriesRequestContentType
}

func GetListRetentionHistoriesRequestContentTypeEnum

func GetListRetentionHistoriesRequestContentTypeEnum() ListRetentionHistoriesRequestContentTypeEnum

type ListRetentionHistoriesResponse

type ListRetentionHistoriesResponse struct {
	RetentionLog *[]RetentionLog `json:"retention_log,omitempty"`

	Total *int32 `json:"total,omitempty"`

	ContentRange   *string `json:"Content-Range,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ListRetentionHistoriesResponse) String

type ListRetentionsRequest

type ListRetentionsRequest struct {
	ContentType ListRetentionsRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`
}

Request Object

func (ListRetentionsRequest) String

func (o ListRetentionsRequest) String() string

type ListRetentionsRequestContentType

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

func (ListRetentionsRequestContentType) MarshalJSON

func (c ListRetentionsRequestContentType) MarshalJSON() ([]byte, error)

func (*ListRetentionsRequestContentType) UnmarshalJSON

func (c *ListRetentionsRequestContentType) UnmarshalJSON(b []byte) error

type ListRetentionsRequestContentTypeEnum

type ListRetentionsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListRetentionsRequestContentType
	APPLICATION_JSON             ListRetentionsRequestContentType
}

func GetListRetentionsRequestContentTypeEnum

func GetListRetentionsRequestContentTypeEnum() ListRetentionsRequestContentTypeEnum

type ListRetentionsResponse

type ListRetentionsResponse struct {
	Body           *[]Retention `json:"body,omitempty"`
	HttpStatusCode int          `json:"-"`
}

Response Object

func (ListRetentionsResponse) String

func (o ListRetentionsResponse) String() string

type ListSharedReposDetailsRequest

type ListSharedReposDetailsRequest struct {
	ContentType ListSharedReposDetailsRequestContentType `json:"Content-Type"`

	Filter *string `json:"filter,omitempty"`
}

Request Object

func (ListSharedReposDetailsRequest) String

type ListSharedReposDetailsRequestContentType

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

func (ListSharedReposDetailsRequestContentType) MarshalJSON

func (*ListSharedReposDetailsRequestContentType) UnmarshalJSON

func (c *ListSharedReposDetailsRequestContentType) UnmarshalJSON(b []byte) error

type ListSharedReposDetailsRequestContentTypeEnum

type ListSharedReposDetailsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListSharedReposDetailsRequestContentType
	APPLICATION_JSON             ListSharedReposDetailsRequestContentType
}

func GetListSharedReposDetailsRequestContentTypeEnum

func GetListSharedReposDetailsRequestContentTypeEnum() ListSharedReposDetailsRequestContentTypeEnum

type ListSharedReposDetailsResponse

type ListSharedReposDetailsResponse struct {
	Body *[]ShowReposResp `json:"body,omitempty"`

	ContentRange   *string `json:"Content-Range,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ListSharedReposDetailsResponse) String

type ListTriggersDetailsRequest

type ListTriggersDetailsRequest struct {
	ContentType ListTriggersDetailsRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`
}

Request Object

func (ListTriggersDetailsRequest) String

type ListTriggersDetailsRequestContentType

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

func (ListTriggersDetailsRequestContentType) MarshalJSON

func (c ListTriggersDetailsRequestContentType) MarshalJSON() ([]byte, error)

func (*ListTriggersDetailsRequestContentType) UnmarshalJSON

func (c *ListTriggersDetailsRequestContentType) UnmarshalJSON(b []byte) error

type ListTriggersDetailsRequestContentTypeEnum

type ListTriggersDetailsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ListTriggersDetailsRequestContentType
	APPLICATION_JSON             ListTriggersDetailsRequestContentType
}

func GetListTriggersDetailsRequestContentTypeEnum

func GetListTriggersDetailsRequestContentTypeEnum() ListTriggersDetailsRequestContentTypeEnum

type ListTriggersDetailsResponse

type ListTriggersDetailsResponse struct {
	Body           *[]Trigger `json:"body,omitempty"`
	HttpStatusCode int        `json:"-"`
}

Response Object

func (ListTriggersDetailsResponse) String

type Retention

type Retention struct {
	Algorithm string `json:"algorithm"`

	Id int32 `json:"id"`

	Rules []Rule `json:"rules"`

	Scope string `json:"scope"`
}

镜像老化规则

func (Retention) String

func (o Retention) String() string

type RetentionLog

type RetentionLog struct {
	CreatedAt string `json:"created_at"`

	Id int32 `json:"id"`

	Namespace string `json:"namespace"`

	Repo string `json:"repo"`

	RetentionId int32 `json:"retention_id"`

	RuleType string `json:"rule_type"`

	Tag string `json:"tag"`
}

func (RetentionLog) String

func (o RetentionLog) String() string

type Rule

type Rule struct {
	Template RuleTemplate `json:"template"`

	Params *interface{} `json:"params"`

	TagSelectors []TagSelector `json:"tag_selectors"`
}

func (Rule) String

func (o Rule) String() string

type RuleTemplate

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

func (RuleTemplate) MarshalJSON

func (c RuleTemplate) MarshalJSON() ([]byte, error)

func (*RuleTemplate) UnmarshalJSON

func (c *RuleTemplate) UnmarshalJSON(b []byte) error

type RuleTemplateEnum

type RuleTemplateEnum struct {
	DATE_RULE RuleTemplate
	TAG_RULE  RuleTemplate
}

func GetRuleTemplateEnum

func GetRuleTemplateEnum() RuleTemplateEnum

type ShowAccessDomainRequest

type ShowAccessDomainRequest struct {
	ContentType ShowAccessDomainRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	AccessDomain string `json:"access_domain"`
}

Request Object

func (ShowAccessDomainRequest) String

func (o ShowAccessDomainRequest) String() string

type ShowAccessDomainRequestContentType

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

func (ShowAccessDomainRequestContentType) MarshalJSON

func (c ShowAccessDomainRequestContentType) MarshalJSON() ([]byte, error)

func (*ShowAccessDomainRequestContentType) UnmarshalJSON

func (c *ShowAccessDomainRequestContentType) UnmarshalJSON(b []byte) error

type ShowAccessDomainRequestContentTypeEnum

type ShowAccessDomainRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ShowAccessDomainRequestContentType
	APPLICATION_JSON             ShowAccessDomainRequestContentType
}

func GetShowAccessDomainRequestContentTypeEnum

func GetShowAccessDomainRequestContentTypeEnum() ShowAccessDomainRequestContentTypeEnum

type ShowAccessDomainResponse

type ShowAccessDomainResponse struct {
	Exist          *bool `json:"exist,omitempty"`
	HttpStatusCode int   `json:"-"`
}

Response Object

func (ShowAccessDomainResponse) String

func (o ShowAccessDomainResponse) String() string

type ShowApiVersionRequest

type ShowApiVersionRequest struct {
	ContentType ShowApiVersionRequestContentType `json:"Content-Type"`

	ApiVersion string `json:"api_version"`
}

Request Object

func (ShowApiVersionRequest) String

func (o ShowApiVersionRequest) String() string

type ShowApiVersionRequestContentType

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

func (ShowApiVersionRequestContentType) MarshalJSON

func (c ShowApiVersionRequestContentType) MarshalJSON() ([]byte, error)

func (*ShowApiVersionRequestContentType) UnmarshalJSON

func (c *ShowApiVersionRequestContentType) UnmarshalJSON(b []byte) error

type ShowApiVersionRequestContentTypeEnum

type ShowApiVersionRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ShowApiVersionRequestContentType
	APPLICATION_JSON             ShowApiVersionRequestContentType
}

func GetShowApiVersionRequestContentTypeEnum

func GetShowApiVersionRequestContentTypeEnum() ShowApiVersionRequestContentTypeEnum

type ShowApiVersionResponse

type ShowApiVersionResponse struct {
	Version        *VersionDetail `json:"version,omitempty"`
	HttpStatusCode int            `json:"-"`
}

Response Object

func (ShowApiVersionResponse) String

func (o ShowApiVersionResponse) String() string

type ShowNamespace

type ShowNamespace struct {
	Id int32 `json:"id"`

	Name string `json:"name"`

	CreatorName string `json:"creator_name"`

	Auth ShowNamespaceAuth `json:"auth"`
}

func (ShowNamespace) String

func (o ShowNamespace) String() string

type ShowNamespaceAuth

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

func (ShowNamespaceAuth) MarshalJSON

func (c ShowNamespaceAuth) MarshalJSON() ([]byte, error)

func (*ShowNamespaceAuth) UnmarshalJSON

func (c *ShowNamespaceAuth) UnmarshalJSON(b []byte) error

type ShowNamespaceAuthEnum

type ShowNamespaceAuthEnum struct {
	E_7 ShowNamespaceAuth
	E_3 ShowNamespaceAuth
	E_1 ShowNamespaceAuth
}

func GetShowNamespaceAuthEnum

func GetShowNamespaceAuthEnum() ShowNamespaceAuthEnum

type ShowNamespaceAuthRequest

type ShowNamespaceAuthRequest struct {
	ContentType ShowNamespaceAuthRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`
}

Request Object

func (ShowNamespaceAuthRequest) String

func (o ShowNamespaceAuthRequest) String() string

type ShowNamespaceAuthRequestContentType

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

func (ShowNamespaceAuthRequestContentType) MarshalJSON

func (c ShowNamespaceAuthRequestContentType) MarshalJSON() ([]byte, error)

func (*ShowNamespaceAuthRequestContentType) UnmarshalJSON

func (c *ShowNamespaceAuthRequestContentType) UnmarshalJSON(b []byte) error

type ShowNamespaceAuthRequestContentTypeEnum

type ShowNamespaceAuthRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ShowNamespaceAuthRequestContentType
	APPLICATION_JSON             ShowNamespaceAuthRequestContentType
}

func GetShowNamespaceAuthRequestContentTypeEnum

func GetShowNamespaceAuthRequestContentTypeEnum() ShowNamespaceAuthRequestContentTypeEnum

type ShowNamespaceAuthResponse

type ShowNamespaceAuthResponse struct {
	Id *int32 `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	CreatorName *string `json:"creator_name,omitempty"`

	SelfAuth *UserAuth `json:"self_auth,omitempty"`

	OthersAuths    *[]UserAuth `json:"others_auths,omitempty"`
	HttpStatusCode int         `json:"-"`
}

Response Object

func (ShowNamespaceAuthResponse) String

func (o ShowNamespaceAuthResponse) String() string

type ShowNamespaceRequest

type ShowNamespaceRequest struct {
	ContentType ShowNamespaceRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`
}

Request Object

func (ShowNamespaceRequest) String

func (o ShowNamespaceRequest) String() string

type ShowNamespaceRequestContentType

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

func (ShowNamespaceRequestContentType) MarshalJSON

func (c ShowNamespaceRequestContentType) MarshalJSON() ([]byte, error)

func (*ShowNamespaceRequestContentType) UnmarshalJSON

func (c *ShowNamespaceRequestContentType) UnmarshalJSON(b []byte) error

type ShowNamespaceRequestContentTypeEnum

type ShowNamespaceRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ShowNamespaceRequestContentType
	APPLICATION_JSON             ShowNamespaceRequestContentType
}

func GetShowNamespaceRequestContentTypeEnum

func GetShowNamespaceRequestContentTypeEnum() ShowNamespaceRequestContentTypeEnum

type ShowNamespaceResponse

type ShowNamespaceResponse struct {
	Id *int32 `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	CreatorName *string `json:"creator_name,omitempty"`

	Auth           *ShowNamespaceResponseAuth `json:"auth,omitempty"`
	HttpStatusCode int                        `json:"-"`
}

Response Object

func (ShowNamespaceResponse) String

func (o ShowNamespaceResponse) String() string

type ShowNamespaceResponseAuth

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

func (ShowNamespaceResponseAuth) MarshalJSON

func (c ShowNamespaceResponseAuth) MarshalJSON() ([]byte, error)

func (*ShowNamespaceResponseAuth) UnmarshalJSON

func (c *ShowNamespaceResponseAuth) UnmarshalJSON(b []byte) error

type ShowNamespaceResponseAuthEnum

type ShowNamespaceResponseAuthEnum struct {
	E_7 ShowNamespaceResponseAuth
	E_3 ShowNamespaceResponseAuth
	E_1 ShowNamespaceResponseAuth
}

func GetShowNamespaceResponseAuthEnum

func GetShowNamespaceResponseAuthEnum() ShowNamespaceResponseAuthEnum

type ShowRepoDomainsResponse

type ShowRepoDomainsResponse struct {
	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	AccessDomain string `json:"access_domain"`

	Permit string `json:"permit"`

	Deadline string `json:"deadline"`

	Description string `json:"description"`

	CreatorId string `json:"creator_id"`

	CreatorName string `json:"creator_name"`

	Created string `json:"created"`

	Updated string `json:"updated"`

	Status bool `json:"status"`
}

func (ShowRepoDomainsResponse) String

func (o ShowRepoDomainsResponse) String() string

type ShowReposResp

type ShowReposResp struct {
	Name string `json:"name"`

	Category string `json:"category"`

	Description string `json:"description"`

	Size int64 `json:"size"`

	IsPublic bool `json:"is_public"`

	NumImages int64 `json:"num_images"`

	NumDownload int64 `json:"num_download"`

	CreatedAt string `json:"created_at"`

	UpdatedAt string `json:"updated_at"`


	Url string `json:"url"`

	Path string `json:"path"`

	InternalPath string `json:"internal_path"`

	DomainName string `json:"domain_name"`

	Namespace string `json:"namespace"`

	Tags []string `json:"tags"`

	Status bool `json:"status"`

	TotalRange int64 `json:"total_range"`
}

func (ShowReposResp) String

func (o ShowReposResp) String() string

type ShowReposTagResp

type ShowReposTagResp struct {
	Id int64 `json:"id"`

	RepoId int64 `json:"repo_id"`

	Tag string `json:"Tag"`

	ImageId string `json:"image_id"`

	Manifest string `json:"manifest"`

	Digest string `json:"digest"`

	Schema int64 `json:"schema"`

	Path string `json:"path"`

	InternalPath string `json:"internal_path"`

	Size int64 `json:"size"`

	IsTrusted bool `json:"is_trusted"`

	Created string `json:"created"`

	Updated string `json:"updated"`

	Deleted string `json:"deleted"`
}

func (ShowReposTagResp) String

func (o ShowReposTagResp) String() string

type ShowRepositoryRequest

type ShowRepositoryRequest struct {
	ContentType ShowRepositoryRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`
}

Request Object

func (ShowRepositoryRequest) String

func (o ShowRepositoryRequest) String() string

type ShowRepositoryRequestContentType

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

func (ShowRepositoryRequestContentType) MarshalJSON

func (c ShowRepositoryRequestContentType) MarshalJSON() ([]byte, error)

func (*ShowRepositoryRequestContentType) UnmarshalJSON

func (c *ShowRepositoryRequestContentType) UnmarshalJSON(b []byte) error

type ShowRepositoryRequestContentTypeEnum

type ShowRepositoryRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ShowRepositoryRequestContentType
	APPLICATION_JSON             ShowRepositoryRequestContentType
}

func GetShowRepositoryRequestContentTypeEnum

func GetShowRepositoryRequestContentTypeEnum() ShowRepositoryRequestContentTypeEnum

type ShowRepositoryResponse

type ShowRepositoryResponse struct {
	Id *int64 `json:"id,omitempty"`

	NsId *int64 `json:"ns_id,omitempty"`

	Name *string `json:"name,omitempty"`

	Category *string `json:"category,omitempty"`

	Description *string `json:"description,omitempty"`

	CreatorId *string `json:"creator_id,omitempty"`

	CreatorName *string `json:"creator_name,omitempty"`

	Size *int64 `json:"size,omitempty"`

	IsPublic *bool `json:"is_public,omitempty"`

	NumImages *int64 `json:"num_images,omitempty"`

	NumDownload *int64 `json:"num_download,omitempty"`

	Url *string `json:"url,omitempty"`

	Path *string `json:"path,omitempty"`

	InternalPath *string `json:"internal_path,omitempty"`

	Created *string `json:"created,omitempty"`

	Updated *string `json:"updated,omitempty"`

	DomainId *string `json:"domain_id,omitempty"`

	Priority       *int32 `json:"priority,omitempty"`
	HttpStatusCode int    `json:"-"`
}

Response Object

func (ShowRepositoryResponse) String

func (o ShowRepositoryResponse) String() string

type ShowRetentionRequest

type ShowRetentionRequest struct {
	ContentType ShowRetentionRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	RetentionId int32 `json:"retention_id"`
}

Request Object

func (ShowRetentionRequest) String

func (o ShowRetentionRequest) String() string

type ShowRetentionRequestContentType

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

func (ShowRetentionRequestContentType) MarshalJSON

func (c ShowRetentionRequestContentType) MarshalJSON() ([]byte, error)

func (*ShowRetentionRequestContentType) UnmarshalJSON

func (c *ShowRetentionRequestContentType) UnmarshalJSON(b []byte) error

type ShowRetentionRequestContentTypeEnum

type ShowRetentionRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ShowRetentionRequestContentType
	APPLICATION_JSON             ShowRetentionRequestContentType
}

func GetShowRetentionRequestContentTypeEnum

func GetShowRetentionRequestContentTypeEnum() ShowRetentionRequestContentTypeEnum

type ShowRetentionResponse

type ShowRetentionResponse struct {
	Algorithm *string `json:"algorithm,omitempty"`

	Id *int32 `json:"id,omitempty"`

	Rules *[]Rule `json:"rules,omitempty"`

	Scope          *string `json:"scope,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ShowRetentionResponse) String

func (o ShowRetentionResponse) String() string

type ShowSyncJobRequest

type ShowSyncJobRequest struct {
	ContentType ShowSyncJobRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Filter string `json:"filter"`
}

Request Object

func (ShowSyncJobRequest) String

func (o ShowSyncJobRequest) String() string

type ShowSyncJobRequestContentType

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

func (ShowSyncJobRequestContentType) MarshalJSON

func (c ShowSyncJobRequestContentType) MarshalJSON() ([]byte, error)

func (*ShowSyncJobRequestContentType) UnmarshalJSON

func (c *ShowSyncJobRequestContentType) UnmarshalJSON(b []byte) error

type ShowSyncJobRequestContentTypeEnum

type ShowSyncJobRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ShowSyncJobRequestContentType
	APPLICATION_JSON             ShowSyncJobRequestContentType
}

func GetShowSyncJobRequestContentTypeEnum

func GetShowSyncJobRequestContentTypeEnum() ShowSyncJobRequestContentTypeEnum

type ShowSyncJobResponse

type ShowSyncJobResponse struct {
	Body           *[]SyncJob `json:"body,omitempty"`
	HttpStatusCode int        `json:"-"`
}

Response Object

func (ShowSyncJobResponse) String

func (o ShowSyncJobResponse) String() string

type ShowTriggerRequest

type ShowTriggerRequest struct {
	ContentType ShowTriggerRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Trigger string `json:"trigger"`
}

Request Object

func (ShowTriggerRequest) String

func (o ShowTriggerRequest) String() string

type ShowTriggerRequestContentType

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

func (ShowTriggerRequestContentType) MarshalJSON

func (c ShowTriggerRequestContentType) MarshalJSON() ([]byte, error)

func (*ShowTriggerRequestContentType) UnmarshalJSON

func (c *ShowTriggerRequestContentType) UnmarshalJSON(b []byte) error

type ShowTriggerRequestContentTypeEnum

type ShowTriggerRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ShowTriggerRequestContentType
	APPLICATION_JSON             ShowTriggerRequestContentType
}

func GetShowTriggerRequestContentTypeEnum

func GetShowTriggerRequestContentTypeEnum() ShowTriggerRequestContentTypeEnum

type ShowTriggerResponse

type ShowTriggerResponse struct {
	Action *string `json:"action,omitempty"`

	AppType *string `json:"app_type,omitempty"`

	Application *string `json:"application,omitempty"`

	ClusterId *string `json:"cluster_id,omitempty"`

	ClusterName *string `json:"cluster_name,omitempty"`

	ClusterNs *string `json:"cluster_ns,omitempty"`

	Condition *string `json:"condition,omitempty"`

	Container *string `json:"container,omitempty"`

	CreatedAt *string `json:"created_at,omitempty"`

	CreatorName *string `json:"creator_name,omitempty"`

	Enable *string `json:"enable,omitempty"`

	Name *string `json:"name,omitempty"`

	TriggerHistory *[]TriggerHistories `json:"trigger_history,omitempty"`

	TriggerMode *string `json:"trigger_mode,omitempty"`

	TriggerType    *string `json:"trigger_type,omitempty"`
	HttpStatusCode int     `json:"-"`
}

Response Object

func (ShowTriggerResponse) String

func (o ShowTriggerResponse) String() string

type ShowUserRepositoryAuthRequest

type ShowUserRepositoryAuthRequest struct {
	ContentType ShowUserRepositoryAuthRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`
}

Request Object

func (ShowUserRepositoryAuthRequest) String

type ShowUserRepositoryAuthRequestContentType

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

func (ShowUserRepositoryAuthRequestContentType) MarshalJSON

func (*ShowUserRepositoryAuthRequestContentType) UnmarshalJSON

func (c *ShowUserRepositoryAuthRequestContentType) UnmarshalJSON(b []byte) error

type ShowUserRepositoryAuthRequestContentTypeEnum

type ShowUserRepositoryAuthRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 ShowUserRepositoryAuthRequestContentType
	APPLICATION_JSON             ShowUserRepositoryAuthRequestContentType
}

func GetShowUserRepositoryAuthRequestContentTypeEnum

func GetShowUserRepositoryAuthRequestContentTypeEnum() ShowUserRepositoryAuthRequestContentTypeEnum

type ShowUserRepositoryAuthResponse

type ShowUserRepositoryAuthResponse struct {
	Id *int32 `json:"id,omitempty"`

	Name *string `json:"name,omitempty"`

	SelfAuth *UserAuth `json:"self_auth,omitempty"`

	OthersAuths    *[]UserAuth `json:"others_auths,omitempty"`
	HttpStatusCode int         `json:"-"`
}

Response Object

func (ShowUserRepositoryAuthResponse) String

type SyncJob

type SyncJob struct {
	CreatedAt string `json:"createdAt"`

	DomainID string `json:"domainID"`

	DomainName string `json:"domainName"`

	Id int32 `json:"id"`

	Namespace string `json:"namespace"`

	Override bool `json:"override"`

	RemoteNamespace string `json:"remoteNamespace"`

	RemoteRegionId string `json:"remoteRegionId"`

	RepoName string `json:"repoName"`

	Status string `json:"status"`

	SyncOperatorId string `json:"syncOperatorId"`

	SyncOperatorName string `json:"syncOperatorName"`

	Tag string `json:"tag"`

	UpdatedAt string `json:"updatedAt"`
}

func (SyncJob) String

func (o SyncJob) String() string

type SyncRepo

type SyncRepo struct {
	CreatedAt string `json:"createdAt"`

	DomainID string `json:"domainID"`

	DomainName string `json:"domainName"`

	Id int32 `json:"id"`

	Namespace string `json:"namespace"`

	Override bool `json:"override"`

	RemoteNamespace string `json:"remoteNamespace"`

	RemoteRegionId string `json:"remoteRegionId"`

	RepoName string `json:"repoName"`

	SyncAuto bool `json:"syncAuto"`

	UpdatedAt string `json:"updatedAt"`
}

func (SyncRepo) String

func (o SyncRepo) String() string

type TagSelector

type TagSelector struct {
	Kind string `json:"kind"`

	Pattern string `json:"pattern"`
}

func (TagSelector) String

func (o TagSelector) String() string

type Trigger

type Trigger struct {
	Action string `json:"action"`

	AppType string `json:"app_type"`

	Application string `json:"application"`

	ClusterId string `json:"cluster_id"`

	ClusterName string `json:"cluster_name"`

	ClusterNs string `json:"cluster_ns"`

	Condition string `json:"condition"`

	Container string `json:"container"`

	CreatedAt string `json:"created_at"`

	CreatorName string `json:"creator_name"`

	Enable string `json:"enable"`

	Name string `json:"name"`

	TriggerHistory []TriggerHistories `json:"trigger_history"`

	TriggerMode string `json:"trigger_mode"`

	TriggerType string `json:"trigger_type"`
}

func (Trigger) String

func (o Trigger) String() string

type TriggerHistories

type TriggerHistories struct {
	Action string `json:"action"`

	AppType string `json:"app_type"`

	Application string `json:"application"`

	ClusterId string `json:"cluster_id"`

	ClusterName string `json:"cluster_name"`

	ClusterNs string `json:"cluster_ns"`

	Condition string `json:"condition"`

	Container string `json:"container"`

	CreatedAt string `json:"created_at"`

	CreatorName string `json:"creator_name"`

	Detail string `json:"detail"`

	Result string `json:"result"`

	Tag string `json:"tag"`
}

func (TriggerHistories) String

func (o TriggerHistories) String() string

type UpdateNamespaceAuthRequest

type UpdateNamespaceAuthRequest struct {
	ContentType UpdateNamespaceAuthRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Body *[]UserAuth `json:"body,omitempty"`
}

Request Object

func (UpdateNamespaceAuthRequest) String

type UpdateNamespaceAuthRequestContentType

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

func (UpdateNamespaceAuthRequestContentType) MarshalJSON

func (c UpdateNamespaceAuthRequestContentType) MarshalJSON() ([]byte, error)

func (*UpdateNamespaceAuthRequestContentType) UnmarshalJSON

func (c *UpdateNamespaceAuthRequestContentType) UnmarshalJSON(b []byte) error

type UpdateNamespaceAuthRequestContentTypeEnum

type UpdateNamespaceAuthRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 UpdateNamespaceAuthRequestContentType
	APPLICATION_JSON             UpdateNamespaceAuthRequestContentType
}

func GetUpdateNamespaceAuthRequestContentTypeEnum

func GetUpdateNamespaceAuthRequestContentTypeEnum() UpdateNamespaceAuthRequestContentTypeEnum

type UpdateNamespaceAuthResponse

type UpdateNamespaceAuthResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (UpdateNamespaceAuthResponse) String

type UpdateRepoDomainsRequest

type UpdateRepoDomainsRequest struct {
	ContentType UpdateRepoDomainsRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	AccessDomain string `json:"access_domain"`

	Body *UpdateRepoDomainsRequestBody `json:"body,omitempty"`
}

Request Object

func (UpdateRepoDomainsRequest) String

func (o UpdateRepoDomainsRequest) String() string

type UpdateRepoDomainsRequestBody

type UpdateRepoDomainsRequestBody struct {
	Permit string `json:"permit"`

	Deadline string `json:"deadline"`

	Description *string `json:"description,omitempty"`
}

func (UpdateRepoDomainsRequestBody) String

type UpdateRepoDomainsRequestContentType

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

func (UpdateRepoDomainsRequestContentType) MarshalJSON

func (c UpdateRepoDomainsRequestContentType) MarshalJSON() ([]byte, error)

func (*UpdateRepoDomainsRequestContentType) UnmarshalJSON

func (c *UpdateRepoDomainsRequestContentType) UnmarshalJSON(b []byte) error

type UpdateRepoDomainsRequestContentTypeEnum

type UpdateRepoDomainsRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 UpdateRepoDomainsRequestContentType
	APPLICATION_JSON             UpdateRepoDomainsRequestContentType
}

func GetUpdateRepoDomainsRequestContentTypeEnum

func GetUpdateRepoDomainsRequestContentTypeEnum() UpdateRepoDomainsRequestContentTypeEnum

type UpdateRepoDomainsResponse

type UpdateRepoDomainsResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (UpdateRepoDomainsResponse) String

func (o UpdateRepoDomainsResponse) String() string

type UpdateRepoRequest

type UpdateRepoRequest struct {
	ContentType UpdateRepoRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *UpdateRepoRequestBody `json:"body,omitempty"`
}

Request Object

func (UpdateRepoRequest) String

func (o UpdateRepoRequest) String() string

type UpdateRepoRequestBody

type UpdateRepoRequestBody struct {
	IsPublic bool `json:"is_public"`

	Category *UpdateRepoRequestBodyCategory `json:"category,omitempty"`

	Description *string `json:"description,omitempty"`
}

func (UpdateRepoRequestBody) String

func (o UpdateRepoRequestBody) String() string

type UpdateRepoRequestBodyCategory

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

func (UpdateRepoRequestBodyCategory) MarshalJSON

func (c UpdateRepoRequestBodyCategory) MarshalJSON() ([]byte, error)

func (*UpdateRepoRequestBodyCategory) UnmarshalJSON

func (c *UpdateRepoRequestBodyCategory) UnmarshalJSON(b []byte) error

type UpdateRepoRequestContentType

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

func (UpdateRepoRequestContentType) MarshalJSON

func (c UpdateRepoRequestContentType) MarshalJSON() ([]byte, error)

func (*UpdateRepoRequestContentType) UnmarshalJSON

func (c *UpdateRepoRequestContentType) UnmarshalJSON(b []byte) error

type UpdateRepoRequestContentTypeEnum

type UpdateRepoRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 UpdateRepoRequestContentType
	APPLICATION_JSON             UpdateRepoRequestContentType
}

func GetUpdateRepoRequestContentTypeEnum

func GetUpdateRepoRequestContentTypeEnum() UpdateRepoRequestContentTypeEnum

type UpdateRepoResponse

type UpdateRepoResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (UpdateRepoResponse) String

func (o UpdateRepoResponse) String() string

type UpdateRetentionRequest

type UpdateRetentionRequest struct {
	ContentType UpdateRetentionRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	RetentionId int32 `json:"retention_id"`

	Body *UpdateRetentionRequestBody `json:"body,omitempty"`
}

Request Object

func (UpdateRetentionRequest) String

func (o UpdateRetentionRequest) String() string

type UpdateRetentionRequestBody

type UpdateRetentionRequestBody struct {
	Algorithm string `json:"algorithm"`

	Rules []Rule `json:"rules"`
}

func (UpdateRetentionRequestBody) String

type UpdateRetentionRequestContentType

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

func (UpdateRetentionRequestContentType) MarshalJSON

func (c UpdateRetentionRequestContentType) MarshalJSON() ([]byte, error)

func (*UpdateRetentionRequestContentType) UnmarshalJSON

func (c *UpdateRetentionRequestContentType) UnmarshalJSON(b []byte) error

type UpdateRetentionRequestContentTypeEnum

type UpdateRetentionRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 UpdateRetentionRequestContentType
	APPLICATION_JSON             UpdateRetentionRequestContentType
}

func GetUpdateRetentionRequestContentTypeEnum

func GetUpdateRetentionRequestContentTypeEnum() UpdateRetentionRequestContentTypeEnum

type UpdateRetentionResponse

type UpdateRetentionResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (UpdateRetentionResponse) String

func (o UpdateRetentionResponse) String() string

type UpdateTriggerRequest

type UpdateTriggerRequest struct {
	ContentType UpdateTriggerRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Trigger string `json:"trigger"`

	Body *UpdateTriggerRequestBody `json:"body,omitempty"`
}

Request Object

func (UpdateTriggerRequest) String

func (o UpdateTriggerRequest) String() string

type UpdateTriggerRequestBody

type UpdateTriggerRequestBody struct {
	Enable string `json:"enable"`
}

func (UpdateTriggerRequestBody) String

func (o UpdateTriggerRequestBody) String() string

type UpdateTriggerRequestContentType

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

func (UpdateTriggerRequestContentType) MarshalJSON

func (c UpdateTriggerRequestContentType) MarshalJSON() ([]byte, error)

func (*UpdateTriggerRequestContentType) UnmarshalJSON

func (c *UpdateTriggerRequestContentType) UnmarshalJSON(b []byte) error

type UpdateTriggerRequestContentTypeEnum

type UpdateTriggerRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 UpdateTriggerRequestContentType
	APPLICATION_JSON             UpdateTriggerRequestContentType
}

func GetUpdateTriggerRequestContentTypeEnum

func GetUpdateTriggerRequestContentTypeEnum() UpdateTriggerRequestContentTypeEnum

type UpdateTriggerResponse

type UpdateTriggerResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (UpdateTriggerResponse) String

func (o UpdateTriggerResponse) String() string

type UpdateUserRepositoryAuthRequest

type UpdateUserRepositoryAuthRequest struct {
	ContentType UpdateUserRepositoryAuthRequestContentType `json:"Content-Type"`

	Namespace string `json:"namespace"`

	Repository string `json:"repository"`

	Body *[]UserAuth `json:"body,omitempty"`
}

Request Object

func (UpdateUserRepositoryAuthRequest) String

type UpdateUserRepositoryAuthRequestContentType

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

func (UpdateUserRepositoryAuthRequestContentType) MarshalJSON

func (*UpdateUserRepositoryAuthRequestContentType) UnmarshalJSON

type UpdateUserRepositoryAuthRequestContentTypeEnum

type UpdateUserRepositoryAuthRequestContentTypeEnum struct {
	APPLICATION_JSONCHARSETUTF_8 UpdateUserRepositoryAuthRequestContentType
	APPLICATION_JSON             UpdateUserRepositoryAuthRequestContentType
}

func GetUpdateUserRepositoryAuthRequestContentTypeEnum

func GetUpdateUserRepositoryAuthRequestContentTypeEnum() UpdateUserRepositoryAuthRequestContentTypeEnum

type UpdateUserRepositoryAuthResponse

type UpdateUserRepositoryAuthResponse struct {
	HttpStatusCode int `json:"-"`
}

Response Object

func (UpdateUserRepositoryAuthResponse) String

type UserAuth

type UserAuth struct {
	UserId string `json:"user_id"`

	UserName string `json:"user_name"`

	Auth UserAuthAuth `json:"auth"`
}

func (UserAuth) String

func (o UserAuth) String() string

type UserAuthAuth

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

func (UserAuthAuth) MarshalJSON

func (c UserAuthAuth) MarshalJSON() ([]byte, error)

func (*UserAuthAuth) UnmarshalJSON

func (c *UserAuthAuth) UnmarshalJSON(b []byte) error

type UserAuthAuthEnum

type UserAuthAuthEnum struct {
	E_7 UserAuthAuth
	E_3 UserAuthAuth
	E_1 UserAuthAuth
}

func GetUserAuthAuthEnum

func GetUserAuthAuthEnum() UserAuthAuthEnum

type VersionDetail

type VersionDetail struct {
	Id string `json:"id"`

	Links *Link `json:"links"`

	Version string `json:"version"`

	Status string `json:"status"`

	Updated string `json:"updated"`

	MinVersion string `json:"min_version"`
}

func (VersionDetail) String

func (o VersionDetail) String() string

Source Files

Jump to

Keyboard shortcuts

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