shared

package
v3.0.1 Latest Latest
Warning

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

Go to latest
Published: Sep 23, 2024 License: Apache-2.0 Imports: 3 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type ASN

type ASN = int64

type ASNParam

type ASNParam = int64

type AuditLog

type AuditLog struct {
	// A string that uniquely identifies the audit log.
	ID     string         `json:"id"`
	Action AuditLogAction `json:"action"`
	Actor  AuditLogActor  `json:"actor"`
	// The source of the event.
	Interface string `json:"interface"`
	// An object which can lend more context to the action being logged. This is a
	// flexible value and varies between different actions.
	Metadata interface{} `json:"metadata"`
	// The new value of the resource that was modified.
	NewValue string `json:"newValue"`
	// The value of the resource before it was modified.
	OldValue string           `json:"oldValue"`
	Owner    AuditLogOwner    `json:"owner"`
	Resource AuditLogResource `json:"resource"`
	// A UTC RFC3339 timestamp that specifies when the action being logged occured.
	When time.Time    `json:"when" format:"date-time"`
	JSON auditLogJSON `json:"-"`
}

func (*AuditLog) UnmarshalJSON

func (r *AuditLog) UnmarshalJSON(data []byte) (err error)

type AuditLogAction

type AuditLogAction struct {
	// A boolean that indicates if the action attempted was successful.
	Result bool `json:"result"`
	// A short string that describes the action that was performed.
	Type string             `json:"type"`
	JSON auditLogActionJSON `json:"-"`
}

func (*AuditLogAction) UnmarshalJSON

func (r *AuditLogAction) UnmarshalJSON(data []byte) (err error)

type AuditLogActor

type AuditLogActor struct {
	// The ID of the actor that performed the action. If a user performed the action,
	// this will be their User ID.
	ID string `json:"id"`
	// The email of the user that performed the action.
	Email string `json:"email" format:"email"`
	// The IP address of the request that performed the action.
	IP string `json:"ip"`
	// The type of actor, whether a User, Cloudflare Admin, or an Automated System.
	Type AuditLogActorType `json:"type"`
	JSON auditLogActorJSON `json:"-"`
}

func (*AuditLogActor) UnmarshalJSON

func (r *AuditLogActor) UnmarshalJSON(data []byte) (err error)

type AuditLogActorType

type AuditLogActorType string

The type of actor, whether a User, Cloudflare Admin, or an Automated System.

const (
	AuditLogActorTypeUser       AuditLogActorType = "user"
	AuditLogActorTypeAdmin      AuditLogActorType = "admin"
	AuditLogActorTypeCloudflare AuditLogActorType = "Cloudflare"
)

func (AuditLogActorType) IsKnown

func (r AuditLogActorType) IsKnown() bool

type AuditLogOwner

type AuditLogOwner struct {
	// Identifier
	ID   string            `json:"id"`
	JSON auditLogOwnerJSON `json:"-"`
}

func (*AuditLogOwner) UnmarshalJSON

func (r *AuditLogOwner) UnmarshalJSON(data []byte) (err error)

type AuditLogResource

type AuditLogResource struct {
	// An identifier for the resource that was affected by the action.
	ID string `json:"id"`
	// A short string that describes the resource that was affected by the action.
	Type string               `json:"type"`
	JSON auditLogResourceJSON `json:"-"`
}

func (*AuditLogResource) UnmarshalJSON

func (r *AuditLogResource) UnmarshalJSON(data []byte) (err error)

type CertificateCA

type CertificateCA string

The Certificate Authority that will issue the certificate

const (
	CertificateCADigicert    CertificateCA = "digicert"
	CertificateCAGoogle      CertificateCA = "google"
	CertificateCALetsEncrypt CertificateCA = "lets_encrypt"
	CertificateCASSLCom      CertificateCA = "ssl_com"
)

func (CertificateCA) IsKnown

func (r CertificateCA) IsKnown() bool

type CertificateRequestType

type CertificateRequestType string

Signature type desired on certificate ("origin-rsa" (rsa), "origin-ecc" (ecdsa), or "keyless-certificate" (for Keyless SSL servers).

const (
	CertificateRequestTypeOriginRSA          CertificateRequestType = "origin-rsa"
	CertificateRequestTypeOriginECC          CertificateRequestType = "origin-ecc"
	CertificateRequestTypeKeylessCertificate CertificateRequestType = "keyless-certificate"
)

func (CertificateRequestType) IsKnown

func (r CertificateRequestType) IsKnown() bool

type CloudflareTunnel

type CloudflareTunnel struct {
	// UUID of the tunnel.
	ID string `json:"id" format:"uuid"`
	// Cloudflare account ID
	AccountTag string `json:"account_tag"`
	// The Cloudflare Tunnel connections between your origin and Cloudflare's edge.
	Connections []CloudflareTunnelConnection `json:"connections"`
	// Timestamp of when the tunnel established at least one connection to Cloudflare's
	// edge. If `null`, the tunnel is inactive.
	ConnsActiveAt time.Time `json:"conns_active_at" format:"date-time"`
	// Timestamp of when the tunnel became inactive (no connections to Cloudflare's
	// edge). If `null`, the tunnel is active.
	ConnsInactiveAt time.Time `json:"conns_inactive_at" format:"date-time"`
	// Timestamp of when the resource was created.
	CreatedAt time.Time `json:"created_at" format:"date-time"`
	// Timestamp of when the resource was deleted. If `null`, the resource has not been
	// deleted.
	DeletedAt time.Time `json:"deleted_at" format:"date-time"`
	// Metadata associated with the tunnel.
	Metadata interface{} `json:"metadata"`
	// A user-friendly name for a tunnel.
	Name string `json:"name"`
	// If `true`, the tunnel can be configured remotely from the Zero Trust dashboard.
	// If `false`, the tunnel must be configured locally on the origin machine.
	RemoteConfig bool `json:"remote_config"`
	// The status of the tunnel. Valid values are `inactive` (tunnel has never been
	// run), `degraded` (tunnel is active and able to serve traffic but in an unhealthy
	// state), `healthy` (tunnel is active and able to serve traffic), or `down`
	// (tunnel can not serve traffic as it has no connections to the Cloudflare Edge).
	Status CloudflareTunnelStatus `json:"status"`
	// The type of tunnel.
	TunType CloudflareTunnelTunType `json:"tun_type"`
	JSON    cloudflareTunnelJSON    `json:"-"`
}

A Cloudflare Tunnel that connects your origin to Cloudflare's edge.

func (CloudflareTunnel) ImplementsWARPConnectorWARPConnectorDeleteResponse

func (r CloudflareTunnel) ImplementsWARPConnectorWARPConnectorDeleteResponse()

func (CloudflareTunnel) ImplementsWARPConnectorWARPConnectorEditResponse

func (r CloudflareTunnel) ImplementsWARPConnectorWARPConnectorEditResponse()

func (CloudflareTunnel) ImplementsWARPConnectorWARPConnectorGetResponse

func (r CloudflareTunnel) ImplementsWARPConnectorWARPConnectorGetResponse()

func (CloudflareTunnel) ImplementsWARPConnectorWARPConnectorListResponse

func (r CloudflareTunnel) ImplementsWARPConnectorWARPConnectorListResponse()

func (CloudflareTunnel) ImplementsWARPConnectorWARPConnectorNewResponse

func (r CloudflareTunnel) ImplementsWARPConnectorWARPConnectorNewResponse()

func (CloudflareTunnel) ImplementsZeroTrustTunnelDeleteResponse

func (r CloudflareTunnel) ImplementsZeroTrustTunnelDeleteResponse()

func (CloudflareTunnel) ImplementsZeroTrustTunnelEditResponse

func (r CloudflareTunnel) ImplementsZeroTrustTunnelEditResponse()

func (CloudflareTunnel) ImplementsZeroTrustTunnelGetResponse

func (r CloudflareTunnel) ImplementsZeroTrustTunnelGetResponse()

func (CloudflareTunnel) ImplementsZeroTrustTunnelListResponse

func (r CloudflareTunnel) ImplementsZeroTrustTunnelListResponse()

func (CloudflareTunnel) ImplementsZeroTrustTunnelNewResponse

func (r CloudflareTunnel) ImplementsZeroTrustTunnelNewResponse()

func (*CloudflareTunnel) UnmarshalJSON

func (r *CloudflareTunnel) UnmarshalJSON(data []byte) (err error)

type CloudflareTunnelConnection

type CloudflareTunnelConnection struct {
	// UUID of the Cloudflare Tunnel connection.
	ID string `json:"id" format:"uuid"`
	// UUID of the Cloudflare Tunnel connector.
	ClientID string `json:"client_id" format:"uuid"`
	// The cloudflared version used to establish this connection.
	ClientVersion string `json:"client_version"`
	// The Cloudflare data center used for this connection.
	ColoName string `json:"colo_name"`
	// Cloudflare continues to track connections for several minutes after they
	// disconnect. This is an optimization to improve latency and reliability of
	// reconnecting. If `true`, the connection has disconnected but is still being
	// tracked. If `false`, the connection is actively serving traffic.
	IsPendingReconnect bool `json:"is_pending_reconnect"`
	// Timestamp of when the connection was established.
	OpenedAt time.Time `json:"opened_at" format:"date-time"`
	// The public IP address of the host running cloudflared.
	OriginIP string `json:"origin_ip"`
	// UUID of the Cloudflare Tunnel connection.
	UUID string                         `json:"uuid" format:"uuid"`
	JSON cloudflareTunnelConnectionJSON `json:"-"`
}

func (*CloudflareTunnelConnection) UnmarshalJSON

func (r *CloudflareTunnelConnection) UnmarshalJSON(data []byte) (err error)

type CloudflareTunnelStatus

type CloudflareTunnelStatus string

The status of the tunnel. Valid values are `inactive` (tunnel has never been run), `degraded` (tunnel is active and able to serve traffic but in an unhealthy state), `healthy` (tunnel is active and able to serve traffic), or `down` (tunnel can not serve traffic as it has no connections to the Cloudflare Edge).

const (
	CloudflareTunnelStatusInactive CloudflareTunnelStatus = "inactive"
	CloudflareTunnelStatusDegraded CloudflareTunnelStatus = "degraded"
	CloudflareTunnelStatusHealthy  CloudflareTunnelStatus = "healthy"
	CloudflareTunnelStatusDown     CloudflareTunnelStatus = "down"
)

func (CloudflareTunnelStatus) IsKnown

func (r CloudflareTunnelStatus) IsKnown() bool

type CloudflareTunnelTunType

type CloudflareTunnelTunType string

The type of tunnel.

const (
	CloudflareTunnelTunTypeCfdTunnel     CloudflareTunnelTunType = "cfd_tunnel"
	CloudflareTunnelTunTypeWARPConnector CloudflareTunnelTunType = "warp_connector"
	CloudflareTunnelTunTypeIPSec         CloudflareTunnelTunType = "ip_sec"
	CloudflareTunnelTunTypeGRE           CloudflareTunnelTunType = "gre"
	CloudflareTunnelTunTypeCNI           CloudflareTunnelTunType = "cni"
)

func (CloudflareTunnelTunType) IsKnown

func (r CloudflareTunnelTunType) IsKnown() bool

type ErrorData

type ErrorData struct {
	Code    int64         `json:"code"`
	Message string        `json:"message"`
	JSON    errorDataJSON `json:"-"`
}

func (*ErrorData) UnmarshalJSON

func (r *ErrorData) UnmarshalJSON(data []byte) (err error)

type MemberParam

type MemberParam struct {
	// Roles assigned to this member.
	Roles param.Field[[]MemberRoleParam] `json:"roles"`
}

func (MemberParam) ImplementsAccountsMemberUpdateParamsBodyUnion

func (r MemberParam) ImplementsAccountsMemberUpdateParamsBodyUnion()

func (MemberParam) MarshalJSON

func (r MemberParam) MarshalJSON() (data []byte, err error)

type MemberRoleParam

type MemberRoleParam struct {
	// Role identifier tag.
	ID param.Field[string] `json:"id,required"`
}

func (MemberRoleParam) MarshalJSON

func (r MemberRoleParam) MarshalJSON() (data []byte, err error)

type MemberRolesPermissionsParam

type MemberRolesPermissionsParam struct {
	Analytics    param.Field[PermissionGrantParam] `json:"analytics"`
	Billing      param.Field[PermissionGrantParam] `json:"billing"`
	CachePurge   param.Field[PermissionGrantParam] `json:"cache_purge"`
	DNS          param.Field[PermissionGrantParam] `json:"dns"`
	DNSRecords   param.Field[PermissionGrantParam] `json:"dns_records"`
	LB           param.Field[PermissionGrantParam] `json:"lb"`
	Logs         param.Field[PermissionGrantParam] `json:"logs"`
	Organization param.Field[PermissionGrantParam] `json:"organization"`
	SSL          param.Field[PermissionGrantParam] `json:"ssl"`
	WAF          param.Field[PermissionGrantParam] `json:"waf"`
	ZoneSettings param.Field[PermissionGrantParam] `json:"zone_settings"`
	Zones        param.Field[PermissionGrantParam] `json:"zones"`
}

func (MemberRolesPermissionsParam) MarshalJSON

func (r MemberRolesPermissionsParam) MarshalJSON() (data []byte, err error)

type MemberStatus

type MemberStatus string

A member's status in the account.

const (
	MemberStatusAccepted MemberStatus = "accepted"
	MemberStatusPending  MemberStatus = "pending"
)

func (MemberStatus) IsKnown

func (r MemberStatus) IsKnown() bool

type MemberUserParam

type MemberUserParam struct {
	// The contact email address of the user.
	Email param.Field[string] `json:"email,required"`
	// User's first name
	FirstName param.Field[string] `json:"first_name"`
	// User's last name
	LastName param.Field[string] `json:"last_name"`
}

Details of the user associated to the membership.

func (MemberUserParam) MarshalJSON

func (r MemberUserParam) MarshalJSON() (data []byte, err error)

type Permission

type Permission = string

type PermissionGrant

type PermissionGrant struct {
	Read  bool                `json:"read"`
	Write bool                `json:"write"`
	JSON  permissionGrantJSON `json:"-"`
}

func (*PermissionGrant) UnmarshalJSON

func (r *PermissionGrant) UnmarshalJSON(data []byte) (err error)

type PermissionGrantParam

type PermissionGrantParam struct {
	Read  param.Field[bool] `json:"read"`
	Write param.Field[bool] `json:"write"`
}

func (PermissionGrantParam) MarshalJSON

func (r PermissionGrantParam) MarshalJSON() (data []byte, err error)

type RatePlan

type RatePlan struct {
	// The ID of the rate plan.
	ID string `json:"id"`
	// The currency applied to the rate plan subscription.
	Currency string `json:"currency"`
	// Whether this rate plan is managed externally from Cloudflare.
	ExternallyManaged bool `json:"externally_managed"`
	// Whether a rate plan is enterprise-based (or newly adopted term contract).
	IsContract bool `json:"is_contract"`
	// The full name of the rate plan.
	PublicName string `json:"public_name"`
	// The scope that this rate plan applies to.
	Scope string `json:"scope"`
	// The list of sets this rate plan applies to.
	Sets []string     `json:"sets"`
	JSON ratePlanJSON `json:"-"`
}

The rate plan applied to the subscription.

func (*RatePlan) UnmarshalJSON

func (r *RatePlan) UnmarshalJSON(data []byte) (err error)

type RatePlanParam

type RatePlanParam struct {
	// The ID of the rate plan.
	ID param.Field[string] `json:"id"`
	// The currency applied to the rate plan subscription.
	Currency param.Field[string] `json:"currency"`
	// Whether this rate plan is managed externally from Cloudflare.
	ExternallyManaged param.Field[bool] `json:"externally_managed"`
	// Whether a rate plan is enterprise-based (or newly adopted term contract).
	IsContract param.Field[bool] `json:"is_contract"`
	// The full name of the rate plan.
	PublicName param.Field[string] `json:"public_name"`
	// The scope that this rate plan applies to.
	Scope param.Field[string] `json:"scope"`
	// The list of sets this rate plan applies to.
	Sets param.Field[[]string] `json:"sets"`
}

The rate plan applied to the subscription.

func (RatePlanParam) MarshalJSON

func (r RatePlanParam) MarshalJSON() (data []byte, err error)

type ResponseInfo

type ResponseInfo struct {
	Code    int64            `json:"code,required"`
	Message string           `json:"message,required"`
	JSON    responseInfoJSON `json:"-"`
}

func (*ResponseInfo) UnmarshalJSON

func (r *ResponseInfo) UnmarshalJSON(data []byte) (err error)

type Role

type Role struct {
	// Role identifier tag.
	ID string `json:"id,required"`
	// Description of role's permissions.
	Description string `json:"description,required"`
	// Role Name.
	Name string `json:"name,required"`
	// Access permissions for this User.
	Permissions []Permission `json:"permissions,required"`
	JSON        roleJSON     `json:"-"`
}

func (*Role) UnmarshalJSON

func (r *Role) UnmarshalJSON(data []byte) (err error)

type SortDirection

type SortDirection string

Direction to order DNS records in.

const (
	SortDirectionAsc  SortDirection = "asc"
	SortDirectionDesc SortDirection = "desc"
)

func (SortDirection) IsKnown

func (r SortDirection) IsKnown() bool

type Subscription

type Subscription struct {
	// Subscription identifier tag.
	ID string `json:"id"`
	// The monetary unit in which pricing information is displayed.
	Currency string `json:"currency"`
	// The end of the current period and also when the next billing is due.
	CurrentPeriodEnd time.Time `json:"current_period_end" format:"date-time"`
	// When the current billing period started. May match initial_period_start if this
	// is the first period.
	CurrentPeriodStart time.Time `json:"current_period_start" format:"date-time"`
	// How often the subscription is renewed automatically.
	Frequency SubscriptionFrequency `json:"frequency"`
	// The price of the subscription that will be billed, in US dollars.
	Price float64 `json:"price"`
	// The rate plan applied to the subscription.
	RatePlan RatePlan `json:"rate_plan"`
	// The state that the subscription is in.
	State SubscriptionState `json:"state"`
	JSON  subscriptionJSON  `json:"-"`
}

func (*Subscription) UnmarshalJSON

func (r *Subscription) UnmarshalJSON(data []byte) (err error)

type SubscriptionFrequency

type SubscriptionFrequency string

How often the subscription is renewed automatically.

const (
	SubscriptionFrequencyWeekly    SubscriptionFrequency = "weekly"
	SubscriptionFrequencyMonthly   SubscriptionFrequency = "monthly"
	SubscriptionFrequencyQuarterly SubscriptionFrequency = "quarterly"
	SubscriptionFrequencyYearly    SubscriptionFrequency = "yearly"
)

func (SubscriptionFrequency) IsKnown

func (r SubscriptionFrequency) IsKnown() bool

type SubscriptionParam

type SubscriptionParam struct {
	// How often the subscription is renewed automatically.
	Frequency param.Field[SubscriptionFrequency] `json:"frequency"`
	// The rate plan applied to the subscription.
	RatePlan param.Field[RatePlanParam] `json:"rate_plan"`
}

func (SubscriptionParam) MarshalJSON

func (r SubscriptionParam) MarshalJSON() (data []byte, err error)

type SubscriptionState

type SubscriptionState string

The state that the subscription is in.

const (
	SubscriptionStateTrial           SubscriptionState = "Trial"
	SubscriptionStateProvisioned     SubscriptionState = "Provisioned"
	SubscriptionStatePaid            SubscriptionState = "Paid"
	SubscriptionStateAwaitingPayment SubscriptionState = "AwaitingPayment"
	SubscriptionStateCancelled       SubscriptionState = "Cancelled"
	SubscriptionStateFailed          SubscriptionState = "Failed"
	SubscriptionStateExpired         SubscriptionState = "Expired"
)

func (SubscriptionState) IsKnown

func (r SubscriptionState) IsKnown() bool

type UnionFloat

type UnionFloat float64

func (UnionFloat) ImplementsDNSTTL

func (UnionFloat) ImplementsDNSTTL()

func (UnionFloat) ImplementsHostnamesSettingValueUnion

func (UnionFloat) ImplementsHostnamesSettingValueUnion()

func (UnionFloat) ImplementsHostnamesSettingValueUnionParam

func (UnionFloat) ImplementsHostnamesSettingValueUnionParam()

func (UnionFloat) ImplementsRadarRankingTimeseriesGroupsResponseSerie0Union

func (UnionFloat) ImplementsRadarRankingTimeseriesGroupsResponseSerie0Union()

type UnionInt

type UnionInt int64

func (UnionInt) ImplementsLogsReceivedGetParamsEndUnion

func (UnionInt) ImplementsLogsReceivedGetParamsEndUnion()

func (UnionInt) ImplementsLogsReceivedGetParamsStartUnion

func (UnionInt) ImplementsLogsReceivedGetParamsStartUnion()

func (UnionInt) ImplementsRulesListItemGetResponseUnion

func (UnionInt) ImplementsRulesListItemGetResponseUnion()

func (UnionInt) ImplementsSpectrumOriginPortUnion

func (UnionInt) ImplementsSpectrumOriginPortUnion()

func (UnionInt) ImplementsSpectrumOriginPortUnionParam

func (UnionInt) ImplementsSpectrumOriginPortUnionParam()

type UnionString

type UnionString string

func (UnionString) ImplementsEventNotificationsR2ConfigurationQueueDeleteResponseUnion

func (UnionString) ImplementsEventNotificationsR2ConfigurationQueueDeleteResponseUnion()

func (UnionString) ImplementsFirewallWAFPackageListResponseFirewallAPIResponseCollectionResultUnion

func (UnionString) ImplementsFirewallWAFPackageListResponseFirewallAPIResponseCollectionResultUnion()

func (UnionString) ImplementsHostnamesSettingValueUnion

func (UnionString) ImplementsHostnamesSettingValueUnion()

func (UnionString) ImplementsHostnamesSettingValueUnionParam

func (UnionString) ImplementsHostnamesSettingValueUnionParam()

func (UnionString) ImplementsLogsReceivedGetParamsEndUnion

func (UnionString) ImplementsLogsReceivedGetParamsEndUnion()

func (UnionString) ImplementsLogsReceivedGetParamsStartUnion

func (UnionString) ImplementsLogsReceivedGetParamsStartUnion()

func (UnionString) ImplementsQueuesConsumerDeleteResponseUnion

func (UnionString) ImplementsQueuesConsumerDeleteResponseUnion()

func (UnionString) ImplementsQueuesQueueDeleteResponseUnion

func (UnionString) ImplementsQueuesQueueDeleteResponseUnion()

func (UnionString) ImplementsRadarRankingTimeseriesGroupsResponseSerie0Union

func (UnionString) ImplementsRadarRankingTimeseriesGroupsResponseSerie0Union()

func (UnionString) ImplementsRegistrarDomainGetResponseUnion

func (UnionString) ImplementsRegistrarDomainGetResponseUnion()

func (UnionString) ImplementsRegistrarDomainListResponseResultUnion

func (UnionString) ImplementsRegistrarDomainListResponseResultUnion()

func (UnionString) ImplementsRegistrarDomainUpdateResponseUnion

func (UnionString) ImplementsRegistrarDomainUpdateResponseUnion()

func (UnionString) ImplementsRulesListItemGetResponseUnion

func (UnionString) ImplementsRulesListItemGetResponseUnion()

func (UnionString) ImplementsSpectrumOriginPortUnion

func (UnionString) ImplementsSpectrumOriginPortUnion()

func (UnionString) ImplementsSpectrumOriginPortUnionParam

func (UnionString) ImplementsSpectrumOriginPortUnionParam()

func (UnionString) ImplementsWARPConnectorWARPConnectorTokenResponseUnion

func (UnionString) ImplementsWARPConnectorWARPConnectorTokenResponseUnion()

func (UnionString) ImplementsWorkersAIRunParamsBodyTextEmbeddingsTextUnion

func (UnionString) ImplementsWorkersAIRunParamsBodyTextEmbeddingsTextUnion()

func (UnionString) ImplementsWorkersAIRunResponseUnion

func (UnionString) ImplementsWorkersAIRunResponseUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyAppLauncherApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyAppLauncherApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyBrowserIsolationPermissionsApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyBrowserIsolationPermissionsApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyBrowserSSHApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyBrowserSSHApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyBrowserVNCApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyBrowserVNCApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyDeviceEnrollmentPermissionsApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodyDeviceEnrollmentPermissionsApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodySaaSApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodySaaSApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodySelfHostedApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationNewParamsBodySelfHostedApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyAppLauncherApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyAppLauncherApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyBrowserIsolationPermissionsApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyBrowserIsolationPermissionsApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyBrowserSSHApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyBrowserSSHApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyBrowserVNCApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyBrowserVNCApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyDeviceEnrollmentPermissionsApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodyDeviceEnrollmentPermissionsApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodySaaSApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodySaaSApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodySelfHostedApplicationPolicyUnion

func (UnionString) ImplementsZeroTrustAccessApplicationUpdateParamsBodySelfHostedApplicationPolicyUnion()

func (UnionString) ImplementsZeroTrustTunnelManagementNewResponseUnion

func (UnionString) ImplementsZeroTrustTunnelManagementNewResponseUnion()

func (UnionString) ImplementsZeroTrustTunnelTokenGetResponseUnion

func (UnionString) ImplementsZeroTrustTunnelTokenGetResponseUnion()

type UnionTime

type UnionTime time.Time

func (UnionTime) ImplementsAuditLogsAuditLogListParamsBeforeUnion

func (UnionTime) ImplementsAuditLogsAuditLogListParamsBeforeUnion()

func (UnionTime) ImplementsAuditLogsAuditLogListParamsSinceUnion

func (UnionTime) ImplementsAuditLogsAuditLogListParamsSinceUnion()

func (UnionTime) ImplementsUserAuditLogListParamsBeforeUnion

func (UnionTime) ImplementsUserAuditLogListParamsBeforeUnion()

func (UnionTime) ImplementsUserAuditLogListParamsSinceUnion

func (UnionTime) ImplementsUserAuditLogListParamsSinceUnion()

Jump to

Keyboard shortcuts

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