ContentRegistriesHarborInfo

The Harbor.Info structure contains detailed information about a running Harbor registry.


Properties

array of string
cert_chain Required

Harbor certificate chain in base64 format.


string as uri
ui_access_url Required

URL to access the UI of the registry.


string as date-time
creation_time Required

The date and time when the harbor registry was created.


garbage_collection Required

Garbage collection information for the registry.


health Required

Health status of the container registry.


storage Required

Storage information associated with the registry.


string
version Required

Version of the registry.


string
namespace Optional

Identifier of the Harbor namespace in case it is created in a Kubernetes environment. If unset, no Kubernetes namespace is created for the Harbor. When clients pass a value of this structure as a parameter, the field must be an identifier for the resource type: NamespaceInstance. When operations return a value of this structure as a result, the field will be an identifier for the resource type: NamespaceInstance.


string
cluster Optional

Identifier of the cluster. If unset, container registry is not created on the cluster specified by Harbor.CreateSpec.cluster. When clients pass a value of this structure as a parameter, the field must be an identifier for the resource type: ClusterComputeResource. When operations return a value of this structure as a result, the field will be an identifier for the resource type: ClusterComputeResource.

JSON Example

{
	"cert_chain": [
		"string"
	],
	"creation_time": "string",
	"garbage_collection": {
		"type": "NONE"
	},
	"health": {
		"status": "STARTING"
	},
	"storage": [
		{
			"capacity": 0,
			"policy": "string",
			"used": 0
		}
	],
	"ui_access_url": "string",
	"version": "string"
}
Returned By

Get Registries Harbor

Feedback

Was this page helpful?