feat: Add new replication field to better show queue sync progress (#480)
* chore: update openapi * feat: update replication field names to match influx changes * feat: add new field to show replication queue sync progress * chore: update to master openapi
This commit is contained in:
@ -16,17 +16,17 @@ import (
|
||||
|
||||
// LegacyAuthorizationPostRequest struct for LegacyAuthorizationPostRequest
|
||||
type LegacyAuthorizationPostRequest struct {
|
||||
// Status of the token. If `inactive`, requests using the token will be rejected.
|
||||
// Status of the token. If `inactive`, InfluxDB rejects requests that use the token.
|
||||
Status *string `json:"status,omitempty" yaml:"status,omitempty"`
|
||||
// A description of the token.
|
||||
Description *string `json:"description,omitempty" yaml:"description,omitempty"`
|
||||
// The ID of the organization that the authorization is scoped to.
|
||||
// The organization ID. Identifies the organization that the authorization is scoped to.
|
||||
OrgID string `json:"orgID" yaml:"orgID"`
|
||||
// The ID of the user that the authorization is scoped to.
|
||||
// The user ID. Identifies the user that the authorization is scoped to.
|
||||
UserID *string `json:"userID,omitempty" yaml:"userID,omitempty"`
|
||||
// A name that you provide for the authorization.
|
||||
// The name that you provide for the authorization.
|
||||
Token *string `json:"token,omitempty" yaml:"token,omitempty"`
|
||||
// A list of permissions that provide `read` and `write` access to organization resources. An authorization must contain at least one permission.
|
||||
// The list of permissions that provide `read` and `write` access to organization resources. An authorization must contain at least one permission.
|
||||
Permissions []Permission `json:"permissions" yaml:"permissions"`
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user