Versions in this module Expand all Collapse all v0 v0.1.0 Apr 24, 2026 Changes in this version + var AllowedConfigFilterLevelEnumValues = []ConfigFilterLevel + var AllowedConfigFilterMatcherEnumValues = []ConfigFilterMatcher + var AllowedDestinationConfigTypeEnumValues = []DestinationConfigType + 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 AccessTokenBaseRequest struct + AdditionalProperties map[string]interface{} + Description *string + DisplayName string + Ttl NullableInt32 + func NewAccessTokenBaseRequest(displayName string) *AccessTokenBaseRequest + func NewAccessTokenBaseRequestWithDefaults() *AccessTokenBaseRequest + func (o *AccessTokenBaseRequest) GetDescription() string + func (o *AccessTokenBaseRequest) GetDescriptionOk() (*string, bool) + func (o *AccessTokenBaseRequest) GetDisplayName() string + func (o *AccessTokenBaseRequest) GetDisplayNameOk() (*string, bool) + func (o *AccessTokenBaseRequest) GetTtl() int32 + func (o *AccessTokenBaseRequest) GetTtlOk() (*int32, bool) + func (o *AccessTokenBaseRequest) HasDescription() bool + func (o *AccessTokenBaseRequest) HasTtl() bool + func (o *AccessTokenBaseRequest) SetDescription(v string) + func (o *AccessTokenBaseRequest) SetDisplayName(v string) + func (o *AccessTokenBaseRequest) SetTtl(v int32) + func (o *AccessTokenBaseRequest) SetTtlNil() + func (o *AccessTokenBaseRequest) UnmarshalJSON(data []byte) (err error) + func (o *AccessTokenBaseRequest) UnsetTtl() + func (o AccessTokenBaseRequest) MarshalJSON() ([]byte, error) + func (o AccessTokenBaseRequest) ToMap() (map[string]interface{}, error) + type AccessTokenBaseResponse struct + AdditionalProperties map[string]interface{} + CreatorId string + Description *string + DisplayName string + ExpirationTime NullableTime + Id string + Status string + func NewAccessTokenBaseResponse(creatorId string, displayName string, id string, status string) *AccessTokenBaseResponse + func NewAccessTokenBaseResponseWithDefaults() *AccessTokenBaseResponse + func (o *AccessTokenBaseResponse) GetCreatorId() string + func (o *AccessTokenBaseResponse) GetCreatorIdOk() (*string, bool) + func (o *AccessTokenBaseResponse) GetDescription() string + func (o *AccessTokenBaseResponse) GetDescriptionOk() (*string, bool) + func (o *AccessTokenBaseResponse) GetDisplayName() string + func (o *AccessTokenBaseResponse) GetDisplayNameOk() (*string, bool) + func (o *AccessTokenBaseResponse) GetExpirationTime() time.Time + func (o *AccessTokenBaseResponse) GetExpirationTimeOk() (*time.Time, bool) + func (o *AccessTokenBaseResponse) GetId() string + func (o *AccessTokenBaseResponse) GetIdOk() (*string, bool) + func (o *AccessTokenBaseResponse) GetStatus() string + func (o *AccessTokenBaseResponse) GetStatusOk() (*string, bool) + func (o *AccessTokenBaseResponse) HasDescription() bool + func (o *AccessTokenBaseResponse) HasExpirationTime() bool + func (o *AccessTokenBaseResponse) SetCreatorId(v string) + func (o *AccessTokenBaseResponse) SetDescription(v string) + func (o *AccessTokenBaseResponse) SetDisplayName(v string) + func (o *AccessTokenBaseResponse) SetExpirationTime(v time.Time) + func (o *AccessTokenBaseResponse) SetExpirationTimeNil() + func (o *AccessTokenBaseResponse) SetId(v string) + func (o *AccessTokenBaseResponse) SetStatus(v string) + func (o *AccessTokenBaseResponse) UnmarshalJSON(data []byte) (err error) + func (o *AccessTokenBaseResponse) UnsetExpirationTime() + func (o AccessTokenBaseResponse) MarshalJSON() ([]byte, error) + func (o AccessTokenBaseResponse) ToMap() (map[string]interface{}, error) + type ApiCreateAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiCreateAccessTokenRequest) CreateAccessTokenPayload(createAccessTokenPayload CreateAccessTokenPayload) ApiCreateAccessTokenRequest + func (r ApiCreateAccessTokenRequest) Execute() (*CreateAccessTokenResponse, error) + type ApiCreateDestinationRequest struct + ApiService DefaultAPI + func (r ApiCreateDestinationRequest) CreateDestinationPayload(createDestinationPayload CreateDestinationPayload) ApiCreateDestinationRequest + func (r ApiCreateDestinationRequest) Execute() (*DestinationResponse, error) + type ApiCreateTelemetryRouterRequest struct + ApiService DefaultAPI + func (r ApiCreateTelemetryRouterRequest) CreateTelemetryRouterPayload(createTelemetryRouterPayload CreateTelemetryRouterPayload) ApiCreateTelemetryRouterRequest + func (r ApiCreateTelemetryRouterRequest) Execute() (*TelemetryRouterResponse, error) + type ApiDeleteAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiDeleteAccessTokenRequest) Execute() error + type ApiDeleteDestinationRequest struct + ApiService DefaultAPI + func (r ApiDeleteDestinationRequest) Execute() error + type ApiDeleteTelemetryRouterRequest struct + ApiService DefaultAPI + func (r ApiDeleteTelemetryRouterRequest) Execute() error + func (r ApiDeleteTelemetryRouterRequest) Force(force bool) ApiDeleteTelemetryRouterRequest + type ApiGetAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiGetAccessTokenRequest) Execute() (*GetAccessTokenResponse, error) + type ApiGetDestinationRequest struct + ApiService DefaultAPI + func (r ApiGetDestinationRequest) Execute() (*DestinationResponse, error) + type ApiGetTelemetryRouterRequest struct + ApiService DefaultAPI + func (r ApiGetTelemetryRouterRequest) Execute() (*TelemetryRouterResponse, error) + type ApiListAccessTokensRequest struct + ApiService DefaultAPI + func (r ApiListAccessTokensRequest) Execute() (*ListAccessTokensResponse, error) + func (r ApiListAccessTokensRequest) PageSize(pageSize int32) ApiListAccessTokensRequest + func (r ApiListAccessTokensRequest) PageToken(pageToken string) ApiListAccessTokensRequest + type ApiListDestinationsRequest struct + ApiService DefaultAPI + func (r ApiListDestinationsRequest) Execute() (*ListDestinationsResponse, error) + func (r ApiListDestinationsRequest) PageSize(pageSize int32) ApiListDestinationsRequest + func (r ApiListDestinationsRequest) PageToken(pageToken string) ApiListDestinationsRequest + type ApiListTelemetryRoutersRequest struct + ApiService DefaultAPI + func (r ApiListTelemetryRoutersRequest) Execute() (*ListTelemetryRoutersResponse, error) + func (r ApiListTelemetryRoutersRequest) PageSize(pageSize int32) ApiListTelemetryRoutersRequest + func (r ApiListTelemetryRoutersRequest) PageToken(pageToken string) ApiListTelemetryRoutersRequest + type ApiUpdateAccessTokenRequest struct + ApiService DefaultAPI + func (r ApiUpdateAccessTokenRequest) Execute() (*UpdateAccessTokenResponse, error) + func (r ApiUpdateAccessTokenRequest) UpdateAccessTokenPayload(updateAccessTokenPayload UpdateAccessTokenPayload) ApiUpdateAccessTokenRequest + type ApiUpdateDestinationRequest struct + ApiService DefaultAPI + func (r ApiUpdateDestinationRequest) Execute() (*DestinationResponse, error) + func (r ApiUpdateDestinationRequest) UpdateDestinationPayload(updateDestinationPayload UpdateDestinationPayload) ApiUpdateDestinationRequest + type ApiUpdateTelemetryRouterRequest struct + ApiService DefaultAPI + func (r ApiUpdateTelemetryRouterRequest) Execute() (*TelemetryRouterResponse, error) + func (r ApiUpdateTelemetryRouterRequest) UpdateTelemetryRouterPayload(updateTelemetryRouterPayload UpdateTelemetryRouterPayload) ApiUpdateTelemetryRouterRequest + type ConfigFilter struct + AdditionalProperties map[string]interface{} + Attributes []ConfigFilterAttributes + func NewConfigFilter(attributes []ConfigFilterAttributes) *ConfigFilter + func NewConfigFilterWithDefaults() *ConfigFilter + func (o *ConfigFilter) GetAttributes() []ConfigFilterAttributes + func (o *ConfigFilter) GetAttributesOk() ([]ConfigFilterAttributes, bool) + func (o *ConfigFilter) SetAttributes(v []ConfigFilterAttributes) + func (o *ConfigFilter) UnmarshalJSON(data []byte) (err error) + func (o ConfigFilter) MarshalJSON() ([]byte, error) + func (o ConfigFilter) ToMap() (map[string]interface{}, error) + type ConfigFilterAttributes struct + AdditionalProperties map[string]interface{} + Key string + Level ConfigFilterLevel + Matcher ConfigFilterMatcher + Values []string + func NewConfigFilterAttributes(key string, level ConfigFilterLevel, matcher ConfigFilterMatcher, ...) *ConfigFilterAttributes + func NewConfigFilterAttributesWithDefaults() *ConfigFilterAttributes + func (o *ConfigFilterAttributes) GetKey() string + func (o *ConfigFilterAttributes) GetKeyOk() (*string, bool) + func (o *ConfigFilterAttributes) GetLevel() ConfigFilterLevel + func (o *ConfigFilterAttributes) GetLevelOk() (*ConfigFilterLevel, bool) + func (o *ConfigFilterAttributes) GetMatcher() ConfigFilterMatcher + func (o *ConfigFilterAttributes) GetMatcherOk() (*ConfigFilterMatcher, bool) + func (o *ConfigFilterAttributes) GetValues() []string + func (o *ConfigFilterAttributes) GetValuesOk() ([]string, bool) + func (o *ConfigFilterAttributes) SetKey(v string) + func (o *ConfigFilterAttributes) SetLevel(v ConfigFilterLevel) + func (o *ConfigFilterAttributes) SetMatcher(v ConfigFilterMatcher) + func (o *ConfigFilterAttributes) SetValues(v []string) + func (o *ConfigFilterAttributes) UnmarshalJSON(data []byte) (err error) + func (o ConfigFilterAttributes) MarshalJSON() ([]byte, error) + func (o ConfigFilterAttributes) ToMap() (map[string]interface{}, error) + type ConfigFilterLevel string + const CONFIGFILTERLEVEL_LOG_RECORD + const CONFIGFILTERLEVEL_RESOURCE + const CONFIGFILTERLEVEL_SCOPE + func NewConfigFilterLevelFromValue(v string) (*ConfigFilterLevel, error) + func (v *ConfigFilterLevel) UnmarshalJSON(src []byte) error + func (v ConfigFilterLevel) IsValid() bool + func (v ConfigFilterLevel) Ptr() *ConfigFilterLevel + type ConfigFilterMatcher string + const CONFIGFILTERMATCHER_EQUAL + const CONFIGFILTERMATCHER_NOT_EQUAL + func NewConfigFilterMatcherFromValue(v string) (*ConfigFilterMatcher, error) + func (v *ConfigFilterMatcher) UnmarshalJSON(src []byte) error + func (v ConfigFilterMatcher) IsValid() bool + func (v ConfigFilterMatcher) Ptr() *ConfigFilterMatcher + type CreateAccessTokenPayload struct + AdditionalProperties map[string]interface{} + Description *string + DisplayName string + Ttl NullableInt32 + func NewCreateAccessTokenPayload(displayName string) *CreateAccessTokenPayload + func NewCreateAccessTokenPayloadWithDefaults() *CreateAccessTokenPayload + func (o *CreateAccessTokenPayload) GetDescription() string + func (o *CreateAccessTokenPayload) GetDescriptionOk() (*string, bool) + func (o *CreateAccessTokenPayload) GetDisplayName() string + func (o *CreateAccessTokenPayload) GetDisplayNameOk() (*string, bool) + func (o *CreateAccessTokenPayload) GetTtl() int32 + func (o *CreateAccessTokenPayload) GetTtlOk() (*int32, bool) + func (o *CreateAccessTokenPayload) HasDescription() bool + func (o *CreateAccessTokenPayload) HasTtl() bool + func (o *CreateAccessTokenPayload) SetDescription(v string) + func (o *CreateAccessTokenPayload) SetDisplayName(v string) + func (o *CreateAccessTokenPayload) SetTtl(v int32) + func (o *CreateAccessTokenPayload) SetTtlNil() + func (o *CreateAccessTokenPayload) UnmarshalJSON(data []byte) (err error) + func (o *CreateAccessTokenPayload) UnsetTtl() + func (o CreateAccessTokenPayload) MarshalJSON() ([]byte, error) + func (o CreateAccessTokenPayload) ToMap() (map[string]interface{}, error) + type CreateAccessTokenResponse struct + AccessToken string + AdditionalProperties map[string]interface{} + CreatorId string + Description *string + DisplayName string + ExpirationTime NullableTime + Id string + Status string + func NewCreateAccessTokenResponse(creatorId string, displayName string, id string, status string, ...) *CreateAccessTokenResponse + func NewCreateAccessTokenResponseWithDefaults() *CreateAccessTokenResponse + func (o *CreateAccessTokenResponse) GetAccessToken() string + func (o *CreateAccessTokenResponse) GetAccessTokenOk() (*string, bool) + func (o *CreateAccessTokenResponse) GetCreatorId() string + func (o *CreateAccessTokenResponse) GetCreatorIdOk() (*string, bool) + func (o *CreateAccessTokenResponse) GetDescription() string + func (o *CreateAccessTokenResponse) GetDescriptionOk() (*string, bool) + func (o *CreateAccessTokenResponse) GetDisplayName() string + func (o *CreateAccessTokenResponse) GetDisplayNameOk() (*string, bool) + func (o *CreateAccessTokenResponse) GetExpirationTime() time.Time + func (o *CreateAccessTokenResponse) GetExpirationTimeOk() (*time.Time, bool) + func (o *CreateAccessTokenResponse) GetId() string + func (o *CreateAccessTokenResponse) GetIdOk() (*string, bool) + func (o *CreateAccessTokenResponse) GetStatus() string + func (o *CreateAccessTokenResponse) GetStatusOk() (*string, bool) + func (o *CreateAccessTokenResponse) HasDescription() bool + func (o *CreateAccessTokenResponse) HasExpirationTime() bool + func (o *CreateAccessTokenResponse) SetAccessToken(v string) + func (o *CreateAccessTokenResponse) SetCreatorId(v string) + func (o *CreateAccessTokenResponse) SetDescription(v string) + func (o *CreateAccessTokenResponse) SetDisplayName(v string) + func (o *CreateAccessTokenResponse) SetExpirationTime(v time.Time) + func (o *CreateAccessTokenResponse) SetExpirationTimeNil() + func (o *CreateAccessTokenResponse) SetId(v string) + func (o *CreateAccessTokenResponse) SetStatus(v string) + func (o *CreateAccessTokenResponse) UnmarshalJSON(data []byte) (err error) + func (o *CreateAccessTokenResponse) UnsetExpirationTime() + func (o CreateAccessTokenResponse) MarshalJSON() ([]byte, error) + func (o CreateAccessTokenResponse) ToMap() (map[string]interface{}, error) + type CreateDestinationPayload struct + AdditionalProperties map[string]interface{} + Config DestinationConfig + Description *string + DisplayName string + func NewCreateDestinationPayload(config DestinationConfig, displayName string) *CreateDestinationPayload + func NewCreateDestinationPayloadWithDefaults() *CreateDestinationPayload + func (o *CreateDestinationPayload) GetConfig() DestinationConfig + func (o *CreateDestinationPayload) GetConfigOk() (*DestinationConfig, bool) + func (o *CreateDestinationPayload) GetDescription() string + func (o *CreateDestinationPayload) GetDescriptionOk() (*string, bool) + func (o *CreateDestinationPayload) GetDisplayName() string + func (o *CreateDestinationPayload) GetDisplayNameOk() (*string, bool) + func (o *CreateDestinationPayload) HasDescription() bool + func (o *CreateDestinationPayload) SetConfig(v DestinationConfig) + func (o *CreateDestinationPayload) SetDescription(v string) + func (o *CreateDestinationPayload) SetDisplayName(v string) + func (o *CreateDestinationPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateDestinationPayload) MarshalJSON() ([]byte, error) + func (o CreateDestinationPayload) ToMap() (map[string]interface{}, error) + type CreateTelemetryRouterPayload struct + AdditionalProperties map[string]interface{} + Description *string + DisplayName string + Filter *ConfigFilter + func NewCreateTelemetryRouterPayload(displayName string) *CreateTelemetryRouterPayload + func NewCreateTelemetryRouterPayloadWithDefaults() *CreateTelemetryRouterPayload + func (o *CreateTelemetryRouterPayload) GetDescription() string + func (o *CreateTelemetryRouterPayload) GetDescriptionOk() (*string, bool) + func (o *CreateTelemetryRouterPayload) GetDisplayName() string + func (o *CreateTelemetryRouterPayload) GetDisplayNameOk() (*string, bool) + func (o *CreateTelemetryRouterPayload) GetFilter() ConfigFilter + func (o *CreateTelemetryRouterPayload) GetFilterOk() (*ConfigFilter, bool) + func (o *CreateTelemetryRouterPayload) HasDescription() bool + func (o *CreateTelemetryRouterPayload) HasFilter() bool + func (o *CreateTelemetryRouterPayload) SetDescription(v string) + func (o *CreateTelemetryRouterPayload) SetDisplayName(v string) + func (o *CreateTelemetryRouterPayload) SetFilter(v ConfigFilter) + func (o *CreateTelemetryRouterPayload) UnmarshalJSON(data []byte) (err error) + func (o CreateTelemetryRouterPayload) MarshalJSON() ([]byte, error) + func (o CreateTelemetryRouterPayload) ToMap() (map[string]interface{}, error) + type DefaultAPI interface + CreateAccessToken func(ctx context.Context, projectId string, regionId string, ...) ApiCreateAccessTokenRequest + CreateAccessTokenExecute func(r ApiCreateAccessTokenRequest) (*CreateAccessTokenResponse, error) + CreateDestination func(ctx context.Context, projectId string, regionId string, ...) ApiCreateDestinationRequest + CreateDestinationExecute func(r ApiCreateDestinationRequest) (*DestinationResponse, error) + CreateTelemetryRouter func(ctx context.Context, projectId string, regionId string) ApiCreateTelemetryRouterRequest + CreateTelemetryRouterExecute func(r ApiCreateTelemetryRouterRequest) (*TelemetryRouterResponse, error) + DeleteAccessToken func(ctx context.Context, projectId string, regionId string, ...) ApiDeleteAccessTokenRequest + DeleteAccessTokenExecute func(r ApiDeleteAccessTokenRequest) error + DeleteDestination func(ctx context.Context, projectId string, regionId string, ...) ApiDeleteDestinationRequest + DeleteDestinationExecute func(r ApiDeleteDestinationRequest) error + DeleteTelemetryRouter func(ctx context.Context, projectId string, regionId string, ...) ApiDeleteTelemetryRouterRequest + DeleteTelemetryRouterExecute func(r ApiDeleteTelemetryRouterRequest) error + GetAccessToken func(ctx context.Context, projectId string, regionId string, ...) ApiGetAccessTokenRequest + GetAccessTokenExecute func(r ApiGetAccessTokenRequest) (*GetAccessTokenResponse, error) + GetDestination func(ctx context.Context, projectId string, regionId string, ...) ApiGetDestinationRequest + GetDestinationExecute func(r ApiGetDestinationRequest) (*DestinationResponse, error) + GetTelemetryRouter func(ctx context.Context, projectId string, regionId string, ...) ApiGetTelemetryRouterRequest + GetTelemetryRouterExecute func(r ApiGetTelemetryRouterRequest) (*TelemetryRouterResponse, error) + ListAccessTokens func(ctx context.Context, projectId string, regionId string, ...) ApiListAccessTokensRequest + ListAccessTokensExecute func(r ApiListAccessTokensRequest) (*ListAccessTokensResponse, error) + ListDestinations func(ctx context.Context, projectId string, regionId string, ...) ApiListDestinationsRequest + ListDestinationsExecute func(r ApiListDestinationsRequest) (*ListDestinationsResponse, error) + ListTelemetryRouters func(ctx context.Context, projectId string, regionId string) ApiListTelemetryRoutersRequest + ListTelemetryRoutersExecute func(r ApiListTelemetryRoutersRequest) (*ListTelemetryRoutersResponse, error) + UpdateAccessToken func(ctx context.Context, projectId string, regionId string, ...) ApiUpdateAccessTokenRequest + UpdateAccessTokenExecute func(r ApiUpdateAccessTokenRequest) (*UpdateAccessTokenResponse, error) + UpdateDestination func(ctx context.Context, projectId string, regionId string, ...) ApiUpdateDestinationRequest + UpdateDestinationExecute func(r ApiUpdateDestinationRequest) (*DestinationResponse, error) + UpdateTelemetryRouter func(ctx context.Context, projectId string, regionId string, ...) ApiUpdateTelemetryRouterRequest + UpdateTelemetryRouterExecute func(r ApiUpdateTelemetryRouterRequest) (*TelemetryRouterResponse, error) + type DefaultAPIService service + func (a *DefaultAPIService) CreateAccessToken(ctx context.Context, projectId string, regionId string, ...) ApiCreateAccessTokenRequest + func (a *DefaultAPIService) CreateAccessTokenExecute(r ApiCreateAccessTokenRequest) (*CreateAccessTokenResponse, error) + func (a *DefaultAPIService) CreateDestination(ctx context.Context, projectId string, regionId string, ...) ApiCreateDestinationRequest + func (a *DefaultAPIService) CreateDestinationExecute(r ApiCreateDestinationRequest) (*DestinationResponse, error) + func (a *DefaultAPIService) CreateTelemetryRouter(ctx context.Context, projectId string, regionId string) ApiCreateTelemetryRouterRequest + func (a *DefaultAPIService) CreateTelemetryRouterExecute(r ApiCreateTelemetryRouterRequest) (*TelemetryRouterResponse, error) + func (a *DefaultAPIService) DeleteAccessToken(ctx context.Context, projectId string, regionId string, ...) ApiDeleteAccessTokenRequest + func (a *DefaultAPIService) DeleteAccessTokenExecute(r ApiDeleteAccessTokenRequest) error + func (a *DefaultAPIService) DeleteDestination(ctx context.Context, projectId string, regionId string, ...) ApiDeleteDestinationRequest + func (a *DefaultAPIService) DeleteDestinationExecute(r ApiDeleteDestinationRequest) error + func (a *DefaultAPIService) DeleteTelemetryRouter(ctx context.Context, projectId string, regionId string, ...) ApiDeleteTelemetryRouterRequest + func (a *DefaultAPIService) DeleteTelemetryRouterExecute(r ApiDeleteTelemetryRouterRequest) error + func (a *DefaultAPIService) GetAccessToken(ctx context.Context, projectId string, regionId string, ...) ApiGetAccessTokenRequest + func (a *DefaultAPIService) GetAccessTokenExecute(r ApiGetAccessTokenRequest) (*GetAccessTokenResponse, error) + func (a *DefaultAPIService) GetDestination(ctx context.Context, projectId string, regionId string, ...) ApiGetDestinationRequest + func (a *DefaultAPIService) GetDestinationExecute(r ApiGetDestinationRequest) (*DestinationResponse, error) + func (a *DefaultAPIService) GetTelemetryRouter(ctx context.Context, projectId string, regionId string, ...) ApiGetTelemetryRouterRequest + func (a *DefaultAPIService) GetTelemetryRouterExecute(r ApiGetTelemetryRouterRequest) (*TelemetryRouterResponse, error) + func (a *DefaultAPIService) ListAccessTokens(ctx context.Context, projectId string, regionId string, ...) ApiListAccessTokensRequest + func (a *DefaultAPIService) ListAccessTokensExecute(r ApiListAccessTokensRequest) (*ListAccessTokensResponse, error) + func (a *DefaultAPIService) ListDestinations(ctx context.Context, projectId string, regionId string, ...) ApiListDestinationsRequest + func (a *DefaultAPIService) ListDestinationsExecute(r ApiListDestinationsRequest) (*ListDestinationsResponse, error) + func (a *DefaultAPIService) ListTelemetryRouters(ctx context.Context, projectId string, regionId string) ApiListTelemetryRoutersRequest + func (a *DefaultAPIService) ListTelemetryRoutersExecute(r ApiListTelemetryRoutersRequest) (*ListTelemetryRoutersResponse, error) + func (a *DefaultAPIService) UpdateAccessToken(ctx context.Context, projectId string, regionId string, ...) ApiUpdateAccessTokenRequest + func (a *DefaultAPIService) UpdateAccessTokenExecute(r ApiUpdateAccessTokenRequest) (*UpdateAccessTokenResponse, error) + func (a *DefaultAPIService) UpdateDestination(ctx context.Context, projectId string, regionId string, ...) ApiUpdateDestinationRequest + func (a *DefaultAPIService) UpdateDestinationExecute(r ApiUpdateDestinationRequest) (*DestinationResponse, error) + func (a *DefaultAPIService) UpdateTelemetryRouter(ctx context.Context, projectId string, regionId string, ...) ApiUpdateTelemetryRouterRequest + func (a *DefaultAPIService) UpdateTelemetryRouterExecute(r ApiUpdateTelemetryRouterRequest) (*TelemetryRouterResponse, error) + type DefaultAPIServiceMock struct + CreateAccessTokenExecuteMock *func(r ApiCreateAccessTokenRequest) (*CreateAccessTokenResponse, error) + CreateDestinationExecuteMock *func(r ApiCreateDestinationRequest) (*DestinationResponse, error) + CreateTelemetryRouterExecuteMock *func(r ApiCreateTelemetryRouterRequest) (*TelemetryRouterResponse, error) + DeleteAccessTokenExecuteMock *func(r ApiDeleteAccessTokenRequest) error + DeleteDestinationExecuteMock *func(r ApiDeleteDestinationRequest) error + DeleteTelemetryRouterExecuteMock *func(r ApiDeleteTelemetryRouterRequest) error + GetAccessTokenExecuteMock *func(r ApiGetAccessTokenRequest) (*GetAccessTokenResponse, error) + GetDestinationExecuteMock *func(r ApiGetDestinationRequest) (*DestinationResponse, error) + GetTelemetryRouterExecuteMock *func(r ApiGetTelemetryRouterRequest) (*TelemetryRouterResponse, error) + ListAccessTokensExecuteMock *func(r ApiListAccessTokensRequest) (*ListAccessTokensResponse, error) + ListDestinationsExecuteMock *func(r ApiListDestinationsRequest) (*ListDestinationsResponse, error) + ListTelemetryRoutersExecuteMock *func(r ApiListTelemetryRoutersRequest) (*ListTelemetryRoutersResponse, error) + UpdateAccessTokenExecuteMock *func(r ApiUpdateAccessTokenRequest) (*UpdateAccessTokenResponse, error) + UpdateDestinationExecuteMock *func(r ApiUpdateDestinationRequest) (*DestinationResponse, error) + UpdateTelemetryRouterExecuteMock *func(r ApiUpdateTelemetryRouterRequest) (*TelemetryRouterResponse, error) + func (a DefaultAPIServiceMock) CreateAccessToken(ctx context.Context, projectId string, regionId string, ...) ApiCreateAccessTokenRequest + func (a DefaultAPIServiceMock) CreateAccessTokenExecute(r ApiCreateAccessTokenRequest) (*CreateAccessTokenResponse, error) + func (a DefaultAPIServiceMock) CreateDestination(ctx context.Context, projectId string, regionId string, ...) ApiCreateDestinationRequest + func (a DefaultAPIServiceMock) CreateDestinationExecute(r ApiCreateDestinationRequest) (*DestinationResponse, error) + func (a DefaultAPIServiceMock) CreateTelemetryRouter(ctx context.Context, projectId string, regionId string) ApiCreateTelemetryRouterRequest + func (a DefaultAPIServiceMock) CreateTelemetryRouterExecute(r ApiCreateTelemetryRouterRequest) (*TelemetryRouterResponse, error) + func (a DefaultAPIServiceMock) DeleteAccessToken(ctx context.Context, projectId string, regionId string, ...) ApiDeleteAccessTokenRequest + func (a DefaultAPIServiceMock) DeleteAccessTokenExecute(r ApiDeleteAccessTokenRequest) error + func (a DefaultAPIServiceMock) DeleteDestination(ctx context.Context, projectId string, regionId string, ...) ApiDeleteDestinationRequest + func (a DefaultAPIServiceMock) DeleteDestinationExecute(r ApiDeleteDestinationRequest) error + func (a DefaultAPIServiceMock) DeleteTelemetryRouter(ctx context.Context, projectId string, regionId string, ...) ApiDeleteTelemetryRouterRequest + func (a DefaultAPIServiceMock) DeleteTelemetryRouterExecute(r ApiDeleteTelemetryRouterRequest) error + func (a DefaultAPIServiceMock) GetAccessToken(ctx context.Context, projectId string, regionId string, ...) ApiGetAccessTokenRequest + func (a DefaultAPIServiceMock) GetAccessTokenExecute(r ApiGetAccessTokenRequest) (*GetAccessTokenResponse, error) + func (a DefaultAPIServiceMock) GetDestination(ctx context.Context, projectId string, regionId string, ...) ApiGetDestinationRequest + func (a DefaultAPIServiceMock) GetDestinationExecute(r ApiGetDestinationRequest) (*DestinationResponse, error) + func (a DefaultAPIServiceMock) GetTelemetryRouter(ctx context.Context, projectId string, regionId string, ...) ApiGetTelemetryRouterRequest + func (a DefaultAPIServiceMock) GetTelemetryRouterExecute(r ApiGetTelemetryRouterRequest) (*TelemetryRouterResponse, error) + func (a DefaultAPIServiceMock) ListAccessTokens(ctx context.Context, projectId string, regionId string, ...) ApiListAccessTokensRequest + func (a DefaultAPIServiceMock) ListAccessTokensExecute(r ApiListAccessTokensRequest) (*ListAccessTokensResponse, error) + func (a DefaultAPIServiceMock) ListDestinations(ctx context.Context, projectId string, regionId string, ...) ApiListDestinationsRequest + func (a DefaultAPIServiceMock) ListDestinationsExecute(r ApiListDestinationsRequest) (*ListDestinationsResponse, error) + func (a DefaultAPIServiceMock) ListTelemetryRouters(ctx context.Context, projectId string, regionId string) ApiListTelemetryRoutersRequest + func (a DefaultAPIServiceMock) ListTelemetryRoutersExecute(r ApiListTelemetryRoutersRequest) (*ListTelemetryRoutersResponse, error) + func (a DefaultAPIServiceMock) UpdateAccessToken(ctx context.Context, projectId string, regionId string, ...) ApiUpdateAccessTokenRequest + func (a DefaultAPIServiceMock) UpdateAccessTokenExecute(r ApiUpdateAccessTokenRequest) (*UpdateAccessTokenResponse, error) + func (a DefaultAPIServiceMock) UpdateDestination(ctx context.Context, projectId string, regionId string, ...) ApiUpdateDestinationRequest + func (a DefaultAPIServiceMock) UpdateDestinationExecute(r ApiUpdateDestinationRequest) (*DestinationResponse, error) + func (a DefaultAPIServiceMock) UpdateTelemetryRouter(ctx context.Context, projectId string, regionId string, ...) ApiUpdateTelemetryRouterRequest + func (a DefaultAPIServiceMock) UpdateTelemetryRouterExecute(r ApiUpdateTelemetryRouterRequest) (*TelemetryRouterResponse, error) + type DestinationConfig struct + AdditionalProperties map[string]interface{} + ConfigType DestinationConfigType + Filter *ConfigFilter + OpenTelemetry *DestinationConfigOpenTelemetry + S3 *DestinationConfigS3 + func NewDestinationConfig(configType DestinationConfigType) *DestinationConfig + func NewDestinationConfigWithDefaults() *DestinationConfig + func (o *DestinationConfig) GetConfigType() DestinationConfigType + func (o *DestinationConfig) GetConfigTypeOk() (*DestinationConfigType, bool) + func (o *DestinationConfig) GetFilter() ConfigFilter + func (o *DestinationConfig) GetFilterOk() (*ConfigFilter, bool) + func (o *DestinationConfig) GetOpenTelemetry() DestinationConfigOpenTelemetry + func (o *DestinationConfig) GetOpenTelemetryOk() (*DestinationConfigOpenTelemetry, bool) + func (o *DestinationConfig) GetS3() DestinationConfigS3 + func (o *DestinationConfig) GetS3Ok() (*DestinationConfigS3, bool) + func (o *DestinationConfig) HasFilter() bool + func (o *DestinationConfig) HasOpenTelemetry() bool + func (o *DestinationConfig) HasS3() bool + func (o *DestinationConfig) SetConfigType(v DestinationConfigType) + func (o *DestinationConfig) SetFilter(v ConfigFilter) + func (o *DestinationConfig) SetOpenTelemetry(v DestinationConfigOpenTelemetry) + func (o *DestinationConfig) SetS3(v DestinationConfigS3) + func (o *DestinationConfig) UnmarshalJSON(data []byte) (err error) + func (o DestinationConfig) MarshalJSON() ([]byte, error) + func (o DestinationConfig) ToMap() (map[string]interface{}, error) + type DestinationConfigOpenTelemetry struct + AdditionalProperties map[string]interface{} + BasicAuth *DestinationConfigOpenTelemetryBasicAuth + BearerToken *string + Uri string + func NewDestinationConfigOpenTelemetry(uri string) *DestinationConfigOpenTelemetry + func NewDestinationConfigOpenTelemetryWithDefaults() *DestinationConfigOpenTelemetry + func (o *DestinationConfigOpenTelemetry) GetBasicAuth() DestinationConfigOpenTelemetryBasicAuth + func (o *DestinationConfigOpenTelemetry) GetBasicAuthOk() (*DestinationConfigOpenTelemetryBasicAuth, bool) + func (o *DestinationConfigOpenTelemetry) GetBearerToken() string + func (o *DestinationConfigOpenTelemetry) GetBearerTokenOk() (*string, bool) + func (o *DestinationConfigOpenTelemetry) GetUri() string + func (o *DestinationConfigOpenTelemetry) GetUriOk() (*string, bool) + func (o *DestinationConfigOpenTelemetry) HasBasicAuth() bool + func (o *DestinationConfigOpenTelemetry) HasBearerToken() bool + func (o *DestinationConfigOpenTelemetry) SetBasicAuth(v DestinationConfigOpenTelemetryBasicAuth) + func (o *DestinationConfigOpenTelemetry) SetBearerToken(v string) + func (o *DestinationConfigOpenTelemetry) SetUri(v string) + func (o *DestinationConfigOpenTelemetry) UnmarshalJSON(data []byte) (err error) + func (o DestinationConfigOpenTelemetry) MarshalJSON() ([]byte, error) + func (o DestinationConfigOpenTelemetry) ToMap() (map[string]interface{}, error) + type DestinationConfigOpenTelemetryBasicAuth struct + AdditionalProperties map[string]interface{} + Password string + Username string + func NewDestinationConfigOpenTelemetryBasicAuth(password string, username string) *DestinationConfigOpenTelemetryBasicAuth + func NewDestinationConfigOpenTelemetryBasicAuthWithDefaults() *DestinationConfigOpenTelemetryBasicAuth + func (o *DestinationConfigOpenTelemetryBasicAuth) GetPassword() string + func (o *DestinationConfigOpenTelemetryBasicAuth) GetPasswordOk() (*string, bool) + func (o *DestinationConfigOpenTelemetryBasicAuth) GetUsername() string + func (o *DestinationConfigOpenTelemetryBasicAuth) GetUsernameOk() (*string, bool) + func (o *DestinationConfigOpenTelemetryBasicAuth) SetPassword(v string) + func (o *DestinationConfigOpenTelemetryBasicAuth) SetUsername(v string) + func (o *DestinationConfigOpenTelemetryBasicAuth) UnmarshalJSON(data []byte) (err error) + func (o DestinationConfigOpenTelemetryBasicAuth) MarshalJSON() ([]byte, error) + func (o DestinationConfigOpenTelemetryBasicAuth) ToMap() (map[string]interface{}, error) + type DestinationConfigS3 struct + AccessKey *DestinationConfigS3AccessKey + AdditionalProperties map[string]interface{} + Bucket string + Endpoint string + func NewDestinationConfigS3(bucket string, endpoint string) *DestinationConfigS3 + func NewDestinationConfigS3WithDefaults() *DestinationConfigS3 + func (o *DestinationConfigS3) GetAccessKey() DestinationConfigS3AccessKey + func (o *DestinationConfigS3) GetAccessKeyOk() (*DestinationConfigS3AccessKey, bool) + func (o *DestinationConfigS3) GetBucket() string + func (o *DestinationConfigS3) GetBucketOk() (*string, bool) + func (o *DestinationConfigS3) GetEndpoint() string + func (o *DestinationConfigS3) GetEndpointOk() (*string, bool) + func (o *DestinationConfigS3) HasAccessKey() bool + func (o *DestinationConfigS3) SetAccessKey(v DestinationConfigS3AccessKey) + func (o *DestinationConfigS3) SetBucket(v string) + func (o *DestinationConfigS3) SetEndpoint(v string) + func (o *DestinationConfigS3) UnmarshalJSON(data []byte) (err error) + func (o DestinationConfigS3) MarshalJSON() ([]byte, error) + func (o DestinationConfigS3) ToMap() (map[string]interface{}, error) + type DestinationConfigS3AccessKey struct + AdditionalProperties map[string]interface{} + Id string + Secret string + func NewDestinationConfigS3AccessKey(id string, secret string) *DestinationConfigS3AccessKey + func NewDestinationConfigS3AccessKeyWithDefaults() *DestinationConfigS3AccessKey + func (o *DestinationConfigS3AccessKey) GetId() string + func (o *DestinationConfigS3AccessKey) GetIdOk() (*string, bool) + func (o *DestinationConfigS3AccessKey) GetSecret() string + func (o *DestinationConfigS3AccessKey) GetSecretOk() (*string, bool) + func (o *DestinationConfigS3AccessKey) SetId(v string) + func (o *DestinationConfigS3AccessKey) SetSecret(v string) + func (o *DestinationConfigS3AccessKey) UnmarshalJSON(data []byte) (err error) + func (o DestinationConfigS3AccessKey) MarshalJSON() ([]byte, error) + func (o DestinationConfigS3AccessKey) ToMap() (map[string]interface{}, error) + type DestinationConfigType string + const DESTINATIONCONFIGTYPE_OPEN_TELEMETRY + const DESTINATIONCONFIGTYPE_S3 + func NewDestinationConfigTypeFromValue(v string) (*DestinationConfigType, error) + func (v *DestinationConfigType) UnmarshalJSON(src []byte) error + func (v DestinationConfigType) IsValid() bool + func (v DestinationConfigType) Ptr() *DestinationConfigType + type DestinationResponse struct + AdditionalProperties map[string]interface{} + Config DestinationConfig + CreationTime time.Time + CredentialType string + Description *string + DisplayName string + Id string + Status string + func NewDestinationResponse(config DestinationConfig, creationTime time.Time, credentialType string, ...) *DestinationResponse + func NewDestinationResponseWithDefaults() *DestinationResponse + func (o *DestinationResponse) GetConfig() DestinationConfig + func (o *DestinationResponse) GetConfigOk() (*DestinationConfig, bool) + func (o *DestinationResponse) GetCreationTime() time.Time + func (o *DestinationResponse) GetCreationTimeOk() (*time.Time, bool) + func (o *DestinationResponse) GetCredentialType() string + func (o *DestinationResponse) GetCredentialTypeOk() (*string, bool) + func (o *DestinationResponse) GetDescription() string + func (o *DestinationResponse) GetDescriptionOk() (*string, bool) + func (o *DestinationResponse) GetDisplayName() string + func (o *DestinationResponse) GetDisplayNameOk() (*string, bool) + func (o *DestinationResponse) GetId() string + func (o *DestinationResponse) GetIdOk() (*string, bool) + func (o *DestinationResponse) GetStatus() string + func (o *DestinationResponse) GetStatusOk() (*string, bool) + func (o *DestinationResponse) HasDescription() bool + func (o *DestinationResponse) SetConfig(v DestinationConfig) + func (o *DestinationResponse) SetCreationTime(v time.Time) + func (o *DestinationResponse) SetCredentialType(v string) + func (o *DestinationResponse) SetDescription(v string) + func (o *DestinationResponse) SetDisplayName(v string) + func (o *DestinationResponse) SetId(v string) + func (o *DestinationResponse) SetStatus(v string) + func (o *DestinationResponse) UnmarshalJSON(data []byte) (err error) + func (o DestinationResponse) MarshalJSON() ([]byte, error) + func (o DestinationResponse) ToMap() (map[string]interface{}, error) + type GetAccessTokenResponse struct + AdditionalProperties map[string]interface{} + CreatorId string + Description *string + DisplayName string + ExpirationTime NullableTime + Id string + Status string + func NewGetAccessTokenResponse(creatorId string, displayName string, id string, status string) *GetAccessTokenResponse + func NewGetAccessTokenResponseWithDefaults() *GetAccessTokenResponse + func (o *GetAccessTokenResponse) GetCreatorId() string + func (o *GetAccessTokenResponse) GetCreatorIdOk() (*string, bool) + func (o *GetAccessTokenResponse) GetDescription() string + func (o *GetAccessTokenResponse) GetDescriptionOk() (*string, bool) + func (o *GetAccessTokenResponse) GetDisplayName() string + func (o *GetAccessTokenResponse) GetDisplayNameOk() (*string, bool) + func (o *GetAccessTokenResponse) GetExpirationTime() time.Time + func (o *GetAccessTokenResponse) GetExpirationTimeOk() (*time.Time, bool) + func (o *GetAccessTokenResponse) GetId() string + func (o *GetAccessTokenResponse) GetIdOk() (*string, bool) + func (o *GetAccessTokenResponse) GetStatus() string + func (o *GetAccessTokenResponse) GetStatusOk() (*string, bool) + func (o *GetAccessTokenResponse) HasDescription() bool + func (o *GetAccessTokenResponse) HasExpirationTime() bool + func (o *GetAccessTokenResponse) SetCreatorId(v string) + func (o *GetAccessTokenResponse) SetDescription(v string) + func (o *GetAccessTokenResponse) SetDisplayName(v string) + func (o *GetAccessTokenResponse) SetExpirationTime(v time.Time) + func (o *GetAccessTokenResponse) SetExpirationTimeNil() + func (o *GetAccessTokenResponse) SetId(v string) + func (o *GetAccessTokenResponse) SetStatus(v string) + func (o *GetAccessTokenResponse) UnmarshalJSON(data []byte) (err error) + func (o *GetAccessTokenResponse) UnsetExpirationTime() + func (o GetAccessTokenResponse) MarshalJSON() ([]byte, error) + func (o GetAccessTokenResponse) ToMap() (map[string]interface{}, error) + type ListAccessTokensResponse struct + AccessTokens []GetAccessTokenResponse + AdditionalProperties map[string]interface{} + NextPageToken *string + func NewListAccessTokensResponse(accessTokens []GetAccessTokenResponse) *ListAccessTokensResponse + func NewListAccessTokensResponseWithDefaults() *ListAccessTokensResponse + func (o *ListAccessTokensResponse) GetAccessTokens() []GetAccessTokenResponse + func (o *ListAccessTokensResponse) GetAccessTokensOk() ([]GetAccessTokenResponse, bool) + func (o *ListAccessTokensResponse) GetNextPageToken() string + func (o *ListAccessTokensResponse) GetNextPageTokenOk() (*string, bool) + func (o *ListAccessTokensResponse) HasNextPageToken() bool + func (o *ListAccessTokensResponse) SetAccessTokens(v []GetAccessTokenResponse) + func (o *ListAccessTokensResponse) SetNextPageToken(v string) + func (o *ListAccessTokensResponse) UnmarshalJSON(data []byte) (err error) + func (o ListAccessTokensResponse) MarshalJSON() ([]byte, error) + func (o ListAccessTokensResponse) ToMap() (map[string]interface{}, error) + type ListDestinationsResponse struct + AdditionalProperties map[string]interface{} + Destinations []DestinationResponse + NextPageToken *string + func NewListDestinationsResponse(destinations []DestinationResponse) *ListDestinationsResponse + func NewListDestinationsResponseWithDefaults() *ListDestinationsResponse + func (o *ListDestinationsResponse) GetDestinations() []DestinationResponse + func (o *ListDestinationsResponse) GetDestinationsOk() ([]DestinationResponse, bool) + func (o *ListDestinationsResponse) GetNextPageToken() string + func (o *ListDestinationsResponse) GetNextPageTokenOk() (*string, bool) + func (o *ListDestinationsResponse) HasNextPageToken() bool + func (o *ListDestinationsResponse) SetDestinations(v []DestinationResponse) + func (o *ListDestinationsResponse) SetNextPageToken(v string) + func (o *ListDestinationsResponse) UnmarshalJSON(data []byte) (err error) + func (o ListDestinationsResponse) MarshalJSON() ([]byte, error) + func (o ListDestinationsResponse) ToMap() (map[string]interface{}, error) + type ListTelemetryRoutersResponse struct + AdditionalProperties map[string]interface{} + NextPageToken *string + TelemetryRouters []TelemetryRouterResponse + func NewListTelemetryRoutersResponse(telemetryRouters []TelemetryRouterResponse) *ListTelemetryRoutersResponse + func NewListTelemetryRoutersResponseWithDefaults() *ListTelemetryRoutersResponse + func (o *ListTelemetryRoutersResponse) GetNextPageToken() string + func (o *ListTelemetryRoutersResponse) GetNextPageTokenOk() (*string, bool) + func (o *ListTelemetryRoutersResponse) GetTelemetryRouters() []TelemetryRouterResponse + func (o *ListTelemetryRoutersResponse) GetTelemetryRoutersOk() ([]TelemetryRouterResponse, bool) + func (o *ListTelemetryRoutersResponse) HasNextPageToken() bool + func (o *ListTelemetryRoutersResponse) SetNextPageToken(v string) + func (o *ListTelemetryRoutersResponse) SetTelemetryRouters(v []TelemetryRouterResponse) + func (o *ListTelemetryRoutersResponse) UnmarshalJSON(data []byte) (err error) + func (o ListTelemetryRoutersResponse) MarshalJSON() ([]byte, error) + func (o ListTelemetryRoutersResponse) ToMap() (map[string]interface{}, error) + type MappedNullable interface + ToMap func() (map[string]interface{}, error) + type NullableAccessTokenBaseRequest struct + func NewNullableAccessTokenBaseRequest(val *AccessTokenBaseRequest) *NullableAccessTokenBaseRequest + func (v *NullableAccessTokenBaseRequest) Set(val *AccessTokenBaseRequest) + func (v *NullableAccessTokenBaseRequest) UnmarshalJSON(src []byte) error + func (v *NullableAccessTokenBaseRequest) Unset() + func (v NullableAccessTokenBaseRequest) Get() *AccessTokenBaseRequest + func (v NullableAccessTokenBaseRequest) IsSet() bool + func (v NullableAccessTokenBaseRequest) MarshalJSON() ([]byte, error) + type NullableAccessTokenBaseResponse struct + func NewNullableAccessTokenBaseResponse(val *AccessTokenBaseResponse) *NullableAccessTokenBaseResponse + func (v *NullableAccessTokenBaseResponse) Set(val *AccessTokenBaseResponse) + func (v *NullableAccessTokenBaseResponse) UnmarshalJSON(src []byte) error + func (v *NullableAccessTokenBaseResponse) Unset() + func (v NullableAccessTokenBaseResponse) Get() *AccessTokenBaseResponse + func (v NullableAccessTokenBaseResponse) IsSet() bool + func (v NullableAccessTokenBaseResponse) 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 NullableConfigFilter struct + func NewNullableConfigFilter(val *ConfigFilter) *NullableConfigFilter + func (v *NullableConfigFilter) Set(val *ConfigFilter) + func (v *NullableConfigFilter) UnmarshalJSON(src []byte) error + func (v *NullableConfigFilter) Unset() + func (v NullableConfigFilter) Get() *ConfigFilter + func (v NullableConfigFilter) IsSet() bool + func (v NullableConfigFilter) MarshalJSON() ([]byte, error) + type NullableConfigFilterAttributes struct + func NewNullableConfigFilterAttributes(val *ConfigFilterAttributes) *NullableConfigFilterAttributes + func (v *NullableConfigFilterAttributes) Set(val *ConfigFilterAttributes) + func (v *NullableConfigFilterAttributes) UnmarshalJSON(src []byte) error + func (v *NullableConfigFilterAttributes) Unset() + func (v NullableConfigFilterAttributes) Get() *ConfigFilterAttributes + func (v NullableConfigFilterAttributes) IsSet() bool + func (v NullableConfigFilterAttributes) MarshalJSON() ([]byte, error) + type NullableConfigFilterLevel struct + func NewNullableConfigFilterLevel(val *ConfigFilterLevel) *NullableConfigFilterLevel + func (v *NullableConfigFilterLevel) Set(val *ConfigFilterLevel) + func (v *NullableConfigFilterLevel) UnmarshalJSON(src []byte) error + func (v *NullableConfigFilterLevel) Unset() + func (v NullableConfigFilterLevel) Get() *ConfigFilterLevel + func (v NullableConfigFilterLevel) IsSet() bool + func (v NullableConfigFilterLevel) MarshalJSON() ([]byte, error) + type NullableConfigFilterMatcher struct + func NewNullableConfigFilterMatcher(val *ConfigFilterMatcher) *NullableConfigFilterMatcher + func (v *NullableConfigFilterMatcher) Set(val *ConfigFilterMatcher) + func (v *NullableConfigFilterMatcher) UnmarshalJSON(src []byte) error + func (v *NullableConfigFilterMatcher) Unset() + func (v NullableConfigFilterMatcher) Get() *ConfigFilterMatcher + func (v NullableConfigFilterMatcher) IsSet() bool + func (v NullableConfigFilterMatcher) MarshalJSON() ([]byte, error) + type NullableCreateAccessTokenPayload struct + func NewNullableCreateAccessTokenPayload(val *CreateAccessTokenPayload) *NullableCreateAccessTokenPayload + func (v *NullableCreateAccessTokenPayload) Set(val *CreateAccessTokenPayload) + func (v *NullableCreateAccessTokenPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateAccessTokenPayload) Unset() + func (v NullableCreateAccessTokenPayload) Get() *CreateAccessTokenPayload + func (v NullableCreateAccessTokenPayload) IsSet() bool + func (v NullableCreateAccessTokenPayload) MarshalJSON() ([]byte, error) + type NullableCreateAccessTokenResponse struct + func NewNullableCreateAccessTokenResponse(val *CreateAccessTokenResponse) *NullableCreateAccessTokenResponse + func (v *NullableCreateAccessTokenResponse) Set(val *CreateAccessTokenResponse) + func (v *NullableCreateAccessTokenResponse) UnmarshalJSON(src []byte) error + func (v *NullableCreateAccessTokenResponse) Unset() + func (v NullableCreateAccessTokenResponse) Get() *CreateAccessTokenResponse + func (v NullableCreateAccessTokenResponse) IsSet() bool + func (v NullableCreateAccessTokenResponse) MarshalJSON() ([]byte, error) + type NullableCreateDestinationPayload struct + func NewNullableCreateDestinationPayload(val *CreateDestinationPayload) *NullableCreateDestinationPayload + func (v *NullableCreateDestinationPayload) Set(val *CreateDestinationPayload) + func (v *NullableCreateDestinationPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateDestinationPayload) Unset() + func (v NullableCreateDestinationPayload) Get() *CreateDestinationPayload + func (v NullableCreateDestinationPayload) IsSet() bool + func (v NullableCreateDestinationPayload) MarshalJSON() ([]byte, error) + type NullableCreateTelemetryRouterPayload struct + func NewNullableCreateTelemetryRouterPayload(val *CreateTelemetryRouterPayload) *NullableCreateTelemetryRouterPayload + func (v *NullableCreateTelemetryRouterPayload) Set(val *CreateTelemetryRouterPayload) + func (v *NullableCreateTelemetryRouterPayload) UnmarshalJSON(src []byte) error + func (v *NullableCreateTelemetryRouterPayload) Unset() + func (v NullableCreateTelemetryRouterPayload) Get() *CreateTelemetryRouterPayload + func (v NullableCreateTelemetryRouterPayload) IsSet() bool + func (v NullableCreateTelemetryRouterPayload) MarshalJSON() ([]byte, error) + type NullableDestinationConfig struct + func NewNullableDestinationConfig(val *DestinationConfig) *NullableDestinationConfig + func (v *NullableDestinationConfig) Set(val *DestinationConfig) + func (v *NullableDestinationConfig) UnmarshalJSON(src []byte) error + func (v *NullableDestinationConfig) Unset() + func (v NullableDestinationConfig) Get() *DestinationConfig + func (v NullableDestinationConfig) IsSet() bool + func (v NullableDestinationConfig) MarshalJSON() ([]byte, error) + type NullableDestinationConfigOpenTelemetry struct + func NewNullableDestinationConfigOpenTelemetry(val *DestinationConfigOpenTelemetry) *NullableDestinationConfigOpenTelemetry + func (v *NullableDestinationConfigOpenTelemetry) Set(val *DestinationConfigOpenTelemetry) + func (v *NullableDestinationConfigOpenTelemetry) UnmarshalJSON(src []byte) error + func (v *NullableDestinationConfigOpenTelemetry) Unset() + func (v NullableDestinationConfigOpenTelemetry) Get() *DestinationConfigOpenTelemetry + func (v NullableDestinationConfigOpenTelemetry) IsSet() bool + func (v NullableDestinationConfigOpenTelemetry) MarshalJSON() ([]byte, error) + type NullableDestinationConfigOpenTelemetryBasicAuth struct + func NewNullableDestinationConfigOpenTelemetryBasicAuth(val *DestinationConfigOpenTelemetryBasicAuth) *NullableDestinationConfigOpenTelemetryBasicAuth + func (v *NullableDestinationConfigOpenTelemetryBasicAuth) Set(val *DestinationConfigOpenTelemetryBasicAuth) + func (v *NullableDestinationConfigOpenTelemetryBasicAuth) UnmarshalJSON(src []byte) error + func (v *NullableDestinationConfigOpenTelemetryBasicAuth) Unset() + func (v NullableDestinationConfigOpenTelemetryBasicAuth) Get() *DestinationConfigOpenTelemetryBasicAuth + func (v NullableDestinationConfigOpenTelemetryBasicAuth) IsSet() bool + func (v NullableDestinationConfigOpenTelemetryBasicAuth) MarshalJSON() ([]byte, error) + type NullableDestinationConfigS3 struct + func NewNullableDestinationConfigS3(val *DestinationConfigS3) *NullableDestinationConfigS3 + func (v *NullableDestinationConfigS3) Set(val *DestinationConfigS3) + func (v *NullableDestinationConfigS3) UnmarshalJSON(src []byte) error + func (v *NullableDestinationConfigS3) Unset() + func (v NullableDestinationConfigS3) Get() *DestinationConfigS3 + func (v NullableDestinationConfigS3) IsSet() bool + func (v NullableDestinationConfigS3) MarshalJSON() ([]byte, error) + type NullableDestinationConfigS3AccessKey struct + func NewNullableDestinationConfigS3AccessKey(val *DestinationConfigS3AccessKey) *NullableDestinationConfigS3AccessKey + func (v *NullableDestinationConfigS3AccessKey) Set(val *DestinationConfigS3AccessKey) + func (v *NullableDestinationConfigS3AccessKey) UnmarshalJSON(src []byte) error + func (v *NullableDestinationConfigS3AccessKey) Unset() + func (v NullableDestinationConfigS3AccessKey) Get() *DestinationConfigS3AccessKey + func (v NullableDestinationConfigS3AccessKey) IsSet() bool + func (v NullableDestinationConfigS3AccessKey) MarshalJSON() ([]byte, error) + type NullableDestinationConfigType struct + func NewNullableDestinationConfigType(val *DestinationConfigType) *NullableDestinationConfigType + func (v *NullableDestinationConfigType) Set(val *DestinationConfigType) + func (v *NullableDestinationConfigType) UnmarshalJSON(src []byte) error + func (v *NullableDestinationConfigType) Unset() + func (v NullableDestinationConfigType) Get() *DestinationConfigType + func (v NullableDestinationConfigType) IsSet() bool + func (v NullableDestinationConfigType) MarshalJSON() ([]byte, error) + type NullableDestinationResponse struct + func NewNullableDestinationResponse(val *DestinationResponse) *NullableDestinationResponse + func (v *NullableDestinationResponse) Set(val *DestinationResponse) + func (v *NullableDestinationResponse) UnmarshalJSON(src []byte) error + func (v *NullableDestinationResponse) Unset() + func (v NullableDestinationResponse) Get() *DestinationResponse + func (v NullableDestinationResponse) IsSet() bool + func (v NullableDestinationResponse) 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 NullableGetAccessTokenResponse struct + func NewNullableGetAccessTokenResponse(val *GetAccessTokenResponse) *NullableGetAccessTokenResponse + func (v *NullableGetAccessTokenResponse) Set(val *GetAccessTokenResponse) + func (v *NullableGetAccessTokenResponse) UnmarshalJSON(src []byte) error + func (v *NullableGetAccessTokenResponse) Unset() + func (v NullableGetAccessTokenResponse) Get() *GetAccessTokenResponse + func (v NullableGetAccessTokenResponse) IsSet() bool + func (v NullableGetAccessTokenResponse) 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 NullableListAccessTokensResponse struct + func NewNullableListAccessTokensResponse(val *ListAccessTokensResponse) *NullableListAccessTokensResponse + func (v *NullableListAccessTokensResponse) Set(val *ListAccessTokensResponse) + func (v *NullableListAccessTokensResponse) UnmarshalJSON(src []byte) error + func (v *NullableListAccessTokensResponse) Unset() + func (v NullableListAccessTokensResponse) Get() *ListAccessTokensResponse + func (v NullableListAccessTokensResponse) IsSet() bool + func (v NullableListAccessTokensResponse) MarshalJSON() ([]byte, error) + type NullableListDestinationsResponse struct + func NewNullableListDestinationsResponse(val *ListDestinationsResponse) *NullableListDestinationsResponse + func (v *NullableListDestinationsResponse) Set(val *ListDestinationsResponse) + func (v *NullableListDestinationsResponse) UnmarshalJSON(src []byte) error + func (v *NullableListDestinationsResponse) Unset() + func (v NullableListDestinationsResponse) Get() *ListDestinationsResponse + func (v NullableListDestinationsResponse) IsSet() bool + func (v NullableListDestinationsResponse) MarshalJSON() ([]byte, error) + type NullableListTelemetryRoutersResponse struct + func NewNullableListTelemetryRoutersResponse(val *ListTelemetryRoutersResponse) *NullableListTelemetryRoutersResponse + func (v *NullableListTelemetryRoutersResponse) Set(val *ListTelemetryRoutersResponse) + func (v *NullableListTelemetryRoutersResponse) UnmarshalJSON(src []byte) error + func (v *NullableListTelemetryRoutersResponse) Unset() + func (v NullableListTelemetryRoutersResponse) Get() *ListTelemetryRoutersResponse + func (v NullableListTelemetryRoutersResponse) IsSet() bool + func (v NullableListTelemetryRoutersResponse) MarshalJSON() ([]byte, error) + type NullableResponse4xx struct + func NewNullableResponse4xx(val *Response4xx) *NullableResponse4xx + func (v *NullableResponse4xx) Set(val *Response4xx) + func (v *NullableResponse4xx) UnmarshalJSON(src []byte) error + func (v *NullableResponse4xx) Unset() + func (v NullableResponse4xx) Get() *Response4xx + func (v NullableResponse4xx) IsSet() bool + func (v NullableResponse4xx) 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 NullableTelemetryRouterResponse struct + func NewNullableTelemetryRouterResponse(val *TelemetryRouterResponse) *NullableTelemetryRouterResponse + func (v *NullableTelemetryRouterResponse) Set(val *TelemetryRouterResponse) + func (v *NullableTelemetryRouterResponse) UnmarshalJSON(src []byte) error + func (v *NullableTelemetryRouterResponse) Unset() + func (v NullableTelemetryRouterResponse) Get() *TelemetryRouterResponse + func (v NullableTelemetryRouterResponse) IsSet() bool + func (v NullableTelemetryRouterResponse) 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 NullableUpdateAccessTokenPayload struct + func NewNullableUpdateAccessTokenPayload(val *UpdateAccessTokenPayload) *NullableUpdateAccessTokenPayload + func (v *NullableUpdateAccessTokenPayload) Set(val *UpdateAccessTokenPayload) + func (v *NullableUpdateAccessTokenPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAccessTokenPayload) Unset() + func (v NullableUpdateAccessTokenPayload) Get() *UpdateAccessTokenPayload + func (v NullableUpdateAccessTokenPayload) IsSet() bool + func (v NullableUpdateAccessTokenPayload) MarshalJSON() ([]byte, error) + type NullableUpdateAccessTokenResponse struct + func NewNullableUpdateAccessTokenResponse(val *UpdateAccessTokenResponse) *NullableUpdateAccessTokenResponse + func (v *NullableUpdateAccessTokenResponse) Set(val *UpdateAccessTokenResponse) + func (v *NullableUpdateAccessTokenResponse) UnmarshalJSON(src []byte) error + func (v *NullableUpdateAccessTokenResponse) Unset() + func (v NullableUpdateAccessTokenResponse) Get() *UpdateAccessTokenResponse + func (v NullableUpdateAccessTokenResponse) IsSet() bool + func (v NullableUpdateAccessTokenResponse) MarshalJSON() ([]byte, error) + type NullableUpdateDestinationPayload struct + func NewNullableUpdateDestinationPayload(val *UpdateDestinationPayload) *NullableUpdateDestinationPayload + func (v *NullableUpdateDestinationPayload) Set(val *UpdateDestinationPayload) + func (v *NullableUpdateDestinationPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateDestinationPayload) Unset() + func (v NullableUpdateDestinationPayload) Get() *UpdateDestinationPayload + func (v NullableUpdateDestinationPayload) IsSet() bool + func (v NullableUpdateDestinationPayload) MarshalJSON() ([]byte, error) + type NullableUpdateTelemetryRouterPayload struct + func NewNullableUpdateTelemetryRouterPayload(val *UpdateTelemetryRouterPayload) *NullableUpdateTelemetryRouterPayload + func (v *NullableUpdateTelemetryRouterPayload) Set(val *UpdateTelemetryRouterPayload) + func (v *NullableUpdateTelemetryRouterPayload) UnmarshalJSON(src []byte) error + func (v *NullableUpdateTelemetryRouterPayload) Unset() + func (v NullableUpdateTelemetryRouterPayload) Get() *UpdateTelemetryRouterPayload + func (v NullableUpdateTelemetryRouterPayload) IsSet() bool + func (v NullableUpdateTelemetryRouterPayload) MarshalJSON() ([]byte, error) + type Response4xx struct + AdditionalProperties map[string]interface{} + Message string + func NewResponse4xx(message string) *Response4xx + func NewResponse4xxWithDefaults() *Response4xx + func (o *Response4xx) GetMessage() string + func (o *Response4xx) GetMessageOk() (*string, bool) + func (o *Response4xx) SetMessage(v string) + func (o *Response4xx) UnmarshalJSON(data []byte) (err error) + func (o Response4xx) MarshalJSON() ([]byte, error) + func (o Response4xx) ToMap() (map[string]interface{}, error) + type TelemetryRouterResponse struct + AdditionalProperties map[string]interface{} + CreationTime time.Time + Description *string + DisplayName string + Filter *ConfigFilter + Id string + Status string + Uri string + func NewTelemetryRouterResponse(creationTime time.Time, displayName string, id string, status string, ...) *TelemetryRouterResponse + func NewTelemetryRouterResponseWithDefaults() *TelemetryRouterResponse + func (o *TelemetryRouterResponse) GetCreationTime() time.Time + func (o *TelemetryRouterResponse) GetCreationTimeOk() (*time.Time, bool) + func (o *TelemetryRouterResponse) GetDescription() string + func (o *TelemetryRouterResponse) GetDescriptionOk() (*string, bool) + func (o *TelemetryRouterResponse) GetDisplayName() string + func (o *TelemetryRouterResponse) GetDisplayNameOk() (*string, bool) + func (o *TelemetryRouterResponse) GetFilter() ConfigFilter + func (o *TelemetryRouterResponse) GetFilterOk() (*ConfigFilter, bool) + func (o *TelemetryRouterResponse) GetId() string + func (o *TelemetryRouterResponse) GetIdOk() (*string, bool) + func (o *TelemetryRouterResponse) GetStatus() string + func (o *TelemetryRouterResponse) GetStatusOk() (*string, bool) + func (o *TelemetryRouterResponse) GetUri() string + func (o *TelemetryRouterResponse) GetUriOk() (*string, bool) + func (o *TelemetryRouterResponse) HasDescription() bool + func (o *TelemetryRouterResponse) HasFilter() bool + func (o *TelemetryRouterResponse) SetCreationTime(v time.Time) + func (o *TelemetryRouterResponse) SetDescription(v string) + func (o *TelemetryRouterResponse) SetDisplayName(v string) + func (o *TelemetryRouterResponse) SetFilter(v ConfigFilter) + func (o *TelemetryRouterResponse) SetId(v string) + func (o *TelemetryRouterResponse) SetStatus(v string) + func (o *TelemetryRouterResponse) SetUri(v string) + func (o *TelemetryRouterResponse) UnmarshalJSON(data []byte) (err error) + func (o TelemetryRouterResponse) MarshalJSON() ([]byte, error) + func (o TelemetryRouterResponse) ToMap() (map[string]interface{}, error) + type UpdateAccessTokenPayload struct + AdditionalProperties map[string]interface{} + Description NullableString + DisplayName NullableString + func NewUpdateAccessTokenPayload() *UpdateAccessTokenPayload + func NewUpdateAccessTokenPayloadWithDefaults() *UpdateAccessTokenPayload + func (o *UpdateAccessTokenPayload) GetDescription() string + func (o *UpdateAccessTokenPayload) GetDescriptionOk() (*string, bool) + func (o *UpdateAccessTokenPayload) GetDisplayName() string + func (o *UpdateAccessTokenPayload) GetDisplayNameOk() (*string, bool) + func (o *UpdateAccessTokenPayload) HasDescription() bool + func (o *UpdateAccessTokenPayload) HasDisplayName() bool + func (o *UpdateAccessTokenPayload) SetDescription(v string) + func (o *UpdateAccessTokenPayload) SetDescriptionNil() + func (o *UpdateAccessTokenPayload) SetDisplayName(v string) + func (o *UpdateAccessTokenPayload) SetDisplayNameNil() + func (o *UpdateAccessTokenPayload) UnmarshalJSON(data []byte) (err error) + func (o *UpdateAccessTokenPayload) UnsetDescription() + func (o *UpdateAccessTokenPayload) UnsetDisplayName() + func (o UpdateAccessTokenPayload) MarshalJSON() ([]byte, error) + func (o UpdateAccessTokenPayload) ToMap() (map[string]interface{}, error) + type UpdateAccessTokenResponse struct + AdditionalProperties map[string]interface{} + CreatorId string + Description *string + DisplayName string + ExpirationTime NullableTime + Id string + Status string + func NewUpdateAccessTokenResponse(creatorId string, displayName string, id string, status string) *UpdateAccessTokenResponse + func NewUpdateAccessTokenResponseWithDefaults() *UpdateAccessTokenResponse + func (o *UpdateAccessTokenResponse) GetCreatorId() string + func (o *UpdateAccessTokenResponse) GetCreatorIdOk() (*string, bool) + func (o *UpdateAccessTokenResponse) GetDescription() string + func (o *UpdateAccessTokenResponse) GetDescriptionOk() (*string, bool) + func (o *UpdateAccessTokenResponse) GetDisplayName() string + func (o *UpdateAccessTokenResponse) GetDisplayNameOk() (*string, bool) + func (o *UpdateAccessTokenResponse) GetExpirationTime() time.Time + func (o *UpdateAccessTokenResponse) GetExpirationTimeOk() (*time.Time, bool) + func (o *UpdateAccessTokenResponse) GetId() string + func (o *UpdateAccessTokenResponse) GetIdOk() (*string, bool) + func (o *UpdateAccessTokenResponse) GetStatus() string + func (o *UpdateAccessTokenResponse) GetStatusOk() (*string, bool) + func (o *UpdateAccessTokenResponse) HasDescription() bool + func (o *UpdateAccessTokenResponse) HasExpirationTime() bool + func (o *UpdateAccessTokenResponse) SetCreatorId(v string) + func (o *UpdateAccessTokenResponse) SetDescription(v string) + func (o *UpdateAccessTokenResponse) SetDisplayName(v string) + func (o *UpdateAccessTokenResponse) SetExpirationTime(v time.Time) + func (o *UpdateAccessTokenResponse) SetExpirationTimeNil() + func (o *UpdateAccessTokenResponse) SetId(v string) + func (o *UpdateAccessTokenResponse) SetStatus(v string) + func (o *UpdateAccessTokenResponse) UnmarshalJSON(data []byte) (err error) + func (o *UpdateAccessTokenResponse) UnsetExpirationTime() + func (o UpdateAccessTokenResponse) MarshalJSON() ([]byte, error) + func (o UpdateAccessTokenResponse) ToMap() (map[string]interface{}, error) + type UpdateDestinationPayload struct + AdditionalProperties map[string]interface{} + Config *DestinationConfig + Description *string + DisplayName *string + func NewUpdateDestinationPayload() *UpdateDestinationPayload + func NewUpdateDestinationPayloadWithDefaults() *UpdateDestinationPayload + func (o *UpdateDestinationPayload) GetConfig() DestinationConfig + func (o *UpdateDestinationPayload) GetConfigOk() (*DestinationConfig, bool) + func (o *UpdateDestinationPayload) GetDescription() string + func (o *UpdateDestinationPayload) GetDescriptionOk() (*string, bool) + func (o *UpdateDestinationPayload) GetDisplayName() string + func (o *UpdateDestinationPayload) GetDisplayNameOk() (*string, bool) + func (o *UpdateDestinationPayload) HasConfig() bool + func (o *UpdateDestinationPayload) HasDescription() bool + func (o *UpdateDestinationPayload) HasDisplayName() bool + func (o *UpdateDestinationPayload) SetConfig(v DestinationConfig) + func (o *UpdateDestinationPayload) SetDescription(v string) + func (o *UpdateDestinationPayload) SetDisplayName(v string) + func (o *UpdateDestinationPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateDestinationPayload) MarshalJSON() ([]byte, error) + func (o UpdateDestinationPayload) ToMap() (map[string]interface{}, error) + type UpdateTelemetryRouterPayload struct + AdditionalProperties map[string]interface{} + Description *string + DisplayName *string + Filter *ConfigFilter + func NewUpdateTelemetryRouterPayload() *UpdateTelemetryRouterPayload + func NewUpdateTelemetryRouterPayloadWithDefaults() *UpdateTelemetryRouterPayload + func (o *UpdateTelemetryRouterPayload) GetDescription() string + func (o *UpdateTelemetryRouterPayload) GetDescriptionOk() (*string, bool) + func (o *UpdateTelemetryRouterPayload) GetDisplayName() string + func (o *UpdateTelemetryRouterPayload) GetDisplayNameOk() (*string, bool) + func (o *UpdateTelemetryRouterPayload) GetFilter() ConfigFilter + func (o *UpdateTelemetryRouterPayload) GetFilterOk() (*ConfigFilter, bool) + func (o *UpdateTelemetryRouterPayload) HasDescription() bool + func (o *UpdateTelemetryRouterPayload) HasDisplayName() bool + func (o *UpdateTelemetryRouterPayload) HasFilter() bool + func (o *UpdateTelemetryRouterPayload) SetDescription(v string) + func (o *UpdateTelemetryRouterPayload) SetDisplayName(v string) + func (o *UpdateTelemetryRouterPayload) SetFilter(v ConfigFilter) + func (o *UpdateTelemetryRouterPayload) UnmarshalJSON(data []byte) (err error) + func (o UpdateTelemetryRouterPayload) MarshalJSON() ([]byte, error) + func (o UpdateTelemetryRouterPayload) ToMap() (map[string]interface{}, error)