Documentation ¶
Overview ¶
Package api provides primitives to interact with the openapi HTTP API.
Code generated by github.com/deepmap/oapi-codegen version v1.11.1-0.20220912230023-4a1477f6a8ba DO NOT EDIT.
Index ¶
- Constants
- type Account
- type AccountSettings
- type DNSSettings
- type Event
- type EventActivityCode
- type GetApiUsersParams
- type Group
- type GroupMinimum
- type GroupPatchOperation
- type GroupPatchOperationOp
- type GroupPatchOperationPath
- type Nameserver
- type NameserverGroup
- type NameserverGroupPatchOperation
- type NameserverGroupPatchOperationOp
- type NameserverGroupPatchOperationPath
- type NameserverGroupRequest
- type NameserverNsType
- type PatchApiDnsNameserversIdJSONBody
- type PatchApiDnsNameserversIdJSONRequestBody
- type PatchApiGroupsIdJSONBody
- type PatchApiGroupsIdJSONRequestBody
- type PatchApiRoutesIdJSONBody
- type PatchApiRoutesIdJSONRequestBody
- type PatchMinimum
- type PatchMinimumOp
- type Peer
- type PeerMinimum
- type PersonalAccessToken
- type PersonalAccessTokenGenerated
- type PersonalAccessTokenRequest
- type Policy
- type PolicyMinimum
- type PolicyRule
- type PolicyRuleAction
- type PostApiDnsNameserversJSONRequestBody
- type PostApiGroupsJSONBody
- type PostApiGroupsJSONRequestBody
- type PostApiPoliciesJSONBody
- type PostApiPoliciesJSONRequestBody
- type PostApiRoutesJSONRequestBody
- type PostApiRulesJSONBody
- type PostApiRulesJSONRequestBody
- type PostApiSetupKeysJSONRequestBody
- type PostApiUsersJSONRequestBody
- type PostApiUsersUserIdTokensJSONRequestBody
- type PutApiAccountsIdJSONBody
- type PutApiAccountsIdJSONRequestBody
- type PutApiDnsNameserversIdJSONRequestBody
- type PutApiDnsSettingsJSONRequestBody
- type PutApiGroupsIdJSONBody
- type PutApiGroupsIdJSONRequestBody
- type PutApiPeersIdJSONBody
- type PutApiPeersIdJSONRequestBody
- type PutApiPoliciesIdJSONBody
- type PutApiPoliciesIdJSONRequestBody
- type PutApiRoutesIdJSONRequestBody
- type PutApiRulesIdJSONBody
- type PutApiRulesIdJSONRequestBody
- type PutApiSetupKeysIdJSONRequestBody
- type PutApiUsersIdJSONRequestBody
- type Route
- type RoutePatchOperation
- type RoutePatchOperationOp
- type RoutePatchOperationPath
- type RouteRequest
- type Rule
- type RuleMinimum
- type SetupKey
- type SetupKeyRequest
- type User
- type UserCreateRequest
- type UserRequest
- type UserStatus
Constants ¶
const (
BearerAuthScopes = "BearerAuth.Scopes"
)
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Account ¶ added in v0.14.0
type Account struct { // Id Account ID Id string `json:"id"` Settings AccountSettings `json:"settings"` }
Account defines model for Account.
type AccountSettings ¶ added in v0.14.0
type AccountSettings struct { // PeerLoginExpiration Period of time after which peer login expires (seconds). PeerLoginExpiration int `json:"peer_login_expiration"` // PeerLoginExpirationEnabled Enables or disables peer login expiration globally. After peer's login has expired the user has to log in (authenticate). Applies only to peers that were added by a user (interactive SSO login). PeerLoginExpirationEnabled bool `json:"peer_login_expiration_enabled"` }
AccountSettings defines model for AccountSettings.
type DNSSettings ¶ added in v0.12.0
type DNSSettings struct { // DisabledManagementGroups Groups whose DNS management is disabled DisabledManagementGroups []string `json:"disabled_management_groups"` }
DNSSettings defines model for DNSSettings.
type Event ¶ added in v0.12.0
type Event struct { // Activity The activity that occurred during the event Activity string `json:"activity"` // ActivityCode The string code of the activity that occurred during the event ActivityCode EventActivityCode `json:"activity_code"` // Id Event unique identifier Id string `json:"id"` // InitiatorId The ID of the initiator of the event. E.g., an ID of a user that triggered the event. InitiatorId string `json:"initiator_id"` // Meta The metadata of the event Meta map[string]string `json:"meta"` // TargetId The ID of the target of the event. E.g., an ID of the peer that a user removed. TargetId string `json:"target_id"` // Timestamp The date and time when the event occurred Timestamp time.Time `json:"timestamp"` }
Event defines model for Event.
type EventActivityCode ¶ added in v0.12.0
type EventActivityCode string
EventActivityCode The string code of the activity that occurred during the event
const ( EventActivityCodeAccountCreate EventActivityCode = "account.create" EventActivityCodeAccountSettingPeerLoginExpirationDisable EventActivityCode = "account.setting.peer.login.expiration.disable" EventActivityCodeAccountSettingPeerLoginExpirationEnable EventActivityCode = "account.setting.peer.login.expiration.enable" EventActivityCodeAccountSettingPeerLoginExpirationUpdate EventActivityCode = "account.setting.peer.login.expiration.update" EventActivityCodeDnsSettingDisabledManagementGroupAdd EventActivityCode = "dns.setting.disabled.management.group.add" EventActivityCodeDnsSettingDisabledManagementGroupDelete EventActivityCode = "dns.setting.disabled.management.group.delete" EventActivityCodeGroupAdd EventActivityCode = "group.add" EventActivityCodeGroupUpdate EventActivityCode = "group.update" EventActivityCodeNameserverGroupAdd EventActivityCode = "nameserver.group.add" EventActivityCodeNameserverGroupDelete EventActivityCode = "nameserver.group.delete" EventActivityCodeNameserverGroupUpdate EventActivityCode = "nameserver.group.update" EventActivityCodePeerLoginExpirationDisable EventActivityCode = "peer.login.expiration.disable" EventActivityCodePeerLoginExpirationEnable EventActivityCode = "peer.login.expiration.enable" EventActivityCodePeerRename EventActivityCode = "peer.rename" EventActivityCodePeerSshDisable EventActivityCode = "peer.ssh.disable" EventActivityCodePeerSshEnable EventActivityCode = "peer.ssh.enable" EventActivityCodePolicyAdd EventActivityCode = "policy.add" EventActivityCodePolicyDelete EventActivityCode = "policy.delete" EventActivityCodePolicyUpdate EventActivityCode = "policy.update" EventActivityCodeRouteAdd EventActivityCode = "route.add" EventActivityCodeRouteDelete EventActivityCode = "route.delete" EventActivityCodeRouteUpdate EventActivityCode = "route.update" EventActivityCodeRuleAdd EventActivityCode = "rule.add" EventActivityCodeRuleDelete EventActivityCode = "rule.delete" EventActivityCodeRuleUpdate EventActivityCode = "rule.update" EventActivityCodeSetupkeyAdd EventActivityCode = "setupkey.add" EventActivityCodeSetupkeyGroupAdd EventActivityCode = "setupkey.group.add" EventActivityCodeSetupkeyGroupDelete EventActivityCode = "setupkey.group.delete" EventActivityCodeSetupkeyOveruse EventActivityCode = "setupkey.overuse" EventActivityCodeSetupkeyPeerAdd EventActivityCode = "setupkey.peer.add" EventActivityCodeSetupkeyRevoke EventActivityCode = "setupkey.revoke" EventActivityCodeSetupkeyUpdate EventActivityCode = "setupkey.update" EventActivityCodeUserGroupAdd EventActivityCode = "user.group.add" EventActivityCodeUserGroupDelete EventActivityCode = "user.group.delete" EventActivityCodeUserInvite EventActivityCode = "user.invite" EventActivityCodeUserJoin EventActivityCode = "user.join" EventActivityCodeUserPeerAdd EventActivityCode = "user.peer.add" EventActivityCodeUserPeerDelete EventActivityCode = "user.peer.delete" EventActivityCodeUserRoleUpdate EventActivityCode = "user.role.update" )
Defines values for EventActivityCode.
type GetApiUsersParams ¶ added in v0.17.0
type GetApiUsersParams struct { // ServiceUser Filters users and returns either normal users or service users ServiceUser *bool `form:"service_user,omitempty" json:"service_user,omitempty"` }
GetApiUsersParams defines parameters for GetApiUsers.
type Group ¶
type Group struct { // Id Group ID Id string `json:"id"` // Name Group Name identifier Name string `json:"name"` // Peers List of peers object Peers []PeerMinimum `json:"peers"` // PeersCount Count of peers associated to the group PeersCount int `json:"peers_count"` }
Group defines model for Group.
type GroupMinimum ¶
type GroupMinimum struct { // Id Group ID Id string `json:"id"` // Name Group Name identifier Name string `json:"name"` // PeersCount Count of peers associated to the group PeersCount int `json:"peers_count"` }
GroupMinimum defines model for GroupMinimum.
type GroupPatchOperation ¶
type GroupPatchOperation struct { // Op Patch operation type Op GroupPatchOperationOp `json:"op"` // Path Group field to update in form /<field> Path GroupPatchOperationPath `json:"path"` // Value Values to be applied Value []string `json:"value"` }
GroupPatchOperation defines model for GroupPatchOperation.
type GroupPatchOperationOp ¶
type GroupPatchOperationOp string
GroupPatchOperationOp Patch operation type
const ( GroupPatchOperationOpAdd GroupPatchOperationOp = "add" GroupPatchOperationOpRemove GroupPatchOperationOp = "remove" GroupPatchOperationOpReplace GroupPatchOperationOp = "replace" )
Defines values for GroupPatchOperationOp.
type GroupPatchOperationPath ¶
type GroupPatchOperationPath string
GroupPatchOperationPath Group field to update in form /<field>
const ( GroupPatchOperationPathName GroupPatchOperationPath = "name" GroupPatchOperationPathPeers GroupPatchOperationPath = "peers" )
Defines values for GroupPatchOperationPath.
type Nameserver ¶ added in v0.9.8
type Nameserver struct { // Ip Nameserver IP Ip string `json:"ip"` // NsType Nameserver Type NsType NameserverNsType `json:"ns_type"` // Port Nameserver Port Port int `json:"port"` }
Nameserver defines model for Nameserver.
type NameserverGroup ¶ added in v0.9.8
type NameserverGroup struct { // Description Nameserver group description Description string `json:"description"` // Domains Nameserver group domain list Domains []string `json:"domains"` // Enabled Nameserver group status Enabled bool `json:"enabled"` // Groups Nameserver group tag groups Groups []string `json:"groups"` // Id Nameserver group ID Id string `json:"id"` // Name Nameserver group name Name string `json:"name"` // Nameservers Nameserver group Nameservers []Nameserver `json:"nameservers"` // Primary Nameserver group primary status Primary bool `json:"primary"` }
NameserverGroup defines model for NameserverGroup.
type NameserverGroupPatchOperation ¶ added in v0.9.8
type NameserverGroupPatchOperation struct { // Op Patch operation type Op NameserverGroupPatchOperationOp `json:"op"` // Path Nameserver group field to update in form /<field> Path NameserverGroupPatchOperationPath `json:"path"` // Value Values to be applied Value []string `json:"value"` }
NameserverGroupPatchOperation defines model for NameserverGroupPatchOperation.
type NameserverGroupPatchOperationOp ¶ added in v0.9.8
type NameserverGroupPatchOperationOp string
NameserverGroupPatchOperationOp Patch operation type
const ( NameserverGroupPatchOperationOpAdd NameserverGroupPatchOperationOp = "add" NameserverGroupPatchOperationOpRemove NameserverGroupPatchOperationOp = "remove" NameserverGroupPatchOperationOpReplace NameserverGroupPatchOperationOp = "replace" )
Defines values for NameserverGroupPatchOperationOp.
type NameserverGroupPatchOperationPath ¶ added in v0.9.8
type NameserverGroupPatchOperationPath string
NameserverGroupPatchOperationPath Nameserver group field to update in form /<field>
const ( NameserverGroupPatchOperationPathDescription NameserverGroupPatchOperationPath = "description" NameserverGroupPatchOperationPathDomains NameserverGroupPatchOperationPath = "domains" NameserverGroupPatchOperationPathEnabled NameserverGroupPatchOperationPath = "enabled" NameserverGroupPatchOperationPathGroups NameserverGroupPatchOperationPath = "groups" NameserverGroupPatchOperationPathName NameserverGroupPatchOperationPath = "name" NameserverGroupPatchOperationPathNameservers NameserverGroupPatchOperationPath = "nameservers" NameserverGroupPatchOperationPathPrimary NameserverGroupPatchOperationPath = "primary" )
Defines values for NameserverGroupPatchOperationPath.
type NameserverGroupRequest ¶ added in v0.9.8
type NameserverGroupRequest struct { // Description Nameserver group description Description string `json:"description"` // Domains Nameserver group domain list Domains []string `json:"domains"` // Enabled Nameserver group status Enabled bool `json:"enabled"` // Groups Nameserver group tag groups Groups []string `json:"groups"` // Name Nameserver group name Name string `json:"name"` // Nameservers Nameserver group Nameservers []Nameserver `json:"nameservers"` // Primary Nameserver group primary status Primary bool `json:"primary"` }
NameserverGroupRequest defines model for NameserverGroupRequest.
type NameserverNsType ¶ added in v0.9.8
type NameserverNsType string
NameserverNsType Nameserver Type
const (
NameserverNsTypeUdp NameserverNsType = "udp"
)
Defines values for NameserverNsType.
type PatchApiDnsNameserversIdJSONBody ¶ added in v0.9.8
type PatchApiDnsNameserversIdJSONBody = []NameserverGroupPatchOperation
PatchApiDnsNameserversIdJSONBody defines parameters for PatchApiDnsNameserversId.
type PatchApiDnsNameserversIdJSONRequestBody ¶ added in v0.9.8
type PatchApiDnsNameserversIdJSONRequestBody = PatchApiDnsNameserversIdJSONBody
PatchApiDnsNameserversIdJSONRequestBody defines body for PatchApiDnsNameserversId for application/json ContentType.
type PatchApiGroupsIdJSONBody ¶
type PatchApiGroupsIdJSONBody = []GroupPatchOperation
PatchApiGroupsIdJSONBody defines parameters for PatchApiGroupsId.
type PatchApiGroupsIdJSONRequestBody ¶
type PatchApiGroupsIdJSONRequestBody = PatchApiGroupsIdJSONBody
PatchApiGroupsIdJSONRequestBody defines body for PatchApiGroupsId for application/json ContentType.
type PatchApiRoutesIdJSONBody ¶ added in v0.8.9
type PatchApiRoutesIdJSONBody = []RoutePatchOperation
PatchApiRoutesIdJSONBody defines parameters for PatchApiRoutesId.
type PatchApiRoutesIdJSONRequestBody ¶ added in v0.8.9
type PatchApiRoutesIdJSONRequestBody = PatchApiRoutesIdJSONBody
PatchApiRoutesIdJSONRequestBody defines body for PatchApiRoutesId for application/json ContentType.
type PatchMinimum ¶ added in v0.8.9
type PatchMinimum struct { // Op Patch operation type Op PatchMinimumOp `json:"op"` // Value Values to be applied Value []string `json:"value"` }
PatchMinimum defines model for PatchMinimum.
type PatchMinimumOp ¶ added in v0.8.9
type PatchMinimumOp string
PatchMinimumOp Patch operation type
const ( PatchMinimumOpAdd PatchMinimumOp = "add" PatchMinimumOpRemove PatchMinimumOp = "remove" PatchMinimumOpReplace PatchMinimumOp = "replace" )
Defines values for PatchMinimumOp.
type Peer ¶
type Peer struct { // Connected Peer to Management connection status Connected bool `json:"connected"` // DnsLabel Peer's DNS label is the parsed peer name for domain resolution. It is used to form an FQDN by appending the account's domain to the peer label. e.g. peer-dns-label.netbird.cloud DnsLabel string `json:"dns_label"` // Groups Groups that the peer belongs to Groups []GroupMinimum `json:"groups"` // Hostname Hostname of the machine Hostname string `json:"hostname"` // Id Peer ID Id string `json:"id"` // Ip Peer's IP address Ip string `json:"ip"` // LastLogin Last time this peer performed log in (authentication). E.g., user authenticated. LastLogin time.Time `json:"last_login"` // LastSeen Last time peer connected to Netbird's management service LastSeen time.Time `json:"last_seen"` // LoginExpirationEnabled Indicates whether peer login expiration has been enabled or not LoginExpirationEnabled bool `json:"login_expiration_enabled"` // LoginExpired Indicates whether peer's login expired or not LoginExpired bool `json:"login_expired"` // Name Peer's hostname Name string `json:"name"` // Os Peer's operating system and version Os string `json:"os"` // SshEnabled Indicates whether SSH server is enabled on this peer SshEnabled bool `json:"ssh_enabled"` // UiVersion Peer's desktop UI version UiVersion *string `json:"ui_version,omitempty"` // UserId User ID of the user that enrolled this peer UserId *string `json:"user_id,omitempty"` // Version Peer's daemon or cli version Version string `json:"version"` }
Peer defines model for Peer.
type PeerMinimum ¶
type PeerMinimum struct { // Id Peer ID Id string `json:"id"` // Name Peer's hostname Name string `json:"name"` }
PeerMinimum defines model for PeerMinimum.
type PersonalAccessToken ¶ added in v0.14.6
type PersonalAccessToken struct { // CreatedAt Date the token was created CreatedAt time.Time `json:"created_at"` // CreatedBy User ID of the user who created the token CreatedBy string `json:"created_by"` // ExpirationDate Date the token expires ExpirationDate time.Time `json:"expiration_date"` // Id ID of a token Id string `json:"id"` // LastUsed Date the token was last used LastUsed *time.Time `json:"last_used,omitempty"` // Name Name of the token Name string `json:"name"` }
PersonalAccessToken defines model for PersonalAccessToken.
type PersonalAccessTokenGenerated ¶ added in v0.14.6
type PersonalAccessTokenGenerated struct { PersonalAccessToken PersonalAccessToken `json:"personal_access_token"` // PlainToken Plain text representation of the generated token PlainToken string `json:"plain_token"` }
PersonalAccessTokenGenerated defines model for PersonalAccessTokenGenerated.
type PersonalAccessTokenRequest ¶ added in v0.14.6
type PersonalAccessTokenRequest struct { // ExpiresIn Expiration in days ExpiresIn int `json:"expires_in"` // Name Name of the token Name string `json:"name"` }
PersonalAccessTokenRequest defines model for PersonalAccessTokenRequest.
type Policy ¶ added in v0.14.5
type Policy struct { // Description Policy friendly description Description string `json:"description"` // Enabled Policy status Enabled bool `json:"enabled"` // Id Policy ID Id string `json:"id"` // Name Policy name identifier Name string `json:"name"` // Query Policy Rego query Query string `json:"query"` // Rules Policy rule object for policy UI editor Rules []PolicyRule `json:"rules"` }
Policy defines model for Policy.
type PolicyMinimum ¶ added in v0.14.5
type PolicyMinimum struct { // Description Policy friendly description Description string `json:"description"` // Enabled Policy status Enabled bool `json:"enabled"` // Name Policy name identifier Name string `json:"name"` // Query Policy Rego query Query string `json:"query"` // Rules Policy rule object for policy UI editor Rules []PolicyRule `json:"rules"` }
PolicyMinimum defines model for PolicyMinimum.
type PolicyRule ¶ added in v0.14.5
type PolicyRule struct { // Action policy accept or drops packets Action PolicyRuleAction `json:"action"` // Description Rule friendly description Description *string `json:"description,omitempty"` // Destinations policy destination groups Destinations []GroupMinimum `json:"destinations"` // Enabled Rules status Enabled bool `json:"enabled"` // Id Rule ID Id *string `json:"id,omitempty"` // Name Rule name identifier Name string `json:"name"` // Sources policy source groups Sources []GroupMinimum `json:"sources"` }
PolicyRule defines model for PolicyRule.
type PolicyRuleAction ¶ added in v0.14.5
type PolicyRuleAction string
PolicyRuleAction policy accept or drops packets
const ( PolicyRuleActionAccept PolicyRuleAction = "accept" PolicyRuleActionDrop PolicyRuleAction = "drop" )
Defines values for PolicyRuleAction.
type PostApiDnsNameserversJSONRequestBody ¶ added in v0.9.8
type PostApiDnsNameserversJSONRequestBody = NameserverGroupRequest
PostApiDnsNameserversJSONRequestBody defines body for PostApiDnsNameservers for application/json ContentType.
type PostApiGroupsJSONBody ¶
type PostApiGroupsJSONBody struct { Name string `json:"name"` Peers *[]string `json:"peers,omitempty"` }
PostApiGroupsJSONBody defines parameters for PostApiGroups.
type PostApiGroupsJSONRequestBody ¶
type PostApiGroupsJSONRequestBody PostApiGroupsJSONBody
PostApiGroupsJSONRequestBody defines body for PostApiGroups for application/json ContentType.
type PostApiPoliciesJSONBody ¶ added in v0.14.5
type PostApiPoliciesJSONBody = PolicyMinimum
PostApiPoliciesJSONBody defines parameters for PostApiPolicies.
type PostApiPoliciesJSONRequestBody ¶ added in v0.14.5
type PostApiPoliciesJSONRequestBody = PostApiPoliciesJSONBody
PostApiPoliciesJSONRequestBody defines body for PostApiPolicies for application/json ContentType.
type PostApiRoutesJSONRequestBody ¶ added in v0.8.9
type PostApiRoutesJSONRequestBody = RouteRequest
PostApiRoutesJSONRequestBody defines body for PostApiRoutes for application/json ContentType.
type PostApiRulesJSONBody ¶
type PostApiRulesJSONBody struct { // Description Rule friendly description Description string `json:"description"` Destinations *[]string `json:"destinations,omitempty"` // Disabled Rules status Disabled bool `json:"disabled"` // Flow Rule flow, currently, only "bidirect" for bi-directional traffic is accepted Flow string `json:"flow"` // Name Rule name identifier Name string `json:"name"` Sources *[]string `json:"sources,omitempty"` }
PostApiRulesJSONBody defines parameters for PostApiRules.
type PostApiRulesJSONRequestBody ¶
type PostApiRulesJSONRequestBody PostApiRulesJSONBody
PostApiRulesJSONRequestBody defines body for PostApiRules for application/json ContentType.
type PostApiSetupKeysJSONRequestBody ¶
type PostApiSetupKeysJSONRequestBody = SetupKeyRequest
PostApiSetupKeysJSONRequestBody defines body for PostApiSetupKeys for application/json ContentType.
type PostApiUsersJSONRequestBody ¶ added in v0.9.8
type PostApiUsersJSONRequestBody = UserCreateRequest
PostApiUsersJSONRequestBody defines body for PostApiUsers for application/json ContentType.
type PostApiUsersUserIdTokensJSONRequestBody ¶ added in v0.14.6
type PostApiUsersUserIdTokensJSONRequestBody = PersonalAccessTokenRequest
PostApiUsersUserIdTokensJSONRequestBody defines body for PostApiUsersUserIdTokens for application/json ContentType.
type PutApiAccountsIdJSONBody ¶ added in v0.14.0
type PutApiAccountsIdJSONBody struct {
Settings AccountSettings `json:"settings"`
}
PutApiAccountsIdJSONBody defines parameters for PutApiAccountsId.
type PutApiAccountsIdJSONRequestBody ¶ added in v0.14.0
type PutApiAccountsIdJSONRequestBody PutApiAccountsIdJSONBody
PutApiAccountsIdJSONRequestBody defines body for PutApiAccountsId for application/json ContentType.
type PutApiDnsNameserversIdJSONRequestBody ¶ added in v0.9.8
type PutApiDnsNameserversIdJSONRequestBody = NameserverGroupRequest
PutApiDnsNameserversIdJSONRequestBody defines body for PutApiDnsNameserversId for application/json ContentType.
type PutApiDnsSettingsJSONRequestBody ¶ added in v0.12.0
type PutApiDnsSettingsJSONRequestBody = DNSSettings
PutApiDnsSettingsJSONRequestBody defines body for PutApiDnsSettings for application/json ContentType.
type PutApiGroupsIdJSONBody ¶
type PutApiGroupsIdJSONBody struct { Name *string `json:"Name,omitempty"` Peers *[]string `json:"Peers,omitempty"` }
PutApiGroupsIdJSONBody defines parameters for PutApiGroupsId.
type PutApiGroupsIdJSONRequestBody ¶
type PutApiGroupsIdJSONRequestBody PutApiGroupsIdJSONBody
PutApiGroupsIdJSONRequestBody defines body for PutApiGroupsId for application/json ContentType.
type PutApiPeersIdJSONBody ¶
type PutApiPeersIdJSONBody struct { LoginExpirationEnabled bool `json:"login_expiration_enabled"` Name string `json:"name"` SshEnabled bool `json:"ssh_enabled"` }
PutApiPeersIdJSONBody defines parameters for PutApiPeersId.
type PutApiPeersIdJSONRequestBody ¶
type PutApiPeersIdJSONRequestBody PutApiPeersIdJSONBody
PutApiPeersIdJSONRequestBody defines body for PutApiPeersId for application/json ContentType.
type PutApiPoliciesIdJSONBody ¶ added in v0.14.5
type PutApiPoliciesIdJSONBody = PolicyMinimum
PutApiPoliciesIdJSONBody defines parameters for PutApiPoliciesId.
type PutApiPoliciesIdJSONRequestBody ¶ added in v0.14.5
type PutApiPoliciesIdJSONRequestBody = PutApiPoliciesIdJSONBody
PutApiPoliciesIdJSONRequestBody defines body for PutApiPoliciesId for application/json ContentType.
type PutApiRoutesIdJSONRequestBody ¶ added in v0.8.9
type PutApiRoutesIdJSONRequestBody = RouteRequest
PutApiRoutesIdJSONRequestBody defines body for PutApiRoutesId for application/json ContentType.
type PutApiRulesIdJSONBody ¶
type PutApiRulesIdJSONBody struct { // Description Rule friendly description Description string `json:"description"` Destinations *[]string `json:"destinations,omitempty"` // Disabled Rules status Disabled bool `json:"disabled"` // Flow Rule flow, currently, only "bidirect" for bi-directional traffic is accepted Flow string `json:"flow"` // Name Rule name identifier Name string `json:"name"` Sources *[]string `json:"sources,omitempty"` }
PutApiRulesIdJSONBody defines parameters for PutApiRulesId.
type PutApiRulesIdJSONRequestBody ¶
type PutApiRulesIdJSONRequestBody PutApiRulesIdJSONBody
PutApiRulesIdJSONRequestBody defines body for PutApiRulesId for application/json ContentType.
type PutApiSetupKeysIdJSONRequestBody ¶
type PutApiSetupKeysIdJSONRequestBody = SetupKeyRequest
PutApiSetupKeysIdJSONRequestBody defines body for PutApiSetupKeysId for application/json ContentType.
type PutApiUsersIdJSONRequestBody ¶ added in v0.9.4
type PutApiUsersIdJSONRequestBody = UserRequest
PutApiUsersIdJSONRequestBody defines body for PutApiUsersId for application/json ContentType.
type Route ¶ added in v0.8.9
type Route struct { // Description Route description Description string `json:"description"` // Enabled Route status Enabled bool `json:"enabled"` // Groups Route group tag groups Groups []string `json:"groups"` // Id Route Id Id string `json:"id"` // Masquerade Indicate if peer should masquerade traffic to this route's prefix Masquerade bool `json:"masquerade"` // Metric Route metric number. Lowest number has higher priority Metric int `json:"metric"` // Network Network range in CIDR format Network string `json:"network"` // NetworkId Route network identifier, to group HA routes NetworkId string `json:"network_id"` // NetworkType Network type indicating if it is IPv4 or IPv6 NetworkType string `json:"network_type"` // Peer Peer Identifier associated with route Peer string `json:"peer"` }
Route defines model for Route.
type RoutePatchOperation ¶ added in v0.8.9
type RoutePatchOperation struct { // Op Patch operation type Op RoutePatchOperationOp `json:"op"` // Path Route field to update in form /<field> Path RoutePatchOperationPath `json:"path"` // Value Values to be applied Value []string `json:"value"` }
RoutePatchOperation defines model for RoutePatchOperation.
type RoutePatchOperationOp ¶ added in v0.8.9
type RoutePatchOperationOp string
RoutePatchOperationOp Patch operation type
const ( RoutePatchOperationOpAdd RoutePatchOperationOp = "add" RoutePatchOperationOpRemove RoutePatchOperationOp = "remove" RoutePatchOperationOpReplace RoutePatchOperationOp = "replace" )
Defines values for RoutePatchOperationOp.
type RoutePatchOperationPath ¶ added in v0.8.9
type RoutePatchOperationPath string
RoutePatchOperationPath Route field to update in form /<field>
const ( RoutePatchOperationPathDescription RoutePatchOperationPath = "description" RoutePatchOperationPathEnabled RoutePatchOperationPath = "enabled" RoutePatchOperationPathGroups RoutePatchOperationPath = "groups" RoutePatchOperationPathMasquerade RoutePatchOperationPath = "masquerade" RoutePatchOperationPathMetric RoutePatchOperationPath = "metric" RoutePatchOperationPathNetwork RoutePatchOperationPath = "network" RoutePatchOperationPathNetworkId RoutePatchOperationPath = "network_id" RoutePatchOperationPathPeer RoutePatchOperationPath = "peer" )
Defines values for RoutePatchOperationPath.
type RouteRequest ¶ added in v0.8.9
type RouteRequest struct { // Description Route description Description string `json:"description"` // Enabled Route status Enabled bool `json:"enabled"` // Groups Route group tag groups Groups []string `json:"groups"` // Masquerade Indicate if peer should masquerade traffic to this route's prefix Masquerade bool `json:"masquerade"` // Metric Route metric number. Lowest number has higher priority Metric int `json:"metric"` // Network Network range in CIDR format Network string `json:"network"` // NetworkId Route network identifier, to group HA routes NetworkId string `json:"network_id"` // Peer Peer Identifier associated with route Peer string `json:"peer"` }
RouteRequest defines model for RouteRequest.
type Rule ¶
type Rule struct { // Description Rule friendly description Description string `json:"description"` // Destinations Rule destination groups Destinations []GroupMinimum `json:"destinations"` // Disabled Rules status Disabled bool `json:"disabled"` // Flow Rule flow, currently, only "bidirect" for bi-directional traffic is accepted Flow string `json:"flow"` // Id Rule ID Id string `json:"id"` // Name Rule name identifier Name string `json:"name"` // Sources Rule source groups Sources []GroupMinimum `json:"sources"` }
Rule defines model for Rule.
type RuleMinimum ¶
type RuleMinimum struct { // Description Rule friendly description Description string `json:"description"` // Disabled Rules status Disabled bool `json:"disabled"` // Flow Rule flow, currently, only "bidirect" for bi-directional traffic is accepted Flow string `json:"flow"` // Name Rule name identifier Name string `json:"name"` }
RuleMinimum defines model for RuleMinimum.
type SetupKey ¶
type SetupKey struct { // AutoGroups Setup key groups to auto-assign to peers registered with this key AutoGroups []string `json:"auto_groups"` // Expires Setup Key expiration date Expires time.Time `json:"expires"` // Id Setup Key ID Id string `json:"id"` // Key Setup Key value Key string `json:"key"` // LastUsed Setup key last usage date LastUsed time.Time `json:"last_used"` // Name Setup key name identifier Name string `json:"name"` // Revoked Setup key revocation status Revoked bool `json:"revoked"` // State Setup key status, "valid", "overused","expired" or "revoked" State string `json:"state"` // Type Setup key type, one-off for single time usage and reusable Type string `json:"type"` // UpdatedAt Setup key last update date UpdatedAt time.Time `json:"updated_at"` // UsageLimit A number of times this key can be used. The value of 0 indicates the unlimited usage. UsageLimit int `json:"usage_limit"` // UsedTimes Usage count of setup key UsedTimes int `json:"used_times"` // Valid Setup key validity status Valid bool `json:"valid"` }
SetupKey defines model for SetupKey.
type SetupKeyRequest ¶
type SetupKeyRequest struct { // AutoGroups Setup key groups to auto-assign to peers registered with this key AutoGroups []string `json:"auto_groups"` // ExpiresIn Expiration time in seconds ExpiresIn int `json:"expires_in"` // Name Setup Key name Name string `json:"name"` // Revoked Setup key revocation status Revoked bool `json:"revoked"` // Type Setup key type, one-off for single time usage and reusable Type string `json:"type"` // UsageLimit A number of times this key can be used. The value of 0 indicates the unlimited usage. UsageLimit int `json:"usage_limit"` }
SetupKeyRequest defines model for SetupKeyRequest.
type User ¶
type User struct { // AutoGroups Groups to auto-assign to peers registered by this user AutoGroups []string `json:"auto_groups"` // Email User's email address Email string `json:"email"` // Id User ID Id string `json:"id"` // IsCurrent Is true if authenticated user is the same as this user IsCurrent *bool `json:"is_current,omitempty"` // IsServiceUser Is true if this user is a service user IsServiceUser *bool `json:"is_service_user,omitempty"` // Name User's name from idp provider Name string `json:"name"` // Role User's NetBird account role Role string `json:"role"` // Status User's status Status UserStatus `json:"status"` }
User defines model for User.
type UserCreateRequest ¶ added in v0.9.8
type UserCreateRequest struct { // AutoGroups Groups to auto-assign to peers registered by this user AutoGroups []string `json:"auto_groups"` // Email User's Email to send invite to Email *string `json:"email,omitempty"` // IsServiceUser Is true if this user is a service user IsServiceUser bool `json:"is_service_user"` // Name User's full name Name *string `json:"name,omitempty"` // Role User's NetBird account role Role string `json:"role"` }
UserCreateRequest defines model for UserCreateRequest.
type UserRequest ¶ added in v0.9.4
type UserRequest struct { // AutoGroups Groups to auto-assign to peers registered by this user AutoGroups []string `json:"auto_groups"` // Role User's NetBird account role Role string `json:"role"` }
UserRequest defines model for UserRequest.
type UserStatus ¶ added in v0.9.8
type UserStatus string
UserStatus User's status
const ( UserStatusActive UserStatus = "active" UserStatusDisabled UserStatus = "disabled" UserStatusInvited UserStatus = "invited" )
Defines values for UserStatus.