Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClusterControlPlane ¶
type ClusterControlPlane struct { // The server will populate this field when returing the resource. Ignored on PUT and POST. Links []common.ResourceLink `json:"_links,omitempty"` // Schema for this resource Schema string `json:"_schema,omitempty"` // Link to this resource Self *common.SelfResourceLink `json:"_self,omitempty"` // The _revision property describes the current revision of the resource. To prevent clients from overwriting each other's changes, PUT operations must include the current _revision of the resource, which clients should obtain by issuing a GET operation. If the _revision provided in a PUT request is missing or stale, the operation will be rejected. Revision int32 `json:"_revision,omitempty"` // Timestamp of resource creation CreateTime int64 `json:"_create_time,omitempty"` // ID of the user who created this resource CreateUser string `json:"_create_user,omitempty"` // Timestamp of last modification LastModifiedTime int64 `json:"_last_modified_time,omitempty"` // ID of the user who last modified this resource LastModifiedUser string `json:"_last_modified_user,omitempty"` // Protection status is one of the following: PROTECTED - the client who retrieved the entity is not allowed to modify it. NOT_PROTECTED - the client who retrieved the entity is allowed to modify it REQUIRE_OVERRIDE - the client who retrieved the entity is a super user and can modify it, but only when providing the request header X-Allow-Overwrite=true. UNKNOWN - the _protection field could not be determined for this entity. Protection string `json:"_protection,omitempty"` // Indicates system owned resource SystemOwned bool `json:"_system_owned,omitempty"` // Description of this resource Description string `json:"description,omitempty"` // Defaults to ID if not set DisplayName string `json:"display_name,omitempty"` // Unique identifier of this resource Id string `json:"id,omitempty"` // The type of this resource. ResourceType string `json:"resource_type,omitempty"` // Opaque identifiers meaningful to the API user Tags []common.Tag `json:"tags,omitempty"` // Path of its parent ParentPath string `json:"parent_path,omitempty"` // Absolute path of this object Path string `json:"path,omitempty"` // Path relative from its parent RelativePath string `json:"relative_path,omitempty"` // This is a UUID generated by the GM/LM to uniquely identify entites in a federated environment. For entities that are stretched across multiple sites, the same ID will be used on all the stretched sites. UniqueId string `json:"unique_id,omitempty"` // subtree for this type within policy tree containing nested elements. // Intent objects are not directly deleted from the system when a delete is invoked on them. They are marked for deletion and only when all the realized entities for that intent object gets deleted, the intent object is deleted. Objects that are marked for deletion are not returned in GET call. One can use the search API to get these objects. MarkedForDelete bool `json:"marked_for_delete,omitempty"` // Global intent objects cannot be modified by the user. However, certain global intent objects can be overridden locally by use of this property. In such cases, the overridden local values take precedence over the globally defined values for the properties. Overridden bool `json:"overridden,omitempty"` // This property is used to identify the cluster control plane in NSX-T. This id should assigned by NSX-T in create process. NodeId string `json:"node_id,omitempty"` // This property should be afford in create process for VHC module requirement. VhcPath string `json:"vhc_path,omitempty"` // certificate for this cluster control plane Certificate string `json:"certificate,omitempty"` }
The Cluster Control Plane infomation.
type ClusterControlPlaneListResult ¶
type ClusterControlPlaneListResult struct { // The server will populate this field when returing the resource. Ignored on PUT and POST. Links []common.ResourceLink `json:"_links,omitempty"` // Schema for this resource Schema string `json:"_schema,omitempty"` // Link to this resource Self *common.SelfResourceLink `json:"_self,omitempty"` // Opaque cursor to be used for getting next page of records (supplied by current result page) Cursor string `json:"cursor,omitempty"` // Count of results found (across all pages), set only on first page ResultCount int64 `json:"result_count,omitempty"` // If true, results are sorted in ascending order SortAscending bool `json:"sort_ascending,omitempty"` // Field by which records are sorted SortBy string `json:"sort_by,omitempty"` // ClusterControlPlane Results Results []ClusterControlPlane `json:"results,omitempty"` }
This property include all cluster control planes in NSX-T.
Click to show internal directories.
Click to hide internal directories.