Versions in this module Expand all Collapse all v1 v1.4.0 Mar 10, 2026 Changes in this version + var JsonCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?json)`) + var XmlCheck = regexp.MustCompile(`(?i:(?:application|text)/(?:[^;]+\+)?xml)`) + func CacheExpires(r *http.Response) time.Time + func IsNil(i interface{}) bool + func NewConfiguration() *config.Configuration + func PtrBool(v bool) *bool + func PtrFloat32(v float32) *float32 + func PtrFloat64(v float64) *float64 + func PtrInt(v int) *int + func PtrInt32(v int32) *int32 + func PtrInt64(v int64) *int64 + func PtrString(v string) *string + func PtrTime(v time.Time) *time.Time + type APIClient struct + DefaultAPI DefaultAPI + func NewAPIClient(opts ...config.ConfigurationOption) (*APIClient, error) + func (c *APIClient) GetConfig() *config.Configuration + type APIResponse struct + Message string + Method string + Operation string + Payload []byte + RequestURL string + func NewAPIResponse(r *http.Response) *APIResponse + func NewAPIResponseWithError(errorMessage string) *APIResponse + type AddRoutesToRoutingTablePayload struct + Items []Route + func NewAddRoutesToRoutingTablePayload(items []Route) *AddRoutesToRoutingTablePayload + func NewAddRoutesToRoutingTablePayloadWithDefaults() *AddRoutesToRoutingTablePayload + func (o *AddRoutesToRoutingTablePayload) GetItems() []Route + func (o *AddRoutesToRoutingTablePayload) GetItemsOk() ([]Route, bool) + func (o *AddRoutesToRoutingTablePayload) SetItems(v []Route) + func (o *AddRoutesToRoutingTablePayload) UnmarshalJSON(data []byte) (err error) + func (o AddRoutesToRoutingTablePayload) MarshalJSON() ([]byte, error) + func (o AddRoutesToRoutingTablePayload) ToMap() (map[string]interface{}, error) + type AddRoutingTableToAreaPayload struct + CreatedAt *time.Time + Default *bool + Description *string + DynamicRoutes *bool + Id *string + Labels map[string]interface{} + Name string + SystemRoutes *bool + UpdatedAt *time.Time + func NewAddRoutingTableToAreaPayload(name string) *AddRoutingTableToAreaPayload + func NewAddRoutingTableToAreaPayloadWithDefaults() *AddRoutingTableToAreaPayload + func (o *AddRoutingTableToAreaPayload) GetCreatedAt() time.Time + func (o *AddRoutingTableToAreaPayload) GetCreatedAtOk() (*time.Time, bool) + func (o *AddRoutingTableToAreaPayload) GetDefault() bool + func (o *AddRoutingTableToAreaPayload) GetDefaultOk() (*bool, bool) + func (o *AddRoutingTableToAreaPayload) GetDescription() string + func (o *AddRoutingTableToAreaPayload) GetDescriptionOk() (*string, bool) + func (o *AddRoutingTableToAreaPayload) GetDynamicRoutes() bool + func (o *AddRoutingTableToAreaPayload) GetDynamicRoutesOk() (*bool, bool) + func (o *AddRoutingTableToAreaPayload) GetId() string + func (o *AddRoutingTableToAreaPayload) GetIdOk() (*string, bool) + func (o *AddRoutingTableToAreaPayload) GetLabels() map[string]interface{} + func (o *AddRoutingTableToAreaPayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *AddRoutingTableToAreaPayload) GetName() string + func (o *AddRoutingTableToAreaPayload) GetNameOk() (*string, bool) + func (o *AddRoutingTableToAreaPayload) GetSystemRoutes() bool + func (o *AddRoutingTableToAreaPayload) GetSystemRoutesOk() (*bool, bool) + func (o *AddRoutingTableToAreaPayload) GetUpdatedAt() time.Time + func (o *AddRoutingTableToAreaPayload) GetUpdatedAtOk() (*time.Time, bool) + func (o *AddRoutingTableToAreaPayload) HasCreatedAt() bool + func (o *AddRoutingTableToAreaPayload) HasDefault() bool + func (o *AddRoutingTableToAreaPayload) HasDescription() bool + func (o *AddRoutingTableToAreaPayload) HasDynamicRoutes() bool + func (o *AddRoutingTableToAreaPayload) HasId() bool + func (o *AddRoutingTableToAreaPayload) HasLabels() bool + func (o *AddRoutingTableToAreaPayload) HasSystemRoutes() bool + func (o *AddRoutingTableToAreaPayload) HasUpdatedAt() bool + func (o *AddRoutingTableToAreaPayload) SetCreatedAt(v time.Time) + func (o *AddRoutingTableToAreaPayload) SetDefault(v bool) + func (o *AddRoutingTableToAreaPayload) SetDescription(v string) + func (o *AddRoutingTableToAreaPayload) SetDynamicRoutes(v bool) + func (o *AddRoutingTableToAreaPayload) SetId(v string) + func (o *AddRoutingTableToAreaPayload) SetLabels(v map[string]interface{}) + func (o *AddRoutingTableToAreaPayload) SetName(v string) + func (o *AddRoutingTableToAreaPayload) SetSystemRoutes(v bool) + func (o *AddRoutingTableToAreaPayload) SetUpdatedAt(v time.Time) + func (o *AddRoutingTableToAreaPayload) UnmarshalJSON(data []byte) (err error) + func (o AddRoutingTableToAreaPayload) MarshalJSON() ([]byte, error) + func (o AddRoutingTableToAreaPayload) ToMap() (map[string]interface{}, error) + type ApiAddRoutesToRoutingTableRequest struct + ApiService DefaultAPI + func (r ApiAddRoutesToRoutingTableRequest) AddRoutesToRoutingTablePayload(addRoutesToRoutingTablePayload AddRoutesToRoutingTablePayload) ApiAddRoutesToRoutingTableRequest + func (r ApiAddRoutesToRoutingTableRequest) Execute() (*RouteListResponse, error) + type ApiAddRoutingTableToAreaRequest struct + ApiService DefaultAPI + func (r ApiAddRoutingTableToAreaRequest) AddRoutingTableToAreaPayload(addRoutingTableToAreaPayload AddRoutingTableToAreaPayload) ApiAddRoutingTableToAreaRequest + func (r ApiAddRoutingTableToAreaRequest) Execute() (*RoutingTable, error) + type ApiCreateNetworkRequest struct + ApiService DefaultAPI + func (r ApiCreateNetworkRequest) CreateNetworkPayload(createNetworkPayload CreateNetworkPayload) ApiCreateNetworkRequest + func (r ApiCreateNetworkRequest) Execute() (*Network, error) + type ApiDeleteNetworkRequest struct + ApiService DefaultAPI + func (r ApiDeleteNetworkRequest) Execute() error + type ApiDeleteRouteFromRoutingTableRequest struct + ApiService DefaultAPI + func (r ApiDeleteRouteFromRoutingTableRequest) Execute() error + type ApiDeleteRoutingTableFromAreaRequest struct + ApiService DefaultAPI + func (r ApiDeleteRoutingTableFromAreaRequest) Execute() error + type ApiGetNetworkRequest struct + ApiService DefaultAPI + func (r ApiGetNetworkRequest) Execute() (*Network, error) + type ApiGetRouteOfRoutingTableRequest struct + ApiService DefaultAPI + func (r ApiGetRouteOfRoutingTableRequest) Execute() (*Route, error) + type ApiGetRoutingTableOfAreaRequest struct + ApiService DefaultAPI + func (r ApiGetRoutingTableOfAreaRequest) Execute() (*RoutingTable, error) + type ApiListNetworksOfRoutingTableRequest struct + ApiService DefaultAPI + func (r ApiListNetworksOfRoutingTableRequest) Execute() (*NetworkListResponse, error) + type ApiListNetworksRequest struct + ApiService DefaultAPI + func (r ApiListNetworksRequest) Execute() (*NetworkListResponse, error) + func (r ApiListNetworksRequest) LabelSelector(labelSelector string) ApiListNetworksRequest + type ApiListRoutesOfRoutingTableRequest struct + ApiService DefaultAPI + func (r ApiListRoutesOfRoutingTableRequest) Execute() (*RouteListResponse, error) + func (r ApiListRoutesOfRoutingTableRequest) LabelSelector(labelSelector string) ApiListRoutesOfRoutingTableRequest + type ApiListRoutingTablesOfAreaRequest struct + ApiService DefaultAPI + func (r ApiListRoutingTablesOfAreaRequest) Execute() (*RoutingTableListResponse, error) + func (r ApiListRoutingTablesOfAreaRequest) LabelSelector(labelSelector string) ApiListRoutingTablesOfAreaRequest + type ApiPartialUpdateNetworkRequest struct + ApiService DefaultAPI + func (r ApiPartialUpdateNetworkRequest) Execute() error + func (r ApiPartialUpdateNetworkRequest) PartialUpdateNetworkPayload(partialUpdateNetworkPayload PartialUpdateNetworkPayload) ApiPartialUpdateNetworkRequest + type ApiUpdateRouteOfRoutingTableRequest struct + ApiService DefaultAPI + func (r ApiUpdateRouteOfRoutingTableRequest) Execute() (*Route, error) + func (r ApiUpdateRouteOfRoutingTableRequest) UpdateRouteOfRoutingTablePayload(updateRouteOfRoutingTablePayload UpdateRouteOfRoutingTablePayload) ApiUpdateRouteOfRoutingTableRequest + type ApiUpdateRoutingTableOfAreaRequest struct + ApiService DefaultAPI + func (r ApiUpdateRoutingTableOfAreaRequest) Execute() (*RoutingTable, error) + func (r ApiUpdateRoutingTableOfAreaRequest) UpdateRoutingTableOfAreaPayload(updateRoutingTableOfAreaPayload UpdateRoutingTableOfAreaPayload) ApiUpdateRoutingTableOfAreaRequest + type CreateNetworkIPv4 struct + CreateNetworkIPv4WithPrefix *CreateNetworkIPv4WithPrefix + CreateNetworkIPv4WithPrefixLength *CreateNetworkIPv4WithPrefixLength + func CreateNetworkIPv4WithPrefixAsCreateNetworkIPv4(v *CreateNetworkIPv4WithPrefix) CreateNetworkIPv4 + func CreateNetworkIPv4WithPrefixLengthAsCreateNetworkIPv4(v *CreateNetworkIPv4WithPrefixLength) CreateNetworkIPv4 + func (dst *CreateNetworkIPv4) UnmarshalJSON(data []byte) error + func (obj *CreateNetworkIPv4) GetActualInstance() interface{} + func (obj CreateNetworkIPv4) GetActualInstanceValue() interface{} + func (src CreateNetworkIPv4) MarshalJSON() ([]byte, error) + type CreateNetworkIPv4WithPrefix struct + Gateway NullableString + Nameservers []string + Prefix string + func NewCreateNetworkIPv4WithPrefix(prefix string) *CreateNetworkIPv4WithPrefix + func NewCreateNetworkIPv4WithPrefixWithDefaults() *CreateNetworkIPv4WithPrefix + func (o *CreateNetworkIPv4WithPrefix) GetGateway() string + func (o *CreateNetworkIPv4WithPrefix) GetGatewayOk() (*string, bool) + func (o *CreateNetworkIPv4WithPrefix) GetNameservers() []string + func (o *CreateNetworkIPv4WithPrefix) GetNameserversOk() ([]string, bool) + func (o *CreateNetworkIPv4WithPrefix) GetPrefix() string + func (o *CreateNetworkIPv4WithPrefix) GetPrefixOk() (*string, bool) + func (o *CreateNetworkIPv4WithPrefix) HasGateway() bool + func (o *CreateNetworkIPv4WithPrefix) HasNameservers() bool + func (o *CreateNetworkIPv4WithPrefix) SetGateway(v string) + func (o *CreateNetworkIPv4WithPrefix) SetGatewayNil() + func (o *CreateNetworkIPv4WithPrefix) SetNameservers(v []string) + func (o *CreateNetworkIPv4WithPrefix) SetPrefix(v string) + func (o *CreateNetworkIPv4WithPrefix) UnmarshalJSON(data []byte) (err error) + func (o *CreateNetworkIPv4WithPrefix) UnsetGateway() + func (o CreateNetworkIPv4WithPrefix) MarshalJSON() ([]byte, error) + func (o CreateNetworkIPv4WithPrefix) ToMap() (map[string]interface{}, error) + type CreateNetworkIPv4WithPrefixLength struct + Nameservers []string + PrefixLength int64 + func NewCreateNetworkIPv4WithPrefixLength(prefixLength int64) *CreateNetworkIPv4WithPrefixLength + func NewCreateNetworkIPv4WithPrefixLengthWithDefaults() *CreateNetworkIPv4WithPrefixLength + func (o *CreateNetworkIPv4WithPrefixLength) GetNameservers() []string + func (o *CreateNetworkIPv4WithPrefixLength) GetNameserversOk() ([]string, bool) + func (o *CreateNetworkIPv4WithPrefixLength) GetPrefixLength() int64 + func (o *CreateNetworkIPv4WithPrefixLength) GetPrefixLengthOk() (*int64, bool) + func (o *CreateNetworkIPv4WithPrefixLength) HasNameservers() bool + func (o *CreateNetworkIPv4WithPrefixLength) SetNameservers(v []string) + func (o *CreateNetworkIPv4WithPrefixLength) SetPrefixLength(v int64) + func (o *CreateNetworkIPv4WithPrefixLength) UnmarshalJSON(data []byte) (err error) + func (o CreateNetworkIPv4WithPrefixLength) MarshalJSON() ([]byte, error) + func (o CreateNetworkIPv4WithPrefixLength) ToMap() (map[string]interface{}, error) + type CreateNetworkIPv6 struct + CreateNetworkIPv6WithPrefix *CreateNetworkIPv6WithPrefix + CreateNetworkIPv6WithPrefixLength *CreateNetworkIPv6WithPrefixLength + func CreateNetworkIPv6WithPrefixAsCreateNetworkIPv6(v *CreateNetworkIPv6WithPrefix) CreateNetworkIPv6 + func CreateNetworkIPv6WithPrefixLengthAsCreateNetworkIPv6(v *CreateNetworkIPv6WithPrefixLength) CreateNetworkIPv6 + func (dst *CreateNetworkIPv6) UnmarshalJSON(data []byte) error + func (obj *CreateNetworkIPv6) GetActualInstance() interface{} + func (obj CreateNetworkIPv6) GetActualInstanceValue() interface{} + func (src CreateNetworkIPv6) MarshalJSON() ([]byte, error) + type CreateNetworkIPv6WithPrefix struct + Gateway NullableString + Nameservers []string + Prefix string + func NewCreateNetworkIPv6WithPrefix(prefix string) *CreateNetworkIPv6WithPrefix + func NewCreateNetworkIPv6WithPrefixWithDefaults() *CreateNetworkIPv6WithPrefix + func (o *CreateNetworkIPv6WithPrefix) GetGateway() string + func (o *CreateNetworkIPv6WithPrefix) GetGatewayOk() (*string, bool) + func (o *CreateNetworkIPv6WithPrefix) GetNameservers() []string + func (o *CreateNetworkIPv6WithPrefix) GetNameserversOk() ([]string, bool) + func (o *CreateNetworkIPv6WithPrefix) GetPrefix() string + func (o *CreateNetworkIPv6WithPrefix) GetPrefixOk() (*string, bool) + func (o *CreateNetworkIPv6WithPrefix) HasGateway() bool + func (o *CreateNetworkIPv6WithPrefix) HasNameservers() bool + func (o *CreateNetworkIPv6WithPrefix) SetGateway(v string) + func (o *CreateNetworkIPv6WithPrefix) SetGatewayNil() + func (o *CreateNetworkIPv6WithPrefix) SetNameservers(v []string) + func (o *CreateNetworkIPv6WithPrefix) SetPrefix(v string) + func (o *CreateNetworkIPv6WithPrefix) UnmarshalJSON(data []byte) (err error) + func (o *CreateNetworkIPv6WithPrefix) UnsetGateway() + func (o CreateNetworkIPv6WithPrefix) MarshalJSON() ([]byte, error) + func (o CreateNetworkIPv6WithPrefix) ToMap() (map[string]interface{}, error) + type CreateNetworkIPv6WithPrefixLength struct + Nameservers []string + PrefixLength int64 + func NewCreateNetworkIPv6WithPrefixLength(prefixLength int64) *CreateNetworkIPv6WithPrefixLength + func NewCreateNetworkIPv6WithPrefixLengthWithDefaults() *CreateNetworkIPv6WithPrefixLength + func (o *CreateNetworkIPv6WithPrefixLength) GetNameservers() []string + func (o *CreateNetworkIPv6WithPrefixLength) GetNameserversOk() ([]string, bool) + func (o *CreateNetworkIPv6WithPrefixLength) GetPrefixLength() int64 + func (o *CreateNetworkIPv6WithPrefixLength) GetPrefixLengthOk() (*int64, bool) + func (o *CreateNetworkIPv6WithPrefixLength) HasNameservers() bool + func (o *CreateNetworkIPv6WithPrefixLength) SetNameservers(v []string) + func (o *CreateNetworkIPv6WithPrefixLength) SetPrefixLength(v int64) + func (o *CreateNetworkIPv6WithPrefixLength) UnmarshalJSON(data []byte) (err error) + func (o CreateNetworkIPv6WithPrefixLength) MarshalJSON() ([]byte, error) + func (o CreateNetworkIPv6WithPrefixLength) ToMap() (map[string]interface{}, error) + type CreateNetworkPayload struct + Dhcp *bool + Ipv4 *CreateNetworkIPv4 + Ipv6 *CreateNetworkIPv6 + Labels map[string]interface{} + Name string + Routed *bool + RoutingTableId *string + func NewCreateNetworkPayload(name string) *CreateNetworkPayload + func NewCreateNetworkPayloadWithDefaults() *CreateNetworkPayload + func (o *CreateNetworkPayload) GetDhcp() bool + func (o *CreateNetworkPayload) GetDhcpOk() (*bool, bool) + func (o *CreateNetworkPayload) GetIpv4() CreateNetworkIPv4 + func (o *CreateNetworkPayload) GetIpv4Ok() (*CreateNetworkIPv4, bool) + func (o *CreateNetworkPayload) GetIpv6() CreateNetworkIPv6 + func (o *CreateNetworkPayload) GetIpv6Ok() (*CreateNetworkIPv6, bool) + func (o *CreateNetworkPayload) GetLabels() map[string]interface{} + func (o *CreateNetworkPayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *CreateNetworkPayload) GetName() string + func (o *CreateNetworkPayload) GetNameOk() (*string, bool) + func (o *CreateNetworkPayload) GetRouted() bool + func (o *CreateNetworkPayload) GetRoutedOk() (*bool, bool) + func (o *CreateNetworkPayload) GetRoutingTableId() string + func (o *CreateNetworkPayload) GetRoutingTableIdOk() (*string, bool) + func (o *CreateNetworkPayload) HasDhcp() bool + func (o *CreateNetworkPayload) HasIpv4() bool + func (o *CreateNetworkPayload) HasIpv6() bool + func (o *CreateNetworkPayload) HasLabels() bool + func (o *CreateNetworkPayload) HasRouted() bool + func (o *CreateNetworkPayload) HasRoutingTableId() bool + func (o *CreateNetworkPayload) SetDhcp(v bool) + func (o *CreateNetworkPayload) SetIpv4(v CreateNetworkIPv4) + func (o *CreateNetworkPayload) SetIpv6(v CreateNetworkIPv6) + func (o *CreateNetworkPayload) SetLabels(v map[string]interface{}) + func (o *CreateNetworkPayload) SetName(v string) + func (o *CreateNetworkPayload) SetRouted(v bool) + func (o *CreateNetworkPayload) SetRoutingTableId(v string) + func (o *CreateNetworkPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateNetworkPayload) MarshalJSON() ([]byte, error) + func (o CreateNetworkPayload) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + AddRoutesToRoutingTable func(ctx context.Context, organizationId string, areaId string, region string, ...) ApiAddRoutesToRoutingTableRequest + AddRoutesToRoutingTableExecute func(r ApiAddRoutesToRoutingTableRequest) (*RouteListResponse, error) + AddRoutingTableToArea func(ctx context.Context, organizationId string, areaId string, region string) ApiAddRoutingTableToAreaRequest + AddRoutingTableToAreaExecute func(r ApiAddRoutingTableToAreaRequest) (*RoutingTable, error) + CreateNetwork func(ctx context.Context, projectId string, region string) ApiCreateNetworkRequest + CreateNetworkExecute func(r ApiCreateNetworkRequest) (*Network, error) + DeleteNetwork func(ctx context.Context, projectId string, region string, networkId string) ApiDeleteNetworkRequest + DeleteNetworkExecute func(r ApiDeleteNetworkRequest) error + DeleteRouteFromRoutingTable func(ctx context.Context, organizationId string, areaId string, region string, ...) ApiDeleteRouteFromRoutingTableRequest + DeleteRouteFromRoutingTableExecute func(r ApiDeleteRouteFromRoutingTableRequest) error + DeleteRoutingTableFromArea func(ctx context.Context, organizationId string, areaId string, region string, ...) ApiDeleteRoutingTableFromAreaRequest + DeleteRoutingTableFromAreaExecute func(r ApiDeleteRoutingTableFromAreaRequest) error + GetNetwork func(ctx context.Context, projectId string, region string, networkId string) ApiGetNetworkRequest + GetNetworkExecute func(r ApiGetNetworkRequest) (*Network, error) + GetRouteOfRoutingTable func(ctx context.Context, organizationId string, areaId string, region string, ...) ApiGetRouteOfRoutingTableRequest + GetRouteOfRoutingTableExecute func(r ApiGetRouteOfRoutingTableRequest) (*Route, error) + GetRoutingTableOfArea func(ctx context.Context, organizationId string, areaId string, region string, ...) ApiGetRoutingTableOfAreaRequest + GetRoutingTableOfAreaExecute func(r ApiGetRoutingTableOfAreaRequest) (*RoutingTable, error) + ListNetworks func(ctx context.Context, projectId string, region string) ApiListNetworksRequest + ListNetworksExecute func(r ApiListNetworksRequest) (*NetworkListResponse, error) + ListNetworksOfRoutingTable func(ctx context.Context, organizationId string, areaId string, region string, ...) ApiListNetworksOfRoutingTableRequest + ListNetworksOfRoutingTableExecute func(r ApiListNetworksOfRoutingTableRequest) (*NetworkListResponse, error) + ListRoutesOfRoutingTable func(ctx context.Context, organizationId string, areaId string, region string, ...) ApiListRoutesOfRoutingTableRequest + ListRoutesOfRoutingTableExecute func(r ApiListRoutesOfRoutingTableRequest) (*RouteListResponse, error) + ListRoutingTablesOfArea func(ctx context.Context, organizationId string, areaId string, region string) ApiListRoutingTablesOfAreaRequest + ListRoutingTablesOfAreaExecute func(r ApiListRoutingTablesOfAreaRequest) (*RoutingTableListResponse, error) + PartialUpdateNetwork func(ctx context.Context, projectId string, region string, networkId string) ApiPartialUpdateNetworkRequest + PartialUpdateNetworkExecute func(r ApiPartialUpdateNetworkRequest) error + UpdateRouteOfRoutingTable func(ctx context.Context, organizationId string, areaId string, region string, ...) ApiUpdateRouteOfRoutingTableRequest + UpdateRouteOfRoutingTableExecute func(r ApiUpdateRouteOfRoutingTableRequest) (*Route, error) + UpdateRoutingTableOfArea func(ctx context.Context, organizationId string, areaId string, region string, ...) ApiUpdateRoutingTableOfAreaRequest + UpdateRoutingTableOfAreaExecute func(r ApiUpdateRoutingTableOfAreaRequest) (*RoutingTable, error) + type DefaultAPIService service + func (a *DefaultAPIService) AddRoutesToRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiAddRoutesToRoutingTableRequest + func (a *DefaultAPIService) AddRoutesToRoutingTableExecute(r ApiAddRoutesToRoutingTableRequest) (*RouteListResponse, error) + func (a *DefaultAPIService) AddRoutingTableToArea(ctx context.Context, organizationId string, areaId string, region string) ApiAddRoutingTableToAreaRequest + func (a *DefaultAPIService) AddRoutingTableToAreaExecute(r ApiAddRoutingTableToAreaRequest) (*RoutingTable, error) + func (a *DefaultAPIService) CreateNetwork(ctx context.Context, projectId string, region string) ApiCreateNetworkRequest + func (a *DefaultAPIService) CreateNetworkExecute(r ApiCreateNetworkRequest) (*Network, error) + func (a *DefaultAPIService) DeleteNetwork(ctx context.Context, projectId string, region string, networkId string) ApiDeleteNetworkRequest + func (a *DefaultAPIService) DeleteNetworkExecute(r ApiDeleteNetworkRequest) error + func (a *DefaultAPIService) DeleteRouteFromRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiDeleteRouteFromRoutingTableRequest + func (a *DefaultAPIService) DeleteRouteFromRoutingTableExecute(r ApiDeleteRouteFromRoutingTableRequest) error + func (a *DefaultAPIService) DeleteRoutingTableFromArea(ctx context.Context, organizationId string, areaId string, region string, ...) ApiDeleteRoutingTableFromAreaRequest + func (a *DefaultAPIService) DeleteRoutingTableFromAreaExecute(r ApiDeleteRoutingTableFromAreaRequest) error + func (a *DefaultAPIService) GetNetwork(ctx context.Context, projectId string, region string, networkId string) ApiGetNetworkRequest + func (a *DefaultAPIService) GetNetworkExecute(r ApiGetNetworkRequest) (*Network, error) + func (a *DefaultAPIService) GetRouteOfRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiGetRouteOfRoutingTableRequest + func (a *DefaultAPIService) GetRouteOfRoutingTableExecute(r ApiGetRouteOfRoutingTableRequest) (*Route, error) + func (a *DefaultAPIService) GetRoutingTableOfArea(ctx context.Context, organizationId string, areaId string, region string, ...) ApiGetRoutingTableOfAreaRequest + func (a *DefaultAPIService) GetRoutingTableOfAreaExecute(r ApiGetRoutingTableOfAreaRequest) (*RoutingTable, error) + func (a *DefaultAPIService) ListNetworks(ctx context.Context, projectId string, region string) ApiListNetworksRequest + func (a *DefaultAPIService) ListNetworksExecute(r ApiListNetworksRequest) (*NetworkListResponse, error) + func (a *DefaultAPIService) ListNetworksOfRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiListNetworksOfRoutingTableRequest + func (a *DefaultAPIService) ListNetworksOfRoutingTableExecute(r ApiListNetworksOfRoutingTableRequest) (*NetworkListResponse, error) + func (a *DefaultAPIService) ListRoutesOfRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiListRoutesOfRoutingTableRequest + func (a *DefaultAPIService) ListRoutesOfRoutingTableExecute(r ApiListRoutesOfRoutingTableRequest) (*RouteListResponse, error) + func (a *DefaultAPIService) ListRoutingTablesOfArea(ctx context.Context, organizationId string, areaId string, region string) ApiListRoutingTablesOfAreaRequest + func (a *DefaultAPIService) ListRoutingTablesOfAreaExecute(r ApiListRoutingTablesOfAreaRequest) (*RoutingTableListResponse, error) + func (a *DefaultAPIService) PartialUpdateNetwork(ctx context.Context, projectId string, region string, networkId string) ApiPartialUpdateNetworkRequest + func (a *DefaultAPIService) PartialUpdateNetworkExecute(r ApiPartialUpdateNetworkRequest) error + func (a *DefaultAPIService) UpdateRouteOfRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiUpdateRouteOfRoutingTableRequest + func (a *DefaultAPIService) UpdateRouteOfRoutingTableExecute(r ApiUpdateRouteOfRoutingTableRequest) (*Route, error) + func (a *DefaultAPIService) UpdateRoutingTableOfArea(ctx context.Context, organizationId string, areaId string, region string, ...) ApiUpdateRoutingTableOfAreaRequest + func (a *DefaultAPIService) UpdateRoutingTableOfAreaExecute(r ApiUpdateRoutingTableOfAreaRequest) (*RoutingTable, error) + type DefaultAPIServiceMock struct + AddRoutesToRoutingTableExecuteMock *func(r ApiAddRoutesToRoutingTableRequest) (*RouteListResponse, error) + AddRoutingTableToAreaExecuteMock *func(r ApiAddRoutingTableToAreaRequest) (*RoutingTable, error) + CreateNetworkExecuteMock *func(r ApiCreateNetworkRequest) (*Network, error) + DeleteNetworkExecuteMock *func(r ApiDeleteNetworkRequest) error + DeleteRouteFromRoutingTableExecuteMock *func(r ApiDeleteRouteFromRoutingTableRequest) error + DeleteRoutingTableFromAreaExecuteMock *func(r ApiDeleteRoutingTableFromAreaRequest) error + GetNetworkExecuteMock *func(r ApiGetNetworkRequest) (*Network, error) + GetRouteOfRoutingTableExecuteMock *func(r ApiGetRouteOfRoutingTableRequest) (*Route, error) + GetRoutingTableOfAreaExecuteMock *func(r ApiGetRoutingTableOfAreaRequest) (*RoutingTable, error) + ListNetworksExecuteMock *func(r ApiListNetworksRequest) (*NetworkListResponse, error) + ListNetworksOfRoutingTableExecuteMock *func(r ApiListNetworksOfRoutingTableRequest) (*NetworkListResponse, error) + ListRoutesOfRoutingTableExecuteMock *func(r ApiListRoutesOfRoutingTableRequest) (*RouteListResponse, error) + ListRoutingTablesOfAreaExecuteMock *func(r ApiListRoutingTablesOfAreaRequest) (*RoutingTableListResponse, error) + PartialUpdateNetworkExecuteMock *func(r ApiPartialUpdateNetworkRequest) error + UpdateRouteOfRoutingTableExecuteMock *func(r ApiUpdateRouteOfRoutingTableRequest) (*Route, error) + UpdateRoutingTableOfAreaExecuteMock *func(r ApiUpdateRoutingTableOfAreaRequest) (*RoutingTable, error) + func (a DefaultAPIServiceMock) AddRoutesToRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiAddRoutesToRoutingTableRequest + func (a DefaultAPIServiceMock) AddRoutesToRoutingTableExecute(r ApiAddRoutesToRoutingTableRequest) (*RouteListResponse, error) + func (a DefaultAPIServiceMock) AddRoutingTableToArea(ctx context.Context, organizationId string, areaId string, region string) ApiAddRoutingTableToAreaRequest + func (a DefaultAPIServiceMock) AddRoutingTableToAreaExecute(r ApiAddRoutingTableToAreaRequest) (*RoutingTable, error) + func (a DefaultAPIServiceMock) CreateNetwork(ctx context.Context, projectId string, region string) ApiCreateNetworkRequest + func (a DefaultAPIServiceMock) CreateNetworkExecute(r ApiCreateNetworkRequest) (*Network, error) + func (a DefaultAPIServiceMock) DeleteNetwork(ctx context.Context, projectId string, region string, networkId string) ApiDeleteNetworkRequest + func (a DefaultAPIServiceMock) DeleteNetworkExecute(r ApiDeleteNetworkRequest) error + func (a DefaultAPIServiceMock) DeleteRouteFromRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiDeleteRouteFromRoutingTableRequest + func (a DefaultAPIServiceMock) DeleteRouteFromRoutingTableExecute(r ApiDeleteRouteFromRoutingTableRequest) error + func (a DefaultAPIServiceMock) DeleteRoutingTableFromArea(ctx context.Context, organizationId string, areaId string, region string, ...) ApiDeleteRoutingTableFromAreaRequest + func (a DefaultAPIServiceMock) DeleteRoutingTableFromAreaExecute(r ApiDeleteRoutingTableFromAreaRequest) error + func (a DefaultAPIServiceMock) GetNetwork(ctx context.Context, projectId string, region string, networkId string) ApiGetNetworkRequest + func (a DefaultAPIServiceMock) GetNetworkExecute(r ApiGetNetworkRequest) (*Network, error) + func (a DefaultAPIServiceMock) GetRouteOfRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiGetRouteOfRoutingTableRequest + func (a DefaultAPIServiceMock) GetRouteOfRoutingTableExecute(r ApiGetRouteOfRoutingTableRequest) (*Route, error) + func (a DefaultAPIServiceMock) GetRoutingTableOfArea(ctx context.Context, organizationId string, areaId string, region string, ...) ApiGetRoutingTableOfAreaRequest + func (a DefaultAPIServiceMock) GetRoutingTableOfAreaExecute(r ApiGetRoutingTableOfAreaRequest) (*RoutingTable, error) + func (a DefaultAPIServiceMock) ListNetworks(ctx context.Context, projectId string, region string) ApiListNetworksRequest + func (a DefaultAPIServiceMock) ListNetworksExecute(r ApiListNetworksRequest) (*NetworkListResponse, error) + func (a DefaultAPIServiceMock) ListNetworksOfRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiListNetworksOfRoutingTableRequest + func (a DefaultAPIServiceMock) ListNetworksOfRoutingTableExecute(r ApiListNetworksOfRoutingTableRequest) (*NetworkListResponse, error) + func (a DefaultAPIServiceMock) ListRoutesOfRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiListRoutesOfRoutingTableRequest + func (a DefaultAPIServiceMock) ListRoutesOfRoutingTableExecute(r ApiListRoutesOfRoutingTableRequest) (*RouteListResponse, error) + func (a DefaultAPIServiceMock) ListRoutingTablesOfArea(ctx context.Context, organizationId string, areaId string, region string) ApiListRoutingTablesOfAreaRequest + func (a DefaultAPIServiceMock) ListRoutingTablesOfAreaExecute(r ApiListRoutingTablesOfAreaRequest) (*RoutingTableListResponse, error) + func (a DefaultAPIServiceMock) PartialUpdateNetwork(ctx context.Context, projectId string, region string, networkId string) ApiPartialUpdateNetworkRequest + func (a DefaultAPIServiceMock) PartialUpdateNetworkExecute(r ApiPartialUpdateNetworkRequest) error + func (a DefaultAPIServiceMock) UpdateRouteOfRoutingTable(ctx context.Context, organizationId string, areaId string, region string, ...) ApiUpdateRouteOfRoutingTableRequest + func (a DefaultAPIServiceMock) UpdateRouteOfRoutingTableExecute(r ApiUpdateRouteOfRoutingTableRequest) (*Route, error) + func (a DefaultAPIServiceMock) UpdateRoutingTableOfArea(ctx context.Context, organizationId string, areaId string, region string, ...) ApiUpdateRoutingTableOfAreaRequest + func (a DefaultAPIServiceMock) UpdateRoutingTableOfAreaExecute(r ApiUpdateRoutingTableOfAreaRequest) (*RoutingTable, error) + type DestinationCIDRv4 struct + Type string + Value string + func NewDestinationCIDRv4(types string, value string) *DestinationCIDRv4 + func NewDestinationCIDRv4WithDefaults() *DestinationCIDRv4 + func (o *DestinationCIDRv4) GetType() string + func (o *DestinationCIDRv4) GetTypeOk() (*string, bool) + func (o *DestinationCIDRv4) GetValue() string + func (o *DestinationCIDRv4) GetValueOk() (*string, bool) + func (o *DestinationCIDRv4) SetType(v string) + func (o *DestinationCIDRv4) SetValue(v string) + func (o *DestinationCIDRv4) UnmarshalJSON(data []byte) (err error) + func (o DestinationCIDRv4) MarshalJSON() ([]byte, error) + func (o DestinationCIDRv4) ToMap() (map[string]interface{}, error) + type DestinationCIDRv6 struct + Type string + Value string + func NewDestinationCIDRv6(types string, value string) *DestinationCIDRv6 + func NewDestinationCIDRv6WithDefaults() *DestinationCIDRv6 + func (o *DestinationCIDRv6) GetType() string + func (o *DestinationCIDRv6) GetTypeOk() (*string, bool) + func (o *DestinationCIDRv6) GetValue() string + func (o *DestinationCIDRv6) GetValueOk() (*string, bool) + func (o *DestinationCIDRv6) SetType(v string) + func (o *DestinationCIDRv6) SetValue(v string) + func (o *DestinationCIDRv6) UnmarshalJSON(data []byte) (err error) + func (o DestinationCIDRv6) MarshalJSON() ([]byte, error) + func (o DestinationCIDRv6) ToMap() (map[string]interface{}, error) + type Error struct + Code int64 + Msg string + func NewError(code int64, msg string) *Error + func NewErrorWithDefaults() *Error + func (o *Error) GetCode() int64 + func (o *Error) GetCodeOk() (*int64, bool) + func (o *Error) GetMsg() string + func (o *Error) GetMsgOk() (*string, bool) + func (o *Error) SetCode(v int64) + func (o *Error) SetMsg(v string) + func (o *Error) UnmarshalJSON(data []byte) (err error) + func (o Error) MarshalJSON() ([]byte, error) + func (o Error) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type Network struct + CreatedAt *time.Time + Dhcp *bool + Id string + Ipv4 *NetworkIPv4 + Ipv6 *NetworkIPv6 + Labels map[string]interface{} + Name string + Routed *bool + RoutingTableId *string + Status string + UpdatedAt *time.Time + func NewNetwork(id string, name string, status string) *Network + func NewNetworkWithDefaults() *Network + func (o *Network) GetCreatedAt() time.Time + func (o *Network) GetCreatedAtOk() (*time.Time, bool) + func (o *Network) GetDhcp() bool + func (o *Network) GetDhcpOk() (*bool, bool) + func (o *Network) GetId() string + func (o *Network) GetIdOk() (*string, bool) + func (o *Network) GetIpv4() NetworkIPv4 + func (o *Network) GetIpv4Ok() (*NetworkIPv4, bool) + func (o *Network) GetIpv6() NetworkIPv6 + func (o *Network) GetIpv6Ok() (*NetworkIPv6, bool) + func (o *Network) GetLabels() map[string]interface{} + func (o *Network) GetLabelsOk() (map[string]interface{}, bool) + func (o *Network) GetName() string + func (o *Network) GetNameOk() (*string, bool) + func (o *Network) GetRouted() bool + func (o *Network) GetRoutedOk() (*bool, bool) + func (o *Network) GetRoutingTableId() string + func (o *Network) GetRoutingTableIdOk() (*string, bool) + func (o *Network) GetStatus() string + func (o *Network) GetStatusOk() (*string, bool) + func (o *Network) GetUpdatedAt() time.Time + func (o *Network) GetUpdatedAtOk() (*time.Time, bool) + func (o *Network) HasCreatedAt() bool + func (o *Network) HasDhcp() bool + func (o *Network) HasIpv4() bool + func (o *Network) HasIpv6() bool + func (o *Network) HasLabels() bool + func (o *Network) HasRouted() bool + func (o *Network) HasRoutingTableId() bool + func (o *Network) HasUpdatedAt() bool + func (o *Network) SetCreatedAt(v time.Time) + func (o *Network) SetDhcp(v bool) + func (o *Network) SetId(v string) + func (o *Network) SetIpv4(v NetworkIPv4) + func (o *Network) SetIpv6(v NetworkIPv6) + func (o *Network) SetLabels(v map[string]interface{}) + func (o *Network) SetName(v string) + func (o *Network) SetRouted(v bool) + func (o *Network) SetRoutingTableId(v string) + func (o *Network) SetStatus(v string) + func (o *Network) SetUpdatedAt(v time.Time) + func (o *Network) UnmarshalJSON(data []byte) (err error) + func (o Network) MarshalJSON() ([]byte, error) + func (o Network) ToMap() (map[string]interface{}, error) + type NetworkIPv4 struct + Gateway NullableString + Nameservers []string + Prefixes []string + PublicIp *string + func NewNetworkIPv4(prefixes []string) *NetworkIPv4 + func NewNetworkIPv4WithDefaults() *NetworkIPv4 + func (o *NetworkIPv4) GetGateway() string + func (o *NetworkIPv4) GetGatewayOk() (*string, bool) + func (o *NetworkIPv4) GetNameservers() []string + func (o *NetworkIPv4) GetNameserversOk() ([]string, bool) + func (o *NetworkIPv4) GetPrefixes() []string + func (o *NetworkIPv4) GetPrefixesOk() ([]string, bool) + func (o *NetworkIPv4) GetPublicIp() string + func (o *NetworkIPv4) GetPublicIpOk() (*string, bool) + func (o *NetworkIPv4) HasGateway() bool + func (o *NetworkIPv4) HasNameservers() bool + func (o *NetworkIPv4) HasPublicIp() bool + func (o *NetworkIPv4) SetGateway(v string) + func (o *NetworkIPv4) SetGatewayNil() + func (o *NetworkIPv4) SetNameservers(v []string) + func (o *NetworkIPv4) SetPrefixes(v []string) + func (o *NetworkIPv4) SetPublicIp(v string) + func (o *NetworkIPv4) UnmarshalJSON(data []byte) (err error) + func (o *NetworkIPv4) UnsetGateway() + func (o NetworkIPv4) MarshalJSON() ([]byte, error) + func (o NetworkIPv4) ToMap() (map[string]interface{}, error) + type NetworkIPv6 struct + Gateway NullableString + Nameservers []string + Prefixes []string + func NewNetworkIPv6(prefixes []string) *NetworkIPv6 + func NewNetworkIPv6WithDefaults() *NetworkIPv6 + func (o *NetworkIPv6) GetGateway() string + func (o *NetworkIPv6) GetGatewayOk() (*string, bool) + func (o *NetworkIPv6) GetNameservers() []string + func (o *NetworkIPv6) GetNameserversOk() ([]string, bool) + func (o *NetworkIPv6) GetPrefixes() []string + func (o *NetworkIPv6) GetPrefixesOk() ([]string, bool) + func (o *NetworkIPv6) HasGateway() bool + func (o *NetworkIPv6) HasNameservers() bool + func (o *NetworkIPv6) SetGateway(v string) + func (o *NetworkIPv6) SetGatewayNil() + func (o *NetworkIPv6) SetNameservers(v []string) + func (o *NetworkIPv6) SetPrefixes(v []string) + func (o *NetworkIPv6) UnmarshalJSON(data []byte) (err error) + func (o *NetworkIPv6) UnsetGateway() + func (o NetworkIPv6) MarshalJSON() ([]byte, error) + func (o NetworkIPv6) ToMap() (map[string]interface{}, error) + type NetworkListResponse struct + Items []Network + func NewNetworkListResponse(items []Network) *NetworkListResponse + func NewNetworkListResponseWithDefaults() *NetworkListResponse + func (o *NetworkListResponse) GetItems() []Network + func (o *NetworkListResponse) GetItemsOk() ([]Network, bool) + func (o *NetworkListResponse) SetItems(v []Network) + func (o *NetworkListResponse) UnmarshalJSON(data []byte) (err error) + func (o NetworkListResponse) MarshalJSON() ([]byte, error) + func (o NetworkListResponse) ToMap() (map[string]interface{}, error) + type NexthopBlackhole struct + Type string + func NewNexthopBlackhole(types string) *NexthopBlackhole + func NewNexthopBlackholeWithDefaults() *NexthopBlackhole + func (o *NexthopBlackhole) GetType() string + func (o *NexthopBlackhole) GetTypeOk() (*string, bool) + func (o *NexthopBlackhole) SetType(v string) + func (o *NexthopBlackhole) UnmarshalJSON(data []byte) (err error) + func (o NexthopBlackhole) MarshalJSON() ([]byte, error) + func (o NexthopBlackhole) ToMap() (map[string]interface{}, error) + type NexthopIPv4 struct + Type string + Value string + func NewNexthopIPv4(types string, value string) *NexthopIPv4 + func NewNexthopIPv4WithDefaults() *NexthopIPv4 + func (o *NexthopIPv4) GetType() string + func (o *NexthopIPv4) GetTypeOk() (*string, bool) + func (o *NexthopIPv4) GetValue() string + func (o *NexthopIPv4) GetValueOk() (*string, bool) + func (o *NexthopIPv4) SetType(v string) + func (o *NexthopIPv4) SetValue(v string) + func (o *NexthopIPv4) UnmarshalJSON(data []byte) (err error) + func (o NexthopIPv4) MarshalJSON() ([]byte, error) + func (o NexthopIPv4) ToMap() (map[string]interface{}, error) + type NexthopIPv6 struct + Type string + Value string + func NewNexthopIPv6(types string, value string) *NexthopIPv6 + func NewNexthopIPv6WithDefaults() *NexthopIPv6 + func (o *NexthopIPv6) GetType() string + func (o *NexthopIPv6) GetTypeOk() (*string, bool) + func (o *NexthopIPv6) GetValue() string + func (o *NexthopIPv6) GetValueOk() (*string, bool) + func (o *NexthopIPv6) SetType(v string) + func (o *NexthopIPv6) SetValue(v string) + func (o *NexthopIPv6) UnmarshalJSON(data []byte) (err error) + func (o NexthopIPv6) MarshalJSON() ([]byte, error) + func (o NexthopIPv6) ToMap() (map[string]interface{}, error) + type NexthopInternet struct + Type string + func NewNexthopInternet(types string) *NexthopInternet + func NewNexthopInternetWithDefaults() *NexthopInternet + func (o *NexthopInternet) GetType() string + func (o *NexthopInternet) GetTypeOk() (*string, bool) + func (o *NexthopInternet) SetType(v string) + func (o *NexthopInternet) UnmarshalJSON(data []byte) (err error) + func (o NexthopInternet) MarshalJSON() ([]byte, error) + func (o NexthopInternet) ToMap() (map[string]interface{}, error) + type NullableAddRoutesToRoutingTablePayload struct + func NewNullableAddRoutesToRoutingTablePayload(val *AddRoutesToRoutingTablePayload) *NullableAddRoutesToRoutingTablePayload + func (v *NullableAddRoutesToRoutingTablePayload) Set(val *AddRoutesToRoutingTablePayload) + func (v *NullableAddRoutesToRoutingTablePayload) UnmarshalJSON(src []byte) error + func (v *NullableAddRoutesToRoutingTablePayload) Unset() + func (v NullableAddRoutesToRoutingTablePayload) Get() *AddRoutesToRoutingTablePayload + func (v NullableAddRoutesToRoutingTablePayload) IsSet() bool + func (v NullableAddRoutesToRoutingTablePayload) MarshalJSON() ([]byte, error) + type NullableAddRoutingTableToAreaPayload struct + func NewNullableAddRoutingTableToAreaPayload(val *AddRoutingTableToAreaPayload) *NullableAddRoutingTableToAreaPayload + func (v *NullableAddRoutingTableToAreaPayload) Set(val *AddRoutingTableToAreaPayload) + func (v *NullableAddRoutingTableToAreaPayload) UnmarshalJSON(src []byte) error + func (v *NullableAddRoutingTableToAreaPayload) Unset() + func (v NullableAddRoutingTableToAreaPayload) Get() *AddRoutingTableToAreaPayload + func (v NullableAddRoutingTableToAreaPayload) IsSet() bool + func (v NullableAddRoutingTableToAreaPayload) MarshalJSON() ([]byte, error) + type NullableBool struct + func NewNullableBool(val *bool) *NullableBool + func (v *NullableBool) Set(val *bool) + func (v *NullableBool) UnmarshalJSON(src []byte) error + func (v *NullableBool) Unset() + func (v NullableBool) Get() *bool + func (v NullableBool) IsSet() bool + func (v NullableBool) MarshalJSON() ([]byte, error) + type NullableCreateNetworkIPv4 struct + func NewNullableCreateNetworkIPv4(val *CreateNetworkIPv4) *NullableCreateNetworkIPv4 + func (v *NullableCreateNetworkIPv4) Set(val *CreateNetworkIPv4) + func (v *NullableCreateNetworkIPv4) UnmarshalJSON(src []byte) error + func (v *NullableCreateNetworkIPv4) Unset() + func (v NullableCreateNetworkIPv4) Get() *CreateNetworkIPv4 + func (v NullableCreateNetworkIPv4) IsSet() bool + func (v NullableCreateNetworkIPv4) MarshalJSON() ([]byte, error) + type NullableCreateNetworkIPv4WithPrefix struct + func NewNullableCreateNetworkIPv4WithPrefix(val *CreateNetworkIPv4WithPrefix) *NullableCreateNetworkIPv4WithPrefix + func (v *NullableCreateNetworkIPv4WithPrefix) Set(val *CreateNetworkIPv4WithPrefix) + func (v *NullableCreateNetworkIPv4WithPrefix) UnmarshalJSON(src []byte) error + func (v *NullableCreateNetworkIPv4WithPrefix) Unset() + func (v NullableCreateNetworkIPv4WithPrefix) Get() *CreateNetworkIPv4WithPrefix + func (v NullableCreateNetworkIPv4WithPrefix) IsSet() bool + func (v NullableCreateNetworkIPv4WithPrefix) MarshalJSON() ([]byte, error) + type NullableCreateNetworkIPv4WithPrefixLength struct + func NewNullableCreateNetworkIPv4WithPrefixLength(val *CreateNetworkIPv4WithPrefixLength) *NullableCreateNetworkIPv4WithPrefixLength + func (v *NullableCreateNetworkIPv4WithPrefixLength) Set(val *CreateNetworkIPv4WithPrefixLength) + func (v *NullableCreateNetworkIPv4WithPrefixLength) UnmarshalJSON(src []byte) error + func (v *NullableCreateNetworkIPv4WithPrefixLength) Unset() + func (v NullableCreateNetworkIPv4WithPrefixLength) Get() *CreateNetworkIPv4WithPrefixLength + func (v NullableCreateNetworkIPv4WithPrefixLength) IsSet() bool + func (v NullableCreateNetworkIPv4WithPrefixLength) MarshalJSON() ([]byte, error) + type NullableCreateNetworkIPv6 struct + func NewNullableCreateNetworkIPv6(val *CreateNetworkIPv6) *NullableCreateNetworkIPv6 + func (v *NullableCreateNetworkIPv6) Set(val *CreateNetworkIPv6) + func (v *NullableCreateNetworkIPv6) UnmarshalJSON(src []byte) error + func (v *NullableCreateNetworkIPv6) Unset() + func (v NullableCreateNetworkIPv6) Get() *CreateNetworkIPv6 + func (v NullableCreateNetworkIPv6) IsSet() bool + func (v NullableCreateNetworkIPv6) MarshalJSON() ([]byte, error) + type NullableCreateNetworkIPv6WithPrefix struct + func NewNullableCreateNetworkIPv6WithPrefix(val *CreateNetworkIPv6WithPrefix) *NullableCreateNetworkIPv6WithPrefix + func (v *NullableCreateNetworkIPv6WithPrefix) Set(val *CreateNetworkIPv6WithPrefix) + func (v *NullableCreateNetworkIPv6WithPrefix) UnmarshalJSON(src []byte) error + func (v *NullableCreateNetworkIPv6WithPrefix) Unset() + func (v NullableCreateNetworkIPv6WithPrefix) Get() *CreateNetworkIPv6WithPrefix + func (v NullableCreateNetworkIPv6WithPrefix) IsSet() bool + func (v NullableCreateNetworkIPv6WithPrefix) MarshalJSON() ([]byte, error) + type NullableCreateNetworkIPv6WithPrefixLength struct + func NewNullableCreateNetworkIPv6WithPrefixLength(val *CreateNetworkIPv6WithPrefixLength) *NullableCreateNetworkIPv6WithPrefixLength + func (v *NullableCreateNetworkIPv6WithPrefixLength) Set(val *CreateNetworkIPv6WithPrefixLength) + func (v *NullableCreateNetworkIPv6WithPrefixLength) UnmarshalJSON(src []byte) error + func (v *NullableCreateNetworkIPv6WithPrefixLength) Unset() + func (v NullableCreateNetworkIPv6WithPrefixLength) Get() *CreateNetworkIPv6WithPrefixLength + func (v NullableCreateNetworkIPv6WithPrefixLength) IsSet() bool + func (v NullableCreateNetworkIPv6WithPrefixLength) MarshalJSON() ([]byte, error) + type NullableCreateNetworkPayload struct + func NewNullableCreateNetworkPayload(val *CreateNetworkPayload) *NullableCreateNetworkPayload + func (v *NullableCreateNetworkPayload) Set(val *CreateNetworkPayload) + func (v *NullableCreateNetworkPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateNetworkPayload) Unset() + func (v NullableCreateNetworkPayload) Get() *CreateNetworkPayload + func (v NullableCreateNetworkPayload) IsSet() bool + func (v NullableCreateNetworkPayload) MarshalJSON() ([]byte, error) + type NullableDestinationCIDRv4 struct + func NewNullableDestinationCIDRv4(val *DestinationCIDRv4) *NullableDestinationCIDRv4 + func (v *NullableDestinationCIDRv4) Set(val *DestinationCIDRv4) + func (v *NullableDestinationCIDRv4) UnmarshalJSON(src []byte) error + func (v *NullableDestinationCIDRv4) Unset() + func (v NullableDestinationCIDRv4) Get() *DestinationCIDRv4 + func (v NullableDestinationCIDRv4) IsSet() bool + func (v NullableDestinationCIDRv4) MarshalJSON() ([]byte, error) + type NullableDestinationCIDRv6 struct + func NewNullableDestinationCIDRv6(val *DestinationCIDRv6) *NullableDestinationCIDRv6 + func (v *NullableDestinationCIDRv6) Set(val *DestinationCIDRv6) + func (v *NullableDestinationCIDRv6) UnmarshalJSON(src []byte) error + func (v *NullableDestinationCIDRv6) Unset() + func (v NullableDestinationCIDRv6) Get() *DestinationCIDRv6 + func (v NullableDestinationCIDRv6) IsSet() bool + func (v NullableDestinationCIDRv6) MarshalJSON() ([]byte, error) + type NullableError struct + func NewNullableError(val *Error) *NullableError + func (v *NullableError) Set(val *Error) + func (v *NullableError) UnmarshalJSON(src []byte) error + func (v *NullableError) Unset() + func (v NullableError) Get() *Error + func (v NullableError) IsSet() bool + func (v NullableError) MarshalJSON() ([]byte, error) + type NullableFloat32 struct + func NewNullableFloat32(val *float32) *NullableFloat32 + func (v *NullableFloat32) Set(val *float32) + func (v *NullableFloat32) UnmarshalJSON(src []byte) error + func (v *NullableFloat32) Unset() + func (v NullableFloat32) Get() *float32 + func (v NullableFloat32) IsSet() bool + func (v NullableFloat32) MarshalJSON() ([]byte, error) + type NullableFloat64 struct + func NewNullableFloat64(val *float64) *NullableFloat64 + func (v *NullableFloat64) Set(val *float64) + func (v *NullableFloat64) UnmarshalJSON(src []byte) error + func (v *NullableFloat64) Unset() + func (v NullableFloat64) Get() *float64 + func (v NullableFloat64) IsSet() bool + func (v NullableFloat64) MarshalJSON() ([]byte, error) + type NullableInt struct + func NewNullableInt(val *int) *NullableInt + func (v *NullableInt) Set(val *int) + func (v *NullableInt) UnmarshalJSON(src []byte) error + func (v *NullableInt) Unset() + func (v NullableInt) Get() *int + func (v NullableInt) IsSet() bool + func (v NullableInt) MarshalJSON() ([]byte, error) + type NullableInt32 struct + func NewNullableInt32(val *int32) *NullableInt32 + func (v *NullableInt32) Set(val *int32) + func (v *NullableInt32) UnmarshalJSON(src []byte) error + func (v *NullableInt32) Unset() + func (v NullableInt32) Get() *int32 + func (v NullableInt32) IsSet() bool + func (v NullableInt32) MarshalJSON() ([]byte, error) + type NullableInt64 struct + func NewNullableInt64(val *int64) *NullableInt64 + func (v *NullableInt64) Set(val *int64) + func (v *NullableInt64) UnmarshalJSON(src []byte) error + func (v *NullableInt64) Unset() + func (v NullableInt64) Get() *int64 + func (v NullableInt64) IsSet() bool + func (v NullableInt64) MarshalJSON() ([]byte, error) + type NullableNetwork struct + func NewNullableNetwork(val *Network) *NullableNetwork + func (v *NullableNetwork) Set(val *Network) + func (v *NullableNetwork) UnmarshalJSON(src []byte) error + func (v *NullableNetwork) Unset() + func (v NullableNetwork) Get() *Network + func (v NullableNetwork) IsSet() bool + func (v NullableNetwork) MarshalJSON() ([]byte, error) + type NullableNetworkIPv4 struct + func NewNullableNetworkIPv4(val *NetworkIPv4) *NullableNetworkIPv4 + func (v *NullableNetworkIPv4) Set(val *NetworkIPv4) + func (v *NullableNetworkIPv4) UnmarshalJSON(src []byte) error + func (v *NullableNetworkIPv4) Unset() + func (v NullableNetworkIPv4) Get() *NetworkIPv4 + func (v NullableNetworkIPv4) IsSet() bool + func (v NullableNetworkIPv4) MarshalJSON() ([]byte, error) + type NullableNetworkIPv6 struct + func NewNullableNetworkIPv6(val *NetworkIPv6) *NullableNetworkIPv6 + func (v *NullableNetworkIPv6) Set(val *NetworkIPv6) + func (v *NullableNetworkIPv6) UnmarshalJSON(src []byte) error + func (v *NullableNetworkIPv6) Unset() + func (v NullableNetworkIPv6) Get() *NetworkIPv6 + func (v NullableNetworkIPv6) IsSet() bool + func (v NullableNetworkIPv6) MarshalJSON() ([]byte, error) + type NullableNetworkListResponse struct + func NewNullableNetworkListResponse(val *NetworkListResponse) *NullableNetworkListResponse + func (v *NullableNetworkListResponse) Set(val *NetworkListResponse) + func (v *NullableNetworkListResponse) UnmarshalJSON(src []byte) error + func (v *NullableNetworkListResponse) Unset() + func (v NullableNetworkListResponse) Get() *NetworkListResponse + func (v NullableNetworkListResponse) IsSet() bool + func (v NullableNetworkListResponse) MarshalJSON() ([]byte, error) + type NullableNexthopBlackhole struct + func NewNullableNexthopBlackhole(val *NexthopBlackhole) *NullableNexthopBlackhole + func (v *NullableNexthopBlackhole) Set(val *NexthopBlackhole) + func (v *NullableNexthopBlackhole) UnmarshalJSON(src []byte) error + func (v *NullableNexthopBlackhole) Unset() + func (v NullableNexthopBlackhole) Get() *NexthopBlackhole + func (v NullableNexthopBlackhole) IsSet() bool + func (v NullableNexthopBlackhole) MarshalJSON() ([]byte, error) + type NullableNexthopIPv4 struct + func NewNullableNexthopIPv4(val *NexthopIPv4) *NullableNexthopIPv4 + func (v *NullableNexthopIPv4) Set(val *NexthopIPv4) + func (v *NullableNexthopIPv4) UnmarshalJSON(src []byte) error + func (v *NullableNexthopIPv4) Unset() + func (v NullableNexthopIPv4) Get() *NexthopIPv4 + func (v NullableNexthopIPv4) IsSet() bool + func (v NullableNexthopIPv4) MarshalJSON() ([]byte, error) + type NullableNexthopIPv6 struct + func NewNullableNexthopIPv6(val *NexthopIPv6) *NullableNexthopIPv6 + func (v *NullableNexthopIPv6) Set(val *NexthopIPv6) + func (v *NullableNexthopIPv6) UnmarshalJSON(src []byte) error + func (v *NullableNexthopIPv6) Unset() + func (v NullableNexthopIPv6) Get() *NexthopIPv6 + func (v NullableNexthopIPv6) IsSet() bool + func (v NullableNexthopIPv6) MarshalJSON() ([]byte, error) + type NullableNexthopInternet struct + func NewNullableNexthopInternet(val *NexthopInternet) *NullableNexthopInternet + func (v *NullableNexthopInternet) Set(val *NexthopInternet) + func (v *NullableNexthopInternet) UnmarshalJSON(src []byte) error + func (v *NullableNexthopInternet) Unset() + func (v NullableNexthopInternet) Get() *NexthopInternet + func (v NullableNexthopInternet) IsSet() bool + func (v NullableNexthopInternet) MarshalJSON() ([]byte, error) + type NullablePartialUpdateNetworkPayload struct + func NewNullablePartialUpdateNetworkPayload(val *PartialUpdateNetworkPayload) *NullablePartialUpdateNetworkPayload + func (v *NullablePartialUpdateNetworkPayload) Set(val *PartialUpdateNetworkPayload) + func (v *NullablePartialUpdateNetworkPayload) UnmarshalJSON(src []byte) error + func (v *NullablePartialUpdateNetworkPayload) Unset() + func (v NullablePartialUpdateNetworkPayload) Get() *PartialUpdateNetworkPayload + func (v NullablePartialUpdateNetworkPayload) IsSet() bool + func (v NullablePartialUpdateNetworkPayload) MarshalJSON() ([]byte, error) + type NullableRoute struct + func NewNullableRoute(val *Route) *NullableRoute + func (v *NullableRoute) Set(val *Route) + func (v *NullableRoute) UnmarshalJSON(src []byte) error + func (v *NullableRoute) Unset() + func (v NullableRoute) Get() *Route + func (v NullableRoute) IsSet() bool + func (v NullableRoute) MarshalJSON() ([]byte, error) + type NullableRouteDestination struct + func NewNullableRouteDestination(val *RouteDestination) *NullableRouteDestination + func (v *NullableRouteDestination) Set(val *RouteDestination) + func (v *NullableRouteDestination) UnmarshalJSON(src []byte) error + func (v *NullableRouteDestination) Unset() + func (v NullableRouteDestination) Get() *RouteDestination + func (v NullableRouteDestination) IsSet() bool + func (v NullableRouteDestination) MarshalJSON() ([]byte, error) + type NullableRouteListResponse struct + func NewNullableRouteListResponse(val *RouteListResponse) *NullableRouteListResponse + func (v *NullableRouteListResponse) Set(val *RouteListResponse) + func (v *NullableRouteListResponse) UnmarshalJSON(src []byte) error + func (v *NullableRouteListResponse) Unset() + func (v NullableRouteListResponse) Get() *RouteListResponse + func (v NullableRouteListResponse) IsSet() bool + func (v NullableRouteListResponse) MarshalJSON() ([]byte, error) + type NullableRouteNexthop struct + func NewNullableRouteNexthop(val *RouteNexthop) *NullableRouteNexthop + func (v *NullableRouteNexthop) Set(val *RouteNexthop) + func (v *NullableRouteNexthop) UnmarshalJSON(src []byte) error + func (v *NullableRouteNexthop) Unset() + func (v NullableRouteNexthop) Get() *RouteNexthop + func (v NullableRouteNexthop) IsSet() bool + func (v NullableRouteNexthop) MarshalJSON() ([]byte, error) + type NullableRoutingTable struct + func NewNullableRoutingTable(val *RoutingTable) *NullableRoutingTable + func (v *NullableRoutingTable) Set(val *RoutingTable) + func (v *NullableRoutingTable) UnmarshalJSON(src []byte) error + func (v *NullableRoutingTable) Unset() + func (v NullableRoutingTable) Get() *RoutingTable + func (v NullableRoutingTable) IsSet() bool + func (v NullableRoutingTable) MarshalJSON() ([]byte, error) + type NullableRoutingTableListResponse struct + func NewNullableRoutingTableListResponse(val *RoutingTableListResponse) *NullableRoutingTableListResponse + func (v *NullableRoutingTableListResponse) Set(val *RoutingTableListResponse) + func (v *NullableRoutingTableListResponse) UnmarshalJSON(src []byte) error + func (v *NullableRoutingTableListResponse) Unset() + func (v NullableRoutingTableListResponse) Get() *RoutingTableListResponse + func (v NullableRoutingTableListResponse) IsSet() bool + func (v NullableRoutingTableListResponse) MarshalJSON() ([]byte, error) + type NullableString struct + func NewNullableString(val *string) *NullableString + func (v *NullableString) Set(val *string) + func (v *NullableString) UnmarshalJSON(src []byte) error + func (v *NullableString) Unset() + func (v NullableString) Get() *string + func (v NullableString) IsSet() bool + func (v NullableString) MarshalJSON() ([]byte, error) + type NullableTime struct + func NewNullableTime(val *time.Time) *NullableTime + func (v *NullableTime) Set(val *time.Time) + func (v *NullableTime) UnmarshalJSON(src []byte) error + func (v *NullableTime) Unset() + func (v NullableTime) Get() *time.Time + func (v NullableTime) IsSet() bool + func (v NullableTime) MarshalJSON() ([]byte, error) + type NullableUpdateNetworkIPv4Body struct + func NewNullableUpdateNetworkIPv4Body(val *UpdateNetworkIPv4Body) *NullableUpdateNetworkIPv4Body + func (v *NullableUpdateNetworkIPv4Body) Set(val *UpdateNetworkIPv4Body) + func (v *NullableUpdateNetworkIPv4Body) UnmarshalJSON(src []byte) error + func (v *NullableUpdateNetworkIPv4Body) Unset() + func (v NullableUpdateNetworkIPv4Body) Get() *UpdateNetworkIPv4Body + func (v NullableUpdateNetworkIPv4Body) IsSet() bool + func (v NullableUpdateNetworkIPv4Body) MarshalJSON() ([]byte, error) + type NullableUpdateNetworkIPv6Body struct + func NewNullableUpdateNetworkIPv6Body(val *UpdateNetworkIPv6Body) *NullableUpdateNetworkIPv6Body + func (v *NullableUpdateNetworkIPv6Body) Set(val *UpdateNetworkIPv6Body) + func (v *NullableUpdateNetworkIPv6Body) UnmarshalJSON(src []byte) error + func (v *NullableUpdateNetworkIPv6Body) Unset() + func (v NullableUpdateNetworkIPv6Body) Get() *UpdateNetworkIPv6Body + func (v NullableUpdateNetworkIPv6Body) IsSet() bool + func (v NullableUpdateNetworkIPv6Body) MarshalJSON() ([]byte, error) + type NullableUpdateRouteOfRoutingTablePayload struct + func NewNullableUpdateRouteOfRoutingTablePayload(val *UpdateRouteOfRoutingTablePayload) *NullableUpdateRouteOfRoutingTablePayload + func (v *NullableUpdateRouteOfRoutingTablePayload) Set(val *UpdateRouteOfRoutingTablePayload) + func (v *NullableUpdateRouteOfRoutingTablePayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateRouteOfRoutingTablePayload) Unset() + func (v NullableUpdateRouteOfRoutingTablePayload) Get() *UpdateRouteOfRoutingTablePayload + func (v NullableUpdateRouteOfRoutingTablePayload) IsSet() bool + func (v NullableUpdateRouteOfRoutingTablePayload) MarshalJSON() ([]byte, error) + type NullableUpdateRoutingTableOfAreaPayload struct + func NewNullableUpdateRoutingTableOfAreaPayload(val *UpdateRoutingTableOfAreaPayload) *NullableUpdateRoutingTableOfAreaPayload + func (v *NullableUpdateRoutingTableOfAreaPayload) Set(val *UpdateRoutingTableOfAreaPayload) + func (v *NullableUpdateRoutingTableOfAreaPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateRoutingTableOfAreaPayload) Unset() + func (v NullableUpdateRoutingTableOfAreaPayload) Get() *UpdateRoutingTableOfAreaPayload + func (v NullableUpdateRoutingTableOfAreaPayload) IsSet() bool + func (v NullableUpdateRoutingTableOfAreaPayload) MarshalJSON() ([]byte, error) + type PartialUpdateNetworkPayload struct + Dhcp *bool + Ipv4 *UpdateNetworkIPv4Body + Ipv6 *UpdateNetworkIPv6Body + Labels map[string]interface{} + Name *string + Routed *bool + RoutingTableId *string + func NewPartialUpdateNetworkPayload() *PartialUpdateNetworkPayload + func NewPartialUpdateNetworkPayloadWithDefaults() *PartialUpdateNetworkPayload + func (o *PartialUpdateNetworkPayload) GetDhcp() bool + func (o *PartialUpdateNetworkPayload) GetDhcpOk() (*bool, bool) + func (o *PartialUpdateNetworkPayload) GetIpv4() UpdateNetworkIPv4Body + func (o *PartialUpdateNetworkPayload) GetIpv4Ok() (*UpdateNetworkIPv4Body, bool) + func (o *PartialUpdateNetworkPayload) GetIpv6() UpdateNetworkIPv6Body + func (o *PartialUpdateNetworkPayload) GetIpv6Ok() (*UpdateNetworkIPv6Body, bool) + func (o *PartialUpdateNetworkPayload) GetLabels() map[string]interface{} + func (o *PartialUpdateNetworkPayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *PartialUpdateNetworkPayload) GetName() string + func (o *PartialUpdateNetworkPayload) GetNameOk() (*string, bool) + func (o *PartialUpdateNetworkPayload) GetRouted() bool + func (o *PartialUpdateNetworkPayload) GetRoutedOk() (*bool, bool) + func (o *PartialUpdateNetworkPayload) GetRoutingTableId() string + func (o *PartialUpdateNetworkPayload) GetRoutingTableIdOk() (*string, bool) + func (o *PartialUpdateNetworkPayload) HasDhcp() bool + func (o *PartialUpdateNetworkPayload) HasIpv4() bool + func (o *PartialUpdateNetworkPayload) HasIpv6() bool + func (o *PartialUpdateNetworkPayload) HasLabels() bool + func (o *PartialUpdateNetworkPayload) HasName() bool + func (o *PartialUpdateNetworkPayload) HasRouted() bool + func (o *PartialUpdateNetworkPayload) HasRoutingTableId() bool + func (o *PartialUpdateNetworkPayload) SetDhcp(v bool) + func (o *PartialUpdateNetworkPayload) SetIpv4(v UpdateNetworkIPv4Body) + func (o *PartialUpdateNetworkPayload) SetIpv6(v UpdateNetworkIPv6Body) + func (o *PartialUpdateNetworkPayload) SetLabels(v map[string]interface{}) + func (o *PartialUpdateNetworkPayload) SetName(v string) + func (o *PartialUpdateNetworkPayload) SetRouted(v bool) + func (o *PartialUpdateNetworkPayload) SetRoutingTableId(v string) + func (o PartialUpdateNetworkPayload) MarshalJSON() ([]byte, error) + func (o PartialUpdateNetworkPayload) ToMap() (map[string]interface{}, error) + type Route struct + CreatedAt *time.Time + Destination RouteDestination + Id *string + Labels map[string]interface{} + Nexthop RouteNexthop + UpdatedAt *time.Time + func NewRoute(destination RouteDestination, nexthop RouteNexthop) *Route + func NewRouteWithDefaults() *Route + func (o *Route) GetCreatedAt() time.Time + func (o *Route) GetCreatedAtOk() (*time.Time, bool) + func (o *Route) GetDestination() RouteDestination + func (o *Route) GetDestinationOk() (*RouteDestination, bool) + func (o *Route) GetId() string + func (o *Route) GetIdOk() (*string, bool) + func (o *Route) GetLabels() map[string]interface{} + func (o *Route) GetLabelsOk() (map[string]interface{}, bool) + func (o *Route) GetNexthop() RouteNexthop + func (o *Route) GetNexthopOk() (*RouteNexthop, bool) + func (o *Route) GetUpdatedAt() time.Time + func (o *Route) GetUpdatedAtOk() (*time.Time, bool) + func (o *Route) HasCreatedAt() bool + func (o *Route) HasId() bool + func (o *Route) HasLabels() bool + func (o *Route) HasUpdatedAt() bool + func (o *Route) SetCreatedAt(v time.Time) + func (o *Route) SetDestination(v RouteDestination) + func (o *Route) SetId(v string) + func (o *Route) SetLabels(v map[string]interface{}) + func (o *Route) SetNexthop(v RouteNexthop) + func (o *Route) SetUpdatedAt(v time.Time) + func (o *Route) UnmarshalJSON(data []byte) (err error) + func (o Route) MarshalJSON() ([]byte, error) + func (o Route) ToMap() (map[string]interface{}, error) + type RouteDestination struct + DestinationCIDRv4 *DestinationCIDRv4 + DestinationCIDRv6 *DestinationCIDRv6 + func DestinationCIDRv4AsRouteDestination(v *DestinationCIDRv4) RouteDestination + func DestinationCIDRv6AsRouteDestination(v *DestinationCIDRv6) RouteDestination + func (dst *RouteDestination) UnmarshalJSON(data []byte) error + func (obj *RouteDestination) GetActualInstance() interface{} + func (obj RouteDestination) GetActualInstanceValue() interface{} + func (src RouteDestination) MarshalJSON() ([]byte, error) + type RouteListResponse struct + Items []Route + func NewRouteListResponse(items []Route) *RouteListResponse + func NewRouteListResponseWithDefaults() *RouteListResponse + func (o *RouteListResponse) GetItems() []Route + func (o *RouteListResponse) GetItemsOk() ([]Route, bool) + func (o *RouteListResponse) SetItems(v []Route) + func (o *RouteListResponse) UnmarshalJSON(data []byte) (err error) + func (o RouteListResponse) MarshalJSON() ([]byte, error) + func (o RouteListResponse) ToMap() (map[string]interface{}, error) + type RouteNexthop struct + NexthopBlackhole *NexthopBlackhole + NexthopIPv4 *NexthopIPv4 + NexthopIPv6 *NexthopIPv6 + NexthopInternet *NexthopInternet + func NexthopBlackholeAsRouteNexthop(v *NexthopBlackhole) RouteNexthop + func NexthopIPv4AsRouteNexthop(v *NexthopIPv4) RouteNexthop + func NexthopIPv6AsRouteNexthop(v *NexthopIPv6) RouteNexthop + func NexthopInternetAsRouteNexthop(v *NexthopInternet) RouteNexthop + func (dst *RouteNexthop) UnmarshalJSON(data []byte) error + func (obj *RouteNexthop) GetActualInstance() interface{} + func (obj RouteNexthop) GetActualInstanceValue() interface{} + func (src RouteNexthop) MarshalJSON() ([]byte, error) + type RoutingTable struct + CreatedAt *time.Time + Default *bool + Description *string + DynamicRoutes *bool + Id *string + Labels map[string]interface{} + Name string + SystemRoutes *bool + UpdatedAt *time.Time + func NewRoutingTable(name string) *RoutingTable + func NewRoutingTableWithDefaults() *RoutingTable + func (o *RoutingTable) GetCreatedAt() time.Time + func (o *RoutingTable) GetCreatedAtOk() (*time.Time, bool) + func (o *RoutingTable) GetDefault() bool + func (o *RoutingTable) GetDefaultOk() (*bool, bool) + func (o *RoutingTable) GetDescription() string + func (o *RoutingTable) GetDescriptionOk() (*string, bool) + func (o *RoutingTable) GetDynamicRoutes() bool + func (o *RoutingTable) GetDynamicRoutesOk() (*bool, bool) + func (o *RoutingTable) GetId() string + func (o *RoutingTable) GetIdOk() (*string, bool) + func (o *RoutingTable) GetLabels() map[string]interface{} + func (o *RoutingTable) GetLabelsOk() (map[string]interface{}, bool) + func (o *RoutingTable) GetName() string + func (o *RoutingTable) GetNameOk() (*string, bool) + func (o *RoutingTable) GetSystemRoutes() bool + func (o *RoutingTable) GetSystemRoutesOk() (*bool, bool) + func (o *RoutingTable) GetUpdatedAt() time.Time + func (o *RoutingTable) GetUpdatedAtOk() (*time.Time, bool) + func (o *RoutingTable) HasCreatedAt() bool + func (o *RoutingTable) HasDefault() bool + func (o *RoutingTable) HasDescription() bool + func (o *RoutingTable) HasDynamicRoutes() bool + func (o *RoutingTable) HasId() bool + func (o *RoutingTable) HasLabels() bool + func (o *RoutingTable) HasSystemRoutes() bool + func (o *RoutingTable) HasUpdatedAt() bool + func (o *RoutingTable) SetCreatedAt(v time.Time) + func (o *RoutingTable) SetDefault(v bool) + func (o *RoutingTable) SetDescription(v string) + func (o *RoutingTable) SetDynamicRoutes(v bool) + func (o *RoutingTable) SetId(v string) + func (o *RoutingTable) SetLabels(v map[string]interface{}) + func (o *RoutingTable) SetName(v string) + func (o *RoutingTable) SetSystemRoutes(v bool) + func (o *RoutingTable) SetUpdatedAt(v time.Time) + func (o *RoutingTable) UnmarshalJSON(data []byte) (err error) + func (o RoutingTable) MarshalJSON() ([]byte, error) + func (o RoutingTable) ToMap() (map[string]interface{}, error) + type RoutingTableListResponse struct + Items []RoutingTable + func NewRoutingTableListResponse(items []RoutingTable) *RoutingTableListResponse + func NewRoutingTableListResponseWithDefaults() *RoutingTableListResponse + func (o *RoutingTableListResponse) GetItems() []RoutingTable + func (o *RoutingTableListResponse) GetItemsOk() ([]RoutingTable, bool) + func (o *RoutingTableListResponse) SetItems(v []RoutingTable) + func (o *RoutingTableListResponse) UnmarshalJSON(data []byte) (err error) + func (o RoutingTableListResponse) MarshalJSON() ([]byte, error) + func (o RoutingTableListResponse) ToMap() (map[string]interface{}, error) + type UpdateNetworkIPv4Body struct + Gateway NullableString + Nameservers []string + func NewUpdateNetworkIPv4Body() *UpdateNetworkIPv4Body + func NewUpdateNetworkIPv4BodyWithDefaults() *UpdateNetworkIPv4Body + func (o *UpdateNetworkIPv4Body) GetGateway() string + func (o *UpdateNetworkIPv4Body) GetGatewayOk() (*string, bool) + func (o *UpdateNetworkIPv4Body) GetNameservers() []string + func (o *UpdateNetworkIPv4Body) GetNameserversOk() ([]string, bool) + func (o *UpdateNetworkIPv4Body) HasGateway() bool + func (o *UpdateNetworkIPv4Body) HasNameservers() bool + func (o *UpdateNetworkIPv4Body) SetGateway(v string) + func (o *UpdateNetworkIPv4Body) SetGatewayNil() + func (o *UpdateNetworkIPv4Body) SetNameservers(v []string) + func (o *UpdateNetworkIPv4Body) UnsetGateway() + func (o UpdateNetworkIPv4Body) MarshalJSON() ([]byte, error) + func (o UpdateNetworkIPv4Body) ToMap() (map[string]interface{}, error) + type UpdateNetworkIPv6Body struct + Gateway NullableString + Nameservers []string + func NewUpdateNetworkIPv6Body() *UpdateNetworkIPv6Body + func NewUpdateNetworkIPv6BodyWithDefaults() *UpdateNetworkIPv6Body + func (o *UpdateNetworkIPv6Body) GetGateway() string + func (o *UpdateNetworkIPv6Body) GetGatewayOk() (*string, bool) + func (o *UpdateNetworkIPv6Body) GetNameservers() []string + func (o *UpdateNetworkIPv6Body) GetNameserversOk() ([]string, bool) + func (o *UpdateNetworkIPv6Body) HasGateway() bool + func (o *UpdateNetworkIPv6Body) HasNameservers() bool + func (o *UpdateNetworkIPv6Body) SetGateway(v string) + func (o *UpdateNetworkIPv6Body) SetGatewayNil() + func (o *UpdateNetworkIPv6Body) SetNameservers(v []string) + func (o *UpdateNetworkIPv6Body) UnsetGateway() + func (o UpdateNetworkIPv6Body) MarshalJSON() ([]byte, error) + func (o UpdateNetworkIPv6Body) ToMap() (map[string]interface{}, error) + type UpdateRouteOfRoutingTablePayload struct + Labels map[string]interface{} + func NewUpdateRouteOfRoutingTablePayload() *UpdateRouteOfRoutingTablePayload + func NewUpdateRouteOfRoutingTablePayloadWithDefaults() *UpdateRouteOfRoutingTablePayload + func (o *UpdateRouteOfRoutingTablePayload) GetLabels() map[string]interface{} + func (o *UpdateRouteOfRoutingTablePayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *UpdateRouteOfRoutingTablePayload) HasLabels() bool + func (o *UpdateRouteOfRoutingTablePayload) SetLabels(v map[string]interface{}) + func (o UpdateRouteOfRoutingTablePayload) MarshalJSON() ([]byte, error) + func (o UpdateRouteOfRoutingTablePayload) ToMap() (map[string]interface{}, error) + type UpdateRoutingTableOfAreaPayload struct + Description *string + DynamicRoutes *bool + Labels map[string]interface{} + Name *string + SystemRoutes *bool + func NewUpdateRoutingTableOfAreaPayload() *UpdateRoutingTableOfAreaPayload + func NewUpdateRoutingTableOfAreaPayloadWithDefaults() *UpdateRoutingTableOfAreaPayload + func (o *UpdateRoutingTableOfAreaPayload) GetDescription() string + func (o *UpdateRoutingTableOfAreaPayload) GetDescriptionOk() (*string, bool) + func (o *UpdateRoutingTableOfAreaPayload) GetDynamicRoutes() bool + func (o *UpdateRoutingTableOfAreaPayload) GetDynamicRoutesOk() (*bool, bool) + func (o *UpdateRoutingTableOfAreaPayload) GetLabels() map[string]interface{} + func (o *UpdateRoutingTableOfAreaPayload) GetLabelsOk() (map[string]interface{}, bool) + func (o *UpdateRoutingTableOfAreaPayload) GetName() string + func (o *UpdateRoutingTableOfAreaPayload) GetNameOk() (*string, bool) + func (o *UpdateRoutingTableOfAreaPayload) GetSystemRoutes() bool + func (o *UpdateRoutingTableOfAreaPayload) GetSystemRoutesOk() (*bool, bool) + func (o *UpdateRoutingTableOfAreaPayload) HasDescription() bool + func (o *UpdateRoutingTableOfAreaPayload) HasDynamicRoutes() bool + func (o *UpdateRoutingTableOfAreaPayload) HasLabels() bool + func (o *UpdateRoutingTableOfAreaPayload) HasName() bool + func (o *UpdateRoutingTableOfAreaPayload) HasSystemRoutes() bool + func (o *UpdateRoutingTableOfAreaPayload) SetDescription(v string) + func (o *UpdateRoutingTableOfAreaPayload) SetDynamicRoutes(v bool) + func (o *UpdateRoutingTableOfAreaPayload) SetLabels(v map[string]interface{}) + func (o *UpdateRoutingTableOfAreaPayload) SetName(v string) + func (o *UpdateRoutingTableOfAreaPayload) SetSystemRoutes(v bool) + func (o UpdateRoutingTableOfAreaPayload) MarshalJSON() ([]byte, error) + func (o UpdateRoutingTableOfAreaPayload) ToMap() (map[string]interface{}, error)