package
1.0.0-beta.23
Repository: https://github.com/last9/datadog-api-client-go.git
Documentation: pkg.go.dev

# README

Go API client for datadog

Collection of all Datadog Public endpoints.

Overview

This API client was generated by the OpenAPI Generator project. By using the OpenAPI-spec from a remote server, you can easily generate an API client.

  • API version: 1.0
  • Package version: 0.1.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen For more information, please visit https://www.datadoghq.com/support/

Installation

Install the following dependencies:

go get github.com/stretchr/testify/assert
go get golang.org/x/oauth2
go get golang.org/x/net/context

Put the package under your project folder and add the following in import:

import sw "./datadog"

To use a proxy, set the environment variable HTTP_PROXY:

os.Setenv("HTTP_PROXY", "http://proxy_name:proxy_port")

Configuration of Server URL

Default configuration comes with Servers field that contains server objects as defined in the OpenAPI specification.

Select Server Configuration

For using other server than the one defined on index 0 set context value sw.ContextServerIndex of type int.

ctx := context.WithValue(context.Background(), sw.ContextServerIndex, 1)

Templated Server URL

Templated server URL is formatted using default variables from configuration or from context value sw.ContextServerVariables of type map[string]string.

ctx := context.WithValue(context.Background(), sw.ContextServerVariables, map[string]string{
	"basePath": "v2",
})

Note, enum values are always validated and all unused variables are silently ignored.

URLs Configuration per Operation

Each operation can use different server URL defined using OperationServers map in the Configuration. An operation is uniquely identifield by "{classname}Service.{nickname}" string. Similar rules for overriding default operation server index and variables applies by using sw.ContextOperationServerIndices and sw.ContextOperationServerVariables context maps.

ctx := context.WithValue(context.Background(), sw.ContextOperationServerIndices, map[string]int{
	"{classname}Service.{nickname}": 2,
})
ctx = context.WithValue(context.Background(), sw.ContextOperationServerVariables, map[string]map[string]string{
	"{classname}Service.{nickname}": {
		"port": "8443",
	},
})

Documentation for API Endpoints

All URIs are relative to https://api.datadoghq.com

ClassMethodHTTP requestDescription
DashboardListsApiCreateDashboardListItemsPost /api/v2/dashboard/lists/manual/{dashboard_list_id}/dashboardsAdd Items to a Dashboard List
DashboardListsApiDeleteDashboardListItemsDelete /api/v2/dashboard/lists/manual/{dashboard_list_id}/dashboardsDelete items from a dashboard list
DashboardListsApiGetDashboardListItemsGet /api/v2/dashboard/lists/manual/{dashboard_list_id}/dashboardsGet items of a Dashboard List
DashboardListsApiUpdateDashboardListItemsPut /api/v2/dashboard/lists/manual/{dashboard_list_id}/dashboardsUpdate items of a dashboard list
IncidentServicesApiCreateIncidentServicePost /api/v2/servicesCreate a new incident service
IncidentServicesApiDeleteIncidentServiceDelete /api/v2/services/{service_id}Delete an existing incident service
IncidentServicesApiGetIncidentServiceGet /api/v2/services/{service_id}Get details of an incident service
IncidentServicesApiListIncidentServicesGet /api/v2/servicesGet a list of all incident services
IncidentServicesApiUpdateIncidentServicePatch /api/v2/services/{service_id}Update an existing incident service
IncidentTeamsApiCreateIncidentTeamPost /api/v2/teamsCreate a new incident team
IncidentTeamsApiDeleteIncidentTeamDelete /api/v2/teams/{team_id}Delete an existing incident team
IncidentTeamsApiGetIncidentTeamGet /api/v2/teams/{team_id}Get details of an incident team
IncidentTeamsApiListIncidentTeamsGet /api/v2/teamsGet a list of all incident teams
IncidentTeamsApiUpdateIncidentTeamPatch /api/v2/teams/{team_id}Update an existing incident team
IncidentsApiCreateIncidentPost /api/v2/incidentsCreate an incident
IncidentsApiDeleteIncidentDelete /api/v2/incidents/{incident_id}Delete an existing incident
IncidentsApiGetIncidentGet /api/v2/incidents/{incident_id}Get the details of an incident
IncidentsApiListIncidentsGet /api/v2/incidentsGet a list of incidents
IncidentsApiUpdateIncidentPatch /api/v2/incidents/{incident_id}Update an existing incident
KeyManagementApiCreateAPIKeyPost /api/v2/api_keysCreate an API key
KeyManagementApiCreateCurrentUserApplicationKeyPost /api/v2/current_user/application_keysCreate an application key for current user
KeyManagementApiDeleteAPIKeyDelete /api/v2/api_keys/{api_key_id}Delete an API key
KeyManagementApiDeleteApplicationKeyDelete /api/v2/application_keys/{app_key_id}Delete an application key
KeyManagementApiDeleteCurrentUserApplicationKeyDelete /api/v2/current_user/application_keys/{app_key_id}Delete an application key owned by current user
KeyManagementApiGetAPIKeyGet /api/v2/api_keys/{api_key_id}Get API key
KeyManagementApiGetCurrentUserApplicationKeyGet /api/v2/current_user/application_keys/{app_key_id}Get one application key owned by current user
KeyManagementApiListAPIKeysGet /api/v2/api_keysGet all API keys
KeyManagementApiListApplicationKeysGet /api/v2/application_keysGet all application keys
KeyManagementApiListCurrentUserApplicationKeysGet /api/v2/current_user/application_keysGet all application keys owned by current user
KeyManagementApiUpdateAPIKeyPatch /api/v2/api_keys/{api_key_id}Edit an API key
KeyManagementApiUpdateApplicationKeyPatch /api/v2/application_keys/{app_key_id}Edit an application key
KeyManagementApiUpdateCurrentUserApplicationKeyPatch /api/v2/current_user/application_keys/{app_key_id}Edit an application key owned by current user
LogsApiAggregateLogsPost /api/v2/logs/analytics/aggregateAggregate events
LogsApiListLogsPost /api/v2/logs/events/searchSearch logs
LogsApiListLogsGetGet /api/v2/logs/eventsGet a list of logs
LogsArchivesApiAddReadRoleToArchivePost /api/v2/logs/config/archives/{archive_id}/readersGrant role to an archive
LogsArchivesApiCreateLogsArchivePost /api/v2/logs/config/archivesCreate an archive
LogsArchivesApiDeleteLogsArchiveDelete /api/v2/logs/config/archives/{archive_id}Delete an archive
LogsArchivesApiGetLogsArchiveGet /api/v2/logs/config/archives/{archive_id}Get an archive
LogsArchivesApiGetLogsArchiveOrderGet /api/v2/logs/config/archive-orderGet archive order
LogsArchivesApiListArchiveReadRolesGet /api/v2/logs/config/archives/{archive_id}/readersList read roles for an archive
LogsArchivesApiListLogsArchivesGet /api/v2/logs/config/archivesGet all archives
LogsArchivesApiRemoveRoleFromArchiveDelete /api/v2/logs/config/archives/{archive_id}/readersRevoke role from an archive
LogsArchivesApiUpdateLogsArchivePut /api/v2/logs/config/archives/{archive_id}Update an archive
LogsArchivesApiUpdateLogsArchiveOrderPut /api/v2/logs/config/archive-orderUpdate archive order
LogsMetricsApiCreateLogsMetricPost /api/v2/logs/config/metricsCreate a log-based metric
LogsMetricsApiDeleteLogsMetricDelete /api/v2/logs/config/metrics/{metric_id}Delete a log-based metric
LogsMetricsApiGetLogsMetricGet /api/v2/logs/config/metrics/{metric_id}Get a log-based metric
LogsMetricsApiListLogsMetricsGet /api/v2/logs/config/metricsGet all log-based metrics
LogsMetricsApiUpdateLogsMetricPatch /api/v2/logs/config/metrics/{metric_id}Update a log-based metric
MetricsApiCreateTagConfigurationPost /api/v2/metrics/{metric_name}/tagsCreate a tag configuration
MetricsApiDeleteTagConfigurationDelete /api/v2/metrics/{metric_name}/tagsDelete a tag configuration
MetricsApiListTagConfigurationByNameGet /api/v2/metrics/{metric_name}/tagsList tag configuration by name
MetricsApiListTagConfigurationsGet /api/v2/metricsList tag configurations
MetricsApiListTagsByMetricNameGet /api/v2/metrics/{metric_name}/all-tagsList tags by metric name
MetricsApiListVolumesByMetricNameGet /api/v2/metrics/{metric_name}/volumesList distinct metric volumes by metric name
MetricsApiUpdateTagConfigurationPatch /api/v2/metrics/{metric_name}/tagsUpdate a tag configuration
ProcessesApiListProcessesGet /api/v2/processesGet all processes
RolesApiAddPermissionToRolePost /api/v2/roles/{role_id}/permissionsGrant permission to a role
RolesApiAddUserToRolePost /api/v2/roles/{role_id}/usersAdd a user to a role
RolesApiCreateRolePost /api/v2/rolesCreate role
RolesApiDeleteRoleDelete /api/v2/roles/{role_id}Delete role
RolesApiGetRoleGet /api/v2/roles/{role_id}Get a role
RolesApiListPermissionsGet /api/v2/permissionsList permissions
RolesApiListRolePermissionsGet /api/v2/roles/{role_id}/permissionsList permissions for a role
RolesApiListRoleUsersGet /api/v2/roles/{role_id}/usersGet all users of a role
RolesApiListRolesGet /api/v2/rolesList roles
RolesApiRemovePermissionFromRoleDelete /api/v2/roles/{role_id}/permissionsRevoke permission
RolesApiRemoveUserFromRoleDelete /api/v2/roles/{role_id}/usersRemove a user from a role
RolesApiUpdateRolePatch /api/v2/roles/{role_id}Update a role
SecurityMonitoringApiCreateSecurityFilterPost /api/v2/security_monitoring/configuration/security_filtersCreate a security filter
SecurityMonitoringApiCreateSecurityMonitoringRulePost /api/v2/security_monitoring/rulesCreate a detection rule
SecurityMonitoringApiDeleteSecurityFilterDelete /api/v2/security_monitoring/configuration/security_filters/{security_filter_id}Delete a security filter
SecurityMonitoringApiDeleteSecurityMonitoringRuleDelete /api/v2/security_monitoring/rules/{rule_id}Delete an existing rule
SecurityMonitoringApiGetSecurityFilterGet /api/v2/security_monitoring/configuration/security_filters/{security_filter_id}Get a security filter
SecurityMonitoringApiGetSecurityMonitoringRuleGet /api/v2/security_monitoring/rules/{rule_id}Get a rule's details
SecurityMonitoringApiListSecurityFiltersGet /api/v2/security_monitoring/configuration/security_filtersGet all security filters
SecurityMonitoringApiListSecurityMonitoringRulesGet /api/v2/security_monitoring/rulesList rules
SecurityMonitoringApiListSecurityMonitoringSignalsGet /api/v2/security_monitoring/signalsGet a quick list of security signals
SecurityMonitoringApiSearchSecurityMonitoringSignalsPost /api/v2/security_monitoring/signals/searchGet a list of security signals
SecurityMonitoringApiUpdateSecurityFilterPatch /api/v2/security_monitoring/configuration/security_filters/{security_filter_id}Update a security filter
SecurityMonitoringApiUpdateSecurityMonitoringRulePut /api/v2/security_monitoring/rules/{rule_id}Update an existing rule
UsersApiCreateUserPost /api/v2/usersCreate a user
UsersApiDisableUserDelete /api/v2/users/{user_id}Disable a user
UsersApiGetInvitationGet /api/v2/user_invitations/{user_invitation_uuid}Get a user invitation
UsersApiGetUserGet /api/v2/users/{user_id}Get user details
UsersApiListUserOrganizationsGet /api/v2/users/{user_id}/orgsGet a user organization
UsersApiListUserPermissionsGet /api/v2/users/{user_id}/permissionsGet a user permissions
UsersApiListUsersGet /api/v2/usersList all users
UsersApiSendInvitationsPost /api/v2/user_invitationsSend invitation emails
UsersApiUpdateUserPatch /api/v2/users/{user_id}Update a user

Documentation For Models

Documentation For Authorization

apiKeyAuth

  • Type: API key
  • API key parameter name: DD-API-KEY
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: DD-API-KEY and passed in as the auth context for each request.

appKeyAuth

  • Type: API key
  • API key parameter name: DD-APPLICATION-KEY
  • Location: HTTP header

Note, each API key must be added to a map of map[string]APIKey where the key is: DD-APPLICATION-KEY and passed in as the auth context for each request.

Documentation for Utility Methods

Due to the fact that model structure members are all pointers, this package contains a number of utility functions to easily obtain pointers to values of basic types. Each of these functions takes a value of the given basic type and returns a pointer to it:

  • PtrBool
  • PtrInt
  • PtrInt32
  • PtrInt64
  • PtrFloat
  • PtrFloat32
  • PtrFloat64
  • PtrString
  • PtrTime

Author

[email protected]

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
IncidentFieldAttributesMultipleValueAsIncidentFieldAttributes is a convenience function that returns IncidentFieldAttributesMultipleValue wrapped in IncidentFieldAttributes.
IncidentFieldAttributesSingleValueAsIncidentFieldAttributes is a convenience function that returns IncidentFieldAttributesSingleValue wrapped in IncidentFieldAttributes.
IncidentTimelineCellMarkdownCreateAttributesAsIncidentTimelineCellCreateAttributes is a convenience function that returns IncidentTimelineCellMarkdownCreateAttributes wrapped in IncidentTimelineCellCreateAttributes.
LogsAggregateBucketValueTimeseriesAsLogsAggregateBucketValue is a convenience function that returns LogsAggregateBucketValueTimeseries wrapped in LogsAggregateBucketValue.
LogsArchiveDestinationAzureAsLogsArchiveCreateRequestDestination is a convenience function that returns LogsArchiveDestinationAzure wrapped in LogsArchiveCreateRequestDestination.
LogsArchiveDestinationAzureAsLogsArchiveDestination is a convenience function that returns LogsArchiveDestinationAzure wrapped in LogsArchiveDestination.
LogsArchiveDestinationGCSAsLogsArchiveCreateRequestDestination is a convenience function that returns LogsArchiveDestinationGCS wrapped in LogsArchiveCreateRequestDestination.
LogsArchiveDestinationGCSAsLogsArchiveDestination is a convenience function that returns LogsArchiveDestinationGCS wrapped in LogsArchiveDestination.
LogsArchiveDestinationS3AsLogsArchiveCreateRequestDestination is a convenience function that returns LogsArchiveDestinationS3 wrapped in LogsArchiveCreateRequestDestination.
LogsArchiveDestinationS3AsLogsArchiveDestination is a convenience function that returns LogsArchiveDestinationS3 wrapped in LogsArchiveDestination.
MetricAsMetricsAndMetricTagConfigurations is a convenience function that returns Metric wrapped in MetricsAndMetricTagConfigurations.
MetricDistinctVolumeAsMetricVolumes is a convenience function that returns MetricDistinctVolume wrapped in MetricVolumes.
MetricIngestedIndexedVolumeAsMetricVolumes is a convenience function that returns MetricIngestedIndexedVolume wrapped in MetricVolumes.
MetricTagConfigurationAsMetricsAndMetricTagConfigurations is a convenience function that returns MetricTagConfiguration wrapped in MetricsAndMetricTagConfigurations.
NewAPIClient creates a new API client.
NewAPIErrorResponse instantiates a new APIErrorResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIErrorResponseWithDefaults instantiates a new APIErrorResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIKeyCreateAttributes instantiates a new APIKeyCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeyCreateAttributesWithDefaults instantiates a new APIKeyCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIKeyCreateData instantiates a new APIKeyCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeyCreateDataWithDefaults instantiates a new APIKeyCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIKeyCreateRequest instantiates a new APIKeyCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeyCreateRequestWithDefaults instantiates a new APIKeyCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIKeyRelationships instantiates a new APIKeyRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeyRelationshipsWithDefaults instantiates a new APIKeyRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIKeyResponse instantiates a new APIKeyResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeyResponseWithDefaults instantiates a new APIKeyResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIKeysResponse instantiates a new APIKeysResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeysResponseWithDefaults instantiates a new APIKeysResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIKeysSortFromValue returns a pointer to a valid APIKeysSort for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAPIKeysTypeFromValue returns a pointer to a valid APIKeysType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewAPIKeyUpdateAttributes instantiates a new APIKeyUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeyUpdateAttributesWithDefaults instantiates a new APIKeyUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIKeyUpdateData instantiates a new APIKeyUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeyUpdateDataWithDefaults instantiates a new APIKeyUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIKeyUpdateRequest instantiates a new APIKeyUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewAPIKeyUpdateRequestWithDefaults instantiates a new APIKeyUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewAPIResponse returns a new APIResonse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewApplicationKeyCreateAttributes instantiates a new ApplicationKeyCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationKeyCreateAttributesWithDefaults instantiates a new ApplicationKeyCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationKeyCreateData instantiates a new ApplicationKeyCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationKeyCreateDataWithDefaults instantiates a new ApplicationKeyCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationKeyCreateRequest instantiates a new ApplicationKeyCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationKeyCreateRequestWithDefaults instantiates a new ApplicationKeyCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationKeyRelationships instantiates a new ApplicationKeyRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationKeyRelationshipsWithDefaults instantiates a new ApplicationKeyRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationKeyResponse instantiates a new ApplicationKeyResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationKeyResponseWithDefaults instantiates a new ApplicationKeyResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationKeysSortFromValue returns a pointer to a valid ApplicationKeysSort for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewApplicationKeysTypeFromValue returns a pointer to a valid ApplicationKeysType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewApplicationKeyUpdateAttributes instantiates a new ApplicationKeyUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationKeyUpdateAttributesWithDefaults instantiates a new ApplicationKeyUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationKeyUpdateData instantiates a new ApplicationKeyUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationKeyUpdateDataWithDefaults instantiates a new ApplicationKeyUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewApplicationKeyUpdateRequest instantiates a new ApplicationKeyUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewApplicationKeyUpdateRequestWithDefaults instantiates a new ApplicationKeyUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewConfiguration returns a new Configuration object.
NewCreator instantiates a new Creator object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewCreatorWithDefaults instantiates a new Creator object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListAddItemsRequest instantiates a new DashboardListAddItemsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListAddItemsRequestWithDefaults instantiates a new DashboardListAddItemsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListAddItemsResponse instantiates a new DashboardListAddItemsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListAddItemsResponseWithDefaults instantiates a new DashboardListAddItemsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListDeleteItemsRequest instantiates a new DashboardListDeleteItemsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListDeleteItemsRequestWithDefaults instantiates a new DashboardListDeleteItemsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListDeleteItemsResponse instantiates a new DashboardListDeleteItemsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListDeleteItemsResponseWithDefaults instantiates a new DashboardListDeleteItemsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListItem instantiates a new DashboardListItem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListItemRequest instantiates a new DashboardListItemRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListItemRequestWithDefaults instantiates a new DashboardListItemRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListItemResponse instantiates a new DashboardListItemResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListItemResponseWithDefaults instantiates a new DashboardListItemResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListItems instantiates a new DashboardListItems object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListItemsWithDefaults instantiates a new DashboardListItems object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListItemWithDefaults instantiates a new DashboardListItem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListUpdateItemsRequest instantiates a new DashboardListUpdateItemsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListUpdateItemsRequestWithDefaults instantiates a new DashboardListUpdateItemsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardListUpdateItemsResponse instantiates a new DashboardListUpdateItemsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewDashboardListUpdateItemsResponseWithDefaults instantiates a new DashboardListUpdateItemsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewDashboardTypeFromValue returns a pointer to a valid DashboardType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewDefaultContext returns a new context setup with environment variables.
NewFullAPIKey instantiates a new FullAPIKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFullAPIKeyAttributes instantiates a new FullAPIKeyAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFullAPIKeyAttributesWithDefaults instantiates a new FullAPIKeyAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFullAPIKeyWithDefaults instantiates a new FullAPIKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFullApplicationKey instantiates a new FullApplicationKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFullApplicationKeyAttributes instantiates a new FullApplicationKeyAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewFullApplicationKeyAttributesWithDefaults instantiates a new FullApplicationKeyAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewFullApplicationKeyWithDefaults instantiates a new FullApplicationKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewIncidentCreateAttributes instantiates a new IncidentCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentCreateAttributesWithDefaults instantiates a new IncidentCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentCreateData instantiates a new IncidentCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentCreateDataWithDefaults instantiates a new IncidentCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentCreateRelationships instantiates a new IncidentCreateRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentCreateRelationshipsWithDefaults instantiates a new IncidentCreateRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentCreateRequest instantiates a new IncidentCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentCreateRequestWithDefaults instantiates a new IncidentCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentFieldAttributesMultipleValue instantiates a new IncidentFieldAttributesMultipleValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentFieldAttributesMultipleValueWithDefaults instantiates a new IncidentFieldAttributesMultipleValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentFieldAttributesSingleValue instantiates a new IncidentFieldAttributesSingleValue object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentFieldAttributesSingleValueTypeFromValue returns a pointer to a valid IncidentFieldAttributesSingleValueType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIncidentFieldAttributesSingleValueWithDefaults instantiates a new IncidentFieldAttributesSingleValue object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentFieldAttributesValueTypeFromValue returns a pointer to a valid IncidentFieldAttributesValueType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIncidentIntegrationMetadataTypeFromValue returns a pointer to a valid IncidentIntegrationMetadataType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIncidentPostmortemTypeFromValue returns a pointer to a valid IncidentPostmortemType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIncidentRelatedObjectFromValue returns a pointer to a valid IncidentRelatedObject for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIncidentResponse instantiates a new IncidentResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentResponseAttributes instantiates a new IncidentResponseAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentResponseAttributesWithDefaults instantiates a new IncidentResponseAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentResponseData instantiates a new IncidentResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentResponseDataWithDefaults instantiates a new IncidentResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentResponseRelationships instantiates a new IncidentResponseRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentResponseRelationshipsWithDefaults instantiates a new IncidentResponseRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentResponseWithDefaults instantiates a new IncidentResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceCreateAttributes instantiates a new IncidentServiceCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceCreateAttributesWithDefaults instantiates a new IncidentServiceCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceCreateData instantiates a new IncidentServiceCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceCreateDataWithDefaults instantiates a new IncidentServiceCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceCreateRequest instantiates a new IncidentServiceCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceCreateRequestWithDefaults instantiates a new IncidentServiceCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceRelationships instantiates a new IncidentServiceRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceRelationshipsWithDefaults instantiates a new IncidentServiceRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceResponse instantiates a new IncidentServiceResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceResponseAttributes instantiates a new IncidentServiceResponseAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceResponseAttributesWithDefaults instantiates a new IncidentServiceResponseAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceResponseData instantiates a new IncidentServiceResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceResponseDataWithDefaults instantiates a new IncidentServiceResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceResponseWithDefaults instantiates a new IncidentServiceResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServicesResponse instantiates a new IncidentServicesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServicesResponseMeta instantiates a new IncidentServicesResponseMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServicesResponseMetaPagination instantiates a new IncidentServicesResponseMetaPagination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServicesResponseMetaPaginationWithDefaults instantiates a new IncidentServicesResponseMetaPagination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServicesResponseMetaWithDefaults instantiates a new IncidentServicesResponseMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServicesResponseWithDefaults instantiates a new IncidentServicesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceTypeFromValue returns a pointer to a valid IncidentServiceType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIncidentServiceUpdateAttributes instantiates a new IncidentServiceUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceUpdateAttributesWithDefaults instantiates a new IncidentServiceUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceUpdateData instantiates a new IncidentServiceUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceUpdateDataWithDefaults instantiates a new IncidentServiceUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentServiceUpdateRequest instantiates a new IncidentServiceUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentServiceUpdateRequestWithDefaults instantiates a new IncidentServiceUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentsResponse instantiates a new IncidentsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentsResponseWithDefaults instantiates a new IncidentsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamCreateAttributes instantiates a new IncidentTeamCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamCreateAttributesWithDefaults instantiates a new IncidentTeamCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamCreateData instantiates a new IncidentTeamCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamCreateDataWithDefaults instantiates a new IncidentTeamCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamCreateRequest instantiates a new IncidentTeamCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamCreateRequestWithDefaults instantiates a new IncidentTeamCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamRelationships instantiates a new IncidentTeamRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamRelationshipsWithDefaults instantiates a new IncidentTeamRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamResponse instantiates a new IncidentTeamResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamResponseAttributes instantiates a new IncidentTeamResponseAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamResponseAttributesWithDefaults instantiates a new IncidentTeamResponseAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamResponseData instantiates a new IncidentTeamResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamResponseDataWithDefaults instantiates a new IncidentTeamResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamResponseWithDefaults instantiates a new IncidentTeamResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamsResponse instantiates a new IncidentTeamsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamsResponseWithDefaults instantiates a new IncidentTeamsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamTypeFromValue returns a pointer to a valid IncidentTeamType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIncidentTeamUpdateAttributes instantiates a new IncidentTeamUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamUpdateAttributesWithDefaults instantiates a new IncidentTeamUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamUpdateData instantiates a new IncidentTeamUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamUpdateDataWithDefaults instantiates a new IncidentTeamUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTeamUpdateRequest instantiates a new IncidentTeamUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTeamUpdateRequestWithDefaults instantiates a new IncidentTeamUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTimelineCellMarkdownContentTypeFromValue returns a pointer to a valid IncidentTimelineCellMarkdownContentType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIncidentTimelineCellMarkdownCreateAttributes instantiates a new IncidentTimelineCellMarkdownCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTimelineCellMarkdownCreateAttributesContent instantiates a new IncidentTimelineCellMarkdownCreateAttributesContent object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentTimelineCellMarkdownCreateAttributesContentWithDefaults instantiates a new IncidentTimelineCellMarkdownCreateAttributesContent object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTimelineCellMarkdownCreateAttributesWithDefaults instantiates a new IncidentTimelineCellMarkdownCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentTypeFromValue returns a pointer to a valid IncidentType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewIncidentUpdateAttributes instantiates a new IncidentUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentUpdateAttributesWithDefaults instantiates a new IncidentUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentUpdateData instantiates a new IncidentUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentUpdateDataWithDefaults instantiates a new IncidentUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentUpdateRelationships instantiates a new IncidentUpdateRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentUpdateRelationshipsWithDefaults instantiates a new IncidentUpdateRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewIncidentUpdateRequest instantiates a new IncidentUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewIncidentUpdateRequestWithDefaults instantiates a new IncidentUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
NewListApplicationKeysResponse instantiates a new ListApplicationKeysResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewListApplicationKeysResponseWithDefaults instantiates a new ListApplicationKeysResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewLog instantiates a new Log object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogAttributes instantiates a new LogAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogAttributesWithDefaults instantiates a new LogAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsAggregateBucket instantiates a new LogsAggregateBucket object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsAggregateBucketValueTimeseries instantiates a new LogsAggregateBucketValueTimeseries object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsAggregateBucketValueTimeseriesPoint instantiates a new LogsAggregateBucketValueTimeseriesPoint object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsAggregateBucketValueTimeseriesPointWithDefaults instantiates a new LogsAggregateBucketValueTimeseriesPoint object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsAggregateBucketValueTimeseriesWithDefaults instantiates a new LogsAggregateBucketValueTimeseries object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsAggregateBucketWithDefaults instantiates a new LogsAggregateBucket object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsAggregateRequest instantiates a new LogsAggregateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsAggregateRequestPage instantiates a new LogsAggregateRequestPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsAggregateRequestPageWithDefaults instantiates a new LogsAggregateRequestPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsAggregateRequestWithDefaults instantiates a new LogsAggregateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsAggregateResponse instantiates a new LogsAggregateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsAggregateResponseData instantiates a new LogsAggregateResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsAggregateResponseDataWithDefaults instantiates a new LogsAggregateResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsAggregateResponseStatusFromValue returns a pointer to a valid LogsAggregateResponseStatus for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsAggregateResponseWithDefaults instantiates a new LogsAggregateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsAggregateSort instantiates a new LogsAggregateSort object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsAggregateSortTypeFromValue returns a pointer to a valid LogsAggregateSortType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsAggregateSortWithDefaults instantiates a new LogsAggregateSort object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsAggregationFunctionFromValue returns a pointer to a valid LogsAggregationFunction for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsArchive instantiates a new LogsArchive object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveAttributes instantiates a new LogsArchiveAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveAttributesWithDefaults instantiates a new LogsArchiveAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveCreateRequest instantiates a new LogsArchiveCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveCreateRequestAttributes instantiates a new LogsArchiveCreateRequestAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveCreateRequestAttributesWithDefaults instantiates a new LogsArchiveCreateRequestAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveCreateRequestDefinition instantiates a new LogsArchiveCreateRequestDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveCreateRequestDefinitionWithDefaults instantiates a new LogsArchiveCreateRequestDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveCreateRequestWithDefaults instantiates a new LogsArchiveCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveDefinition instantiates a new LogsArchiveDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveDefinitionWithDefaults instantiates a new LogsArchiveDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveDestinationAzure instantiates a new LogsArchiveDestinationAzure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveDestinationAzureTypeFromValue returns a pointer to a valid LogsArchiveDestinationAzureType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsArchiveDestinationAzureWithDefaults instantiates a new LogsArchiveDestinationAzure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveDestinationGCS instantiates a new LogsArchiveDestinationGCS object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveDestinationGCSTypeFromValue returns a pointer to a valid LogsArchiveDestinationGCSType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsArchiveDestinationGCSWithDefaults instantiates a new LogsArchiveDestinationGCS object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveDestinationS3 instantiates a new LogsArchiveDestinationS3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveDestinationS3TypeFromValue returns a pointer to a valid LogsArchiveDestinationS3Type for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsArchiveDestinationS3WithDefaults instantiates a new LogsArchiveDestinationS3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveIntegrationAzure instantiates a new LogsArchiveIntegrationAzure object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveIntegrationAzureWithDefaults instantiates a new LogsArchiveIntegrationAzure object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveIntegrationGCS instantiates a new LogsArchiveIntegrationGCS object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveIntegrationGCSWithDefaults instantiates a new LogsArchiveIntegrationGCS object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveIntegrationS3 instantiates a new LogsArchiveIntegrationS3 object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveIntegrationS3WithDefaults instantiates a new LogsArchiveIntegrationS3 object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveOrder instantiates a new LogsArchiveOrder object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveOrderAttributes instantiates a new LogsArchiveOrderAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveOrderAttributesWithDefaults instantiates a new LogsArchiveOrderAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveOrderDefinition instantiates a new LogsArchiveOrderDefinition object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveOrderDefinitionTypeFromValue returns a pointer to a valid LogsArchiveOrderDefinitionType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsArchiveOrderDefinitionWithDefaults instantiates a new LogsArchiveOrderDefinition object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveOrderWithDefaults instantiates a new LogsArchiveOrder object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchives instantiates a new LogsArchives object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsArchiveStateFromValue returns a pointer to a valid LogsArchiveState for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsArchivesWithDefaults instantiates a new LogsArchives object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsArchiveWithDefaults instantiates a new LogsArchive object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsCompute instantiates a new LogsCompute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsComputeTypeFromValue returns a pointer to a valid LogsComputeType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsComputeWithDefaults instantiates a new LogsCompute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsGroupBy instantiates a new LogsGroupBy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsGroupByHistogram instantiates a new LogsGroupByHistogram object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsGroupByHistogramWithDefaults instantiates a new LogsGroupByHistogram object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsGroupByWithDefaults instantiates a new LogsGroupBy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsListRequest instantiates a new LogsListRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsListRequestPage instantiates a new LogsListRequestPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsListRequestPageWithDefaults instantiates a new LogsListRequestPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsListRequestWithDefaults instantiates a new LogsListRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsListResponse instantiates a new LogsListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsListResponseLinks instantiates a new LogsListResponseLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsListResponseLinksWithDefaults instantiates a new LogsListResponseLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsListResponseWithDefaults instantiates a new LogsListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricCompute instantiates a new LogsMetricCompute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricComputeAggregationTypeFromValue returns a pointer to a valid LogsMetricComputeAggregationType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsMetricComputeWithDefaults instantiates a new LogsMetricCompute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricCreateAttributes instantiates a new LogsMetricCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricCreateAttributesWithDefaults instantiates a new LogsMetricCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricCreateData instantiates a new LogsMetricCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricCreateDataWithDefaults instantiates a new LogsMetricCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricCreateRequest instantiates a new LogsMetricCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricCreateRequestWithDefaults instantiates a new LogsMetricCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricFilter instantiates a new LogsMetricFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricFilterWithDefaults instantiates a new LogsMetricFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricGroupBy instantiates a new LogsMetricGroupBy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricGroupByWithDefaults instantiates a new LogsMetricGroupBy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricResponse instantiates a new LogsMetricResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricResponseAttributes instantiates a new LogsMetricResponseAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricResponseAttributesWithDefaults instantiates a new LogsMetricResponseAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricResponseCompute instantiates a new LogsMetricResponseCompute object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricResponseComputeAggregationTypeFromValue returns a pointer to a valid LogsMetricResponseComputeAggregationType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsMetricResponseComputeWithDefaults instantiates a new LogsMetricResponseCompute object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricResponseData instantiates a new LogsMetricResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricResponseDataWithDefaults instantiates a new LogsMetricResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricResponseFilter instantiates a new LogsMetricResponseFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricResponseFilterWithDefaults instantiates a new LogsMetricResponseFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricResponseGroupBy instantiates a new LogsMetricResponseGroupBy object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricResponseGroupByWithDefaults instantiates a new LogsMetricResponseGroupBy object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricResponseWithDefaults instantiates a new LogsMetricResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricsResponse instantiates a new LogsMetricsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricsResponseWithDefaults instantiates a new LogsMetricsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricTypeFromValue returns a pointer to a valid LogsMetricType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsMetricUpdateAttributes instantiates a new LogsMetricUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricUpdateAttributesWithDefaults instantiates a new LogsMetricUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricUpdateData instantiates a new LogsMetricUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricUpdateDataWithDefaults instantiates a new LogsMetricUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsMetricUpdateRequest instantiates a new LogsMetricUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsMetricUpdateRequestWithDefaults instantiates a new LogsMetricUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsQueryFilter instantiates a new LogsQueryFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsQueryFilterWithDefaults instantiates a new LogsQueryFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsQueryOptions instantiates a new LogsQueryOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsQueryOptionsWithDefaults instantiates a new LogsQueryOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsResponseMetadata instantiates a new LogsResponseMetadata object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsResponseMetadataPage instantiates a new LogsResponseMetadataPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsResponseMetadataPageWithDefaults instantiates a new LogsResponseMetadataPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsResponseMetadataWithDefaults instantiates a new LogsResponseMetadata object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogsSortFromValue returns a pointer to a valid LogsSort for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsSortOrderFromValue returns a pointer to a valid LogsSortOrder for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogsWarning instantiates a new LogsWarning object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewLogsWarningWithDefaults instantiates a new LogsWarning object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewLogTypeFromValue returns a pointer to a valid LogType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewLogWithDefaults instantiates a new Log object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetric instantiates a new Metric object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricAllTags instantiates a new MetricAllTags object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricAllTagsAttributes instantiates a new MetricAllTagsAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricAllTagsAttributesWithDefaults instantiates a new MetricAllTagsAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricAllTagsResponse instantiates a new MetricAllTagsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricAllTagsResponseWithDefaults instantiates a new MetricAllTagsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricAllTagsWithDefaults instantiates a new MetricAllTags object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricDistinctVolume instantiates a new MetricDistinctVolume object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricDistinctVolumeAttributes instantiates a new MetricDistinctVolumeAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricDistinctVolumeAttributesWithDefaults instantiates a new MetricDistinctVolumeAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricDistinctVolumeTypeFromValue returns a pointer to a valid MetricDistinctVolumeType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMetricDistinctVolumeWithDefaults instantiates a new MetricDistinctVolume object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricIngestedIndexedVolume instantiates a new MetricIngestedIndexedVolume object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricIngestedIndexedVolumeAttributes instantiates a new MetricIngestedIndexedVolumeAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricIngestedIndexedVolumeAttributesWithDefaults instantiates a new MetricIngestedIndexedVolumeAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricIngestedIndexedVolumeTypeFromValue returns a pointer to a valid MetricIngestedIndexedVolumeType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMetricIngestedIndexedVolumeWithDefaults instantiates a new MetricIngestedIndexedVolume object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricsAndMetricTagConfigurationsResponse instantiates a new MetricsAndMetricTagConfigurationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricsAndMetricTagConfigurationsResponseWithDefaults instantiates a new MetricsAndMetricTagConfigurationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTagConfiguration instantiates a new MetricTagConfiguration object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTagConfigurationAttributes instantiates a new MetricTagConfigurationAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTagConfigurationAttributesWithDefaults instantiates a new MetricTagConfigurationAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTagConfigurationCreateAttributes instantiates a new MetricTagConfigurationCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTagConfigurationCreateAttributesWithDefaults instantiates a new MetricTagConfigurationCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTagConfigurationCreateData instantiates a new MetricTagConfigurationCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTagConfigurationCreateDataWithDefaults instantiates a new MetricTagConfigurationCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTagConfigurationCreateRequest instantiates a new MetricTagConfigurationCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTagConfigurationCreateRequestWithDefaults instantiates a new MetricTagConfigurationCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTagConfigurationMetricTypesFromValue returns a pointer to a valid MetricTagConfigurationMetricTypes for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMetricTagConfigurationResponse instantiates a new MetricTagConfigurationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTagConfigurationResponseWithDefaults instantiates a new MetricTagConfigurationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTagConfigurationTypeFromValue returns a pointer to a valid MetricTagConfigurationType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMetricTagConfigurationUpdateAttributes instantiates a new MetricTagConfigurationUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTagConfigurationUpdateAttributesWithDefaults instantiates a new MetricTagConfigurationUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTagConfigurationUpdateData instantiates a new MetricTagConfigurationUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTagConfigurationUpdateDataWithDefaults instantiates a new MetricTagConfigurationUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTagConfigurationUpdateRequest instantiates a new MetricTagConfigurationUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricTagConfigurationUpdateRequestWithDefaults instantiates a new MetricTagConfigurationUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTagConfigurationWithDefaults instantiates a new MetricTagConfiguration object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricTypeFromValue returns a pointer to a valid MetricType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewMetricVolumesResponse instantiates a new MetricVolumesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewMetricVolumesResponseWithDefaults instantiates a new MetricVolumesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewMetricWithDefaults instantiates a new Metric object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOrganization instantiates a new Organization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOrganizationAttributes instantiates a new OrganizationAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewOrganizationAttributesWithDefaults instantiates a new OrganizationAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewOrganizationsTypeFromValue returns a pointer to a valid OrganizationsType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewOrganizationWithDefaults instantiates a new Organization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPagination instantiates a new Pagination object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPaginationWithDefaults instantiates a new Pagination object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPartialAPIKey instantiates a new PartialAPIKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPartialAPIKeyAttributes instantiates a new PartialAPIKeyAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPartialAPIKeyAttributesWithDefaults instantiates a new PartialAPIKeyAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPartialAPIKeyWithDefaults instantiates a new PartialAPIKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPartialApplicationKey instantiates a new PartialApplicationKey object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPartialApplicationKeyAttributes instantiates a new PartialApplicationKeyAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPartialApplicationKeyAttributesWithDefaults instantiates a new PartialApplicationKeyAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPartialApplicationKeyWithDefaults instantiates a new PartialApplicationKey object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermission instantiates a new Permission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionAttributes instantiates a new PermissionAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionAttributesWithDefaults instantiates a new PermissionAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsResponse instantiates a new PermissionsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewPermissionsResponseWithDefaults instantiates a new PermissionsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewPermissionsTypeFromValue returns a pointer to a valid PermissionsType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewPermissionWithDefaults instantiates a new Permission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProcessSummariesMeta instantiates a new ProcessSummariesMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProcessSummariesMetaPage instantiates a new ProcessSummariesMetaPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProcessSummariesMetaPageWithDefaults instantiates a new ProcessSummariesMetaPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProcessSummariesMetaWithDefaults instantiates a new ProcessSummariesMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProcessSummariesResponse instantiates a new ProcessSummariesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProcessSummariesResponseWithDefaults instantiates a new ProcessSummariesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProcessSummary instantiates a new ProcessSummary object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProcessSummaryAttributes instantiates a new ProcessSummaryAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewProcessSummaryAttributesWithDefaults instantiates a new ProcessSummaryAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewProcessSummaryTypeFromValue returns a pointer to a valid ProcessSummaryType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewProcessSummaryWithDefaults instantiates a new ProcessSummary object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewQuerySortOrderFromValue returns a pointer to a valid QuerySortOrder for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewRelationshipToIncidentIntegrationMetadataData instantiates a new RelationshipToIncidentIntegrationMetadataData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToIncidentIntegrationMetadataDataWithDefaults instantiates a new RelationshipToIncidentIntegrationMetadataData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToIncidentIntegrationMetadatas instantiates a new RelationshipToIncidentIntegrationMetadatas object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToIncidentIntegrationMetadatasWithDefaults instantiates a new RelationshipToIncidentIntegrationMetadatas object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToIncidentPostmortem instantiates a new RelationshipToIncidentPostmortem object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToIncidentPostmortemData instantiates a new RelationshipToIncidentPostmortemData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToIncidentPostmortemDataWithDefaults instantiates a new RelationshipToIncidentPostmortemData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToIncidentPostmortemWithDefaults instantiates a new RelationshipToIncidentPostmortem object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToOrganization instantiates a new RelationshipToOrganization object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToOrganizationData instantiates a new RelationshipToOrganizationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToOrganizationDataWithDefaults instantiates a new RelationshipToOrganizationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToOrganizations instantiates a new RelationshipToOrganizations object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToOrganizationsWithDefaults instantiates a new RelationshipToOrganizations object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToOrganizationWithDefaults instantiates a new RelationshipToOrganization object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToPermission instantiates a new RelationshipToPermission object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToPermissionData instantiates a new RelationshipToPermissionData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToPermissionDataWithDefaults instantiates a new RelationshipToPermissionData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToPermissions instantiates a new RelationshipToPermissions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToPermissionsWithDefaults instantiates a new RelationshipToPermissions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToPermissionWithDefaults instantiates a new RelationshipToPermission object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToRole instantiates a new RelationshipToRole object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToRoleData instantiates a new RelationshipToRoleData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToRoleDataWithDefaults instantiates a new RelationshipToRoleData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToRoles instantiates a new RelationshipToRoles object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToRolesWithDefaults instantiates a new RelationshipToRoles object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToRoleWithDefaults instantiates a new RelationshipToRole object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToUser instantiates a new RelationshipToUser object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToUserData instantiates a new RelationshipToUserData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToUserDataWithDefaults instantiates a new RelationshipToUserData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToUsers instantiates a new RelationshipToUsers object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRelationshipToUsersWithDefaults instantiates a new RelationshipToUsers object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRelationshipToUserWithDefaults instantiates a new RelationshipToUser object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewResponseMetaAttributes instantiates a new ResponseMetaAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewResponseMetaAttributesWithDefaults instantiates a new ResponseMetaAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRole instantiates a new Role object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleAttributes instantiates a new RoleAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleAttributesWithDefaults instantiates a new RoleAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleCreateAttributes instantiates a new RoleCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleCreateAttributesWithDefaults instantiates a new RoleCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleCreateData instantiates a new RoleCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleCreateDataWithDefaults instantiates a new RoleCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleCreateRequest instantiates a new RoleCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleCreateRequestWithDefaults instantiates a new RoleCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleCreateResponse instantiates a new RoleCreateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleCreateResponseData instantiates a new RoleCreateResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleCreateResponseDataWithDefaults instantiates a new RoleCreateResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleCreateResponseWithDefaults instantiates a new RoleCreateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleRelationships instantiates a new RoleRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleRelationshipsWithDefaults instantiates a new RoleRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleResponse instantiates a new RoleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleResponseRelationships instantiates a new RoleResponseRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleResponseRelationshipsWithDefaults instantiates a new RoleResponseRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleResponseWithDefaults instantiates a new RoleResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRolesResponse instantiates a new RolesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRolesResponseWithDefaults instantiates a new RolesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRolesSortFromValue returns a pointer to a valid RolesSort for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewRolesTypeFromValue returns a pointer to a valid RolesType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewRoleUpdateAttributes instantiates a new RoleUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleUpdateAttributesWithDefaults instantiates a new RoleUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleUpdateData instantiates a new RoleUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleUpdateDataWithDefaults instantiates a new RoleUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleUpdateRequest instantiates a new RoleUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleUpdateRequestWithDefaults instantiates a new RoleUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleUpdateResponse instantiates a new RoleUpdateResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleUpdateResponseData instantiates a new RoleUpdateResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewRoleUpdateResponseDataWithDefaults instantiates a new RoleUpdateResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleUpdateResponseWithDefaults instantiates a new RoleUpdateResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewRoleWithDefaults instantiates a new Role object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
No description provided by the author
NewSecurityFilter instantiates a new SecurityFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterAttributes instantiates a new SecurityFilterAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterAttributesWithDefaults instantiates a new SecurityFilterAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterCreateAttributes instantiates a new SecurityFilterCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterCreateAttributesWithDefaults instantiates a new SecurityFilterCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterCreateData instantiates a new SecurityFilterCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterCreateDataWithDefaults instantiates a new SecurityFilterCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterCreateRequest instantiates a new SecurityFilterCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterCreateRequestWithDefaults instantiates a new SecurityFilterCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterDeleteResponse instantiates a new SecurityFilterDeleteResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterDeleteResponseWithDefaults instantiates a new SecurityFilterDeleteResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterExclusionFilter instantiates a new SecurityFilterExclusionFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterExclusionFilterResponse instantiates a new SecurityFilterExclusionFilterResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterExclusionFilterResponseWithDefaults instantiates a new SecurityFilterExclusionFilterResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterExclusionFilterWithDefaults instantiates a new SecurityFilterExclusionFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterFilteredDataTypeFromValue returns a pointer to a valid SecurityFilterFilteredDataType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityFilterMeta instantiates a new SecurityFilterMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterMetaWithDefaults instantiates a new SecurityFilterMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterResponse instantiates a new SecurityFilterResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterResponseWithDefaults instantiates a new SecurityFilterResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFiltersResponse instantiates a new SecurityFiltersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFiltersResponseWithDefaults instantiates a new SecurityFiltersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterTypeFromValue returns a pointer to a valid SecurityFilterType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityFilterUpdateAttributes instantiates a new SecurityFilterUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterUpdateAttributesWithDefaults instantiates a new SecurityFilterUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterUpdateData instantiates a new SecurityFilterUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterUpdateDataWithDefaults instantiates a new SecurityFilterUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterUpdateRequest instantiates a new SecurityFilterUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityFilterUpdateRequestWithDefaults instantiates a new SecurityFilterUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityFilterWithDefaults instantiates a new SecurityFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringFilter instantiates a new SecurityMonitoringFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringFilterActionFromValue returns a pointer to a valid SecurityMonitoringFilterAction for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringFilterWithDefaults instantiates a new SecurityMonitoringFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringListRulesResponse instantiates a new SecurityMonitoringListRulesResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringListRulesResponseWithDefaults instantiates a new SecurityMonitoringListRulesResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuleCase instantiates a new SecurityMonitoringRuleCase object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuleCaseCreate instantiates a new SecurityMonitoringRuleCaseCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuleCaseCreateWithDefaults instantiates a new SecurityMonitoringRuleCaseCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuleCaseWithDefaults instantiates a new SecurityMonitoringRuleCase object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuleCreatePayload instantiates a new SecurityMonitoringRuleCreatePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuleCreatePayloadWithDefaults instantiates a new SecurityMonitoringRuleCreatePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuleDetectionMethodFromValue returns a pointer to a valid SecurityMonitoringRuleDetectionMethod for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringRuleEvaluationWindowFromValue returns a pointer to a valid SecurityMonitoringRuleEvaluationWindow for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringRuleKeepAliveFromValue returns a pointer to a valid SecurityMonitoringRuleKeepAlive for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringRuleMaxSignalDurationFromValue returns a pointer to a valid SecurityMonitoringRuleMaxSignalDuration for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringRuleNewValueOptions instantiates a new SecurityMonitoringRuleNewValueOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuleNewValueOptionsForgetAfterFromValue returns a pointer to a valid SecurityMonitoringRuleNewValueOptionsForgetAfter for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringRuleNewValueOptionsLearningDurationFromValue returns a pointer to a valid SecurityMonitoringRuleNewValueOptionsLearningDuration for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringRuleNewValueOptionsWithDefaults instantiates a new SecurityMonitoringRuleNewValueOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuleOptions instantiates a new SecurityMonitoringRuleOptions object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuleOptionsWithDefaults instantiates a new SecurityMonitoringRuleOptions object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuleQuery instantiates a new SecurityMonitoringRuleQuery object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuleQueryAggregationFromValue returns a pointer to a valid SecurityMonitoringRuleQueryAggregation for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringRuleQueryCreate instantiates a new SecurityMonitoringRuleQueryCreate object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuleQueryCreateWithDefaults instantiates a new SecurityMonitoringRuleQueryCreate object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuleQueryWithDefaults instantiates a new SecurityMonitoringRuleQuery object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuleResponse instantiates a new SecurityMonitoringRuleResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuleResponseWithDefaults instantiates a new SecurityMonitoringRuleResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuleSeverityFromValue returns a pointer to a valid SecurityMonitoringRuleSeverity for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringRuleUpdatePayload instantiates a new SecurityMonitoringRuleUpdatePayload object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuleUpdatePayloadWithDefaults instantiates a new SecurityMonitoringRuleUpdatePayload object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringRuntimeAgentRule instantiates a new SecurityMonitoringRuntimeAgentRule object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringRuntimeAgentRuleWithDefaults instantiates a new SecurityMonitoringRuntimeAgentRule object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringSignal instantiates a new SecurityMonitoringSignal object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringSignalAttributes instantiates a new SecurityMonitoringSignalAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringSignalAttributesWithDefaults instantiates a new SecurityMonitoringSignalAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringSignalListRequest instantiates a new SecurityMonitoringSignalListRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringSignalListRequestFilter instantiates a new SecurityMonitoringSignalListRequestFilter object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringSignalListRequestFilterWithDefaults instantiates a new SecurityMonitoringSignalListRequestFilter object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringSignalListRequestPage instantiates a new SecurityMonitoringSignalListRequestPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringSignalListRequestPageWithDefaults instantiates a new SecurityMonitoringSignalListRequestPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringSignalListRequestWithDefaults instantiates a new SecurityMonitoringSignalListRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringSignalsListResponse instantiates a new SecurityMonitoringSignalsListResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringSignalsListResponseLinks instantiates a new SecurityMonitoringSignalsListResponseLinks object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringSignalsListResponseLinksWithDefaults instantiates a new SecurityMonitoringSignalsListResponseLinks object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringSignalsListResponseMeta instantiates a new SecurityMonitoringSignalsListResponseMeta object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringSignalsListResponseMetaPage instantiates a new SecurityMonitoringSignalsListResponseMetaPage object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewSecurityMonitoringSignalsListResponseMetaPageWithDefaults instantiates a new SecurityMonitoringSignalsListResponseMetaPage object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringSignalsListResponseMetaWithDefaults instantiates a new SecurityMonitoringSignalsListResponseMeta object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringSignalsListResponseWithDefaults instantiates a new SecurityMonitoringSignalsListResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewSecurityMonitoringSignalsSortFromValue returns a pointer to a valid SecurityMonitoringSignalsSort for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringSignalTypeFromValue returns a pointer to a valid SecurityMonitoringSignalType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewSecurityMonitoringSignalWithDefaults instantiates a new SecurityMonitoringSignal object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUser instantiates a new User object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserAttributes instantiates a new UserAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserAttributesWithDefaults instantiates a new UserAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserCreateAttributes instantiates a new UserCreateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserCreateAttributesWithDefaults instantiates a new UserCreateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserCreateData instantiates a new UserCreateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserCreateDataWithDefaults instantiates a new UserCreateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserCreateRequest instantiates a new UserCreateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserCreateRequestWithDefaults instantiates a new UserCreateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitationData instantiates a new UserInvitationData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitationDataAttributes instantiates a new UserInvitationDataAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitationDataAttributesWithDefaults instantiates a new UserInvitationDataAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitationDataWithDefaults instantiates a new UserInvitationData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitationRelationships instantiates a new UserInvitationRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitationRelationshipsWithDefaults instantiates a new UserInvitationRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitationResponse instantiates a new UserInvitationResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitationResponseData instantiates a new UserInvitationResponseData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitationResponseDataWithDefaults instantiates a new UserInvitationResponseData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitationResponseWithDefaults instantiates a new UserInvitationResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitationsRequest instantiates a new UserInvitationsRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitationsRequestWithDefaults instantiates a new UserInvitationsRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitationsResponse instantiates a new UserInvitationsResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserInvitationsResponseWithDefaults instantiates a new UserInvitationsResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserInvitationsTypeFromValue returns a pointer to a valid UserInvitationsType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewUserRelationships instantiates a new UserRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserRelationshipsWithDefaults instantiates a new UserRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserResponse instantiates a new UserResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserResponseRelationships instantiates a new UserResponseRelationships object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserResponseRelationshipsWithDefaults instantiates a new UserResponseRelationships object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserResponseWithDefaults instantiates a new UserResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersResponse instantiates a new UsersResponse object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUsersResponseWithDefaults instantiates a new UsersResponse object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUsersTypeFromValue returns a pointer to a valid UsersType for the value passed as argument, or an error if the value passed is not allowed by the enum.
NewUserUpdateAttributes instantiates a new UserUpdateAttributes object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserUpdateAttributesWithDefaults instantiates a new UserUpdateAttributes object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserUpdateData instantiates a new UserUpdateData object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserUpdateDataWithDefaults instantiates a new UserUpdateData object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserUpdateRequest instantiates a new UserUpdateRequest object This constructor will assign default values to properties that have it defined, and makes sure properties required by API are set, but the set of arguments will change when the set of required properties is changed.
NewUserUpdateRequestWithDefaults instantiates a new UserUpdateRequest object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
NewUserWithDefaults instantiates a new User object This constructor will only assign default values to properties that have it defined, but it doesn't guarantee that properties required by API are set.
OrganizationAsUserResponseIncludedItem is a convenience function that returns Organization wrapped in UserResponseIncludedItem.
PermissionAsUserResponseIncludedItem is a convenience function that returns Permission wrapped in UserResponseIncludedItem.
PtrBool is a helper routine that returns a pointer to given boolean value.
PtrFloat32 is a helper routine that returns a pointer to given float value.
PtrFloat64 is a helper routine that returns a pointer to given float value.
PtrInt is a helper routine that returns a pointer to given integer value.
PtrInt32 is a helper routine that returns a pointer to given integer value.
PtrInt64 is a helper routine that returns a pointer to given integer value.
PtrString is a helper routine that returns a pointer to given string value.
PtrTime is helper routine that returns a pointer to given Time value.
RoleAsApplicationKeyResponseIncludedItem is a convenience function that returns Role wrapped in ApplicationKeyResponseIncludedItem.
RoleAsUserResponseIncludedItem is a convenience function that returns Role wrapped in UserResponseIncludedItem.
UserAsAPIKeyResponseIncludedItem is a convenience function that returns User wrapped in APIKeyResponseIncludedItem.
UserAsApplicationKeyResponseIncludedItem is a convenience function that returns User wrapped in ApplicationKeyResponseIncludedItem.
UserAsIncidentResponseIncludedItem is a convenience function that returns User wrapped in IncidentResponseIncludedItem.
UserAsIncidentServiceIncludedItems is a convenience function that returns User wrapped in IncidentServiceIncludedItems.
UserAsIncidentTeamIncludedItems is a convenience function that returns User wrapped in IncidentTeamIncludedItems.

# Constants

List of APIKeysSort.
List of APIKeysSort.
List of APIKeysSort.
List of APIKeysSort.
List of APIKeysSort.
List of APIKeysSort.
List of APIKeysSort.
List of APIKeysSort.
List of APIKeysType.
List of ApplicationKeysSort.
List of ApplicationKeysSort.
List of ApplicationKeysSort.
List of ApplicationKeysSort.
List of ApplicationKeysSort.
List of ApplicationKeysSort.
List of ApplicationKeysType.
List of DashboardType.
List of DashboardType.
List of DashboardType.
List of DashboardType.
List of DashboardType.
List of IncidentFieldAttributesSingleValueType.
List of IncidentFieldAttributesSingleValueType.
List of IncidentFieldAttributesValueType.
List of IncidentFieldAttributesValueType.
List of IncidentFieldAttributesValueType.
List of IncidentFieldAttributesValueType.
List of IncidentIntegrationMetadataType.
List of IncidentPostmortemType.
List of IncidentRelatedObject.
List of IncidentServiceType.
List of IncidentTeamType.
List of IncidentTimelineCellMarkdownContentType.
List of IncidentType.
List of LogsAggregateResponseStatus.
List of LogsAggregateResponseStatus.
List of LogsAggregateSortType.
List of LogsAggregateSortType.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsAggregationFunction.
List of LogsArchiveDestinationAzureType.
List of LogsArchiveDestinationGCSType.
List of LogsArchiveDestinationS3Type.
List of LogsArchiveOrderDefinitionType.
List of LogsArchiveState.
List of LogsArchiveState.
List of LogsArchiveState.
List of LogsArchiveState.
List of LogsComputeType.
List of LogsComputeType.
List of LogsMetricComputeAggregationType.
List of LogsMetricComputeAggregationType.
List of LogsMetricResponseComputeAggregationType.
List of LogsMetricResponseComputeAggregationType.
List of LogsMetricType.
List of LogsSort.
List of LogsSort.
List of LogsSortOrder.
List of LogsSortOrder.
List of LogType.
List of MetricDistinctVolumeType.
List of MetricIngestedIndexedVolumeType.
List of MetricTagConfigurationMetricTypes.
List of MetricTagConfigurationMetricTypes.
List of MetricTagConfigurationMetricTypes.
List of MetricTagConfigurationMetricTypes.
List of MetricTagConfigurationType.
List of MetricType.
List of OrganizationsType.
List of PermissionsType.
List of ProcessSummaryType.
List of QuerySortOrder.
List of QuerySortOrder.
List of RolesSort.
List of RolesSort.
List of RolesSort.
List of RolesSort.
List of RolesSort.
List of RolesSort.
List of RolesType.
List of SecurityFilterFilteredDataType.
List of SecurityFilterType.
List of SecurityMonitoringFilterAction.
List of SecurityMonitoringFilterAction.
List of SecurityMonitoringRuleDetectionMethod.
List of SecurityMonitoringRuleDetectionMethod.
List of SecurityMonitoringRuleDetectionMethod.
List of SecurityMonitoringRuleEvaluationWindow.
List of SecurityMonitoringRuleEvaluationWindow.
List of SecurityMonitoringRuleEvaluationWindow.
List of SecurityMonitoringRuleEvaluationWindow.
List of SecurityMonitoringRuleEvaluationWindow.
List of SecurityMonitoringRuleEvaluationWindow.
List of SecurityMonitoringRuleEvaluationWindow.
List of SecurityMonitoringRuleEvaluationWindow.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleKeepAlive.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleMaxSignalDuration.
List of SecurityMonitoringRuleNewValueOptionsForgetAfter.
List of SecurityMonitoringRuleNewValueOptionsForgetAfter.
List of SecurityMonitoringRuleNewValueOptionsForgetAfter.
List of SecurityMonitoringRuleNewValueOptionsForgetAfter.
List of SecurityMonitoringRuleNewValueOptionsForgetAfter.
List of SecurityMonitoringRuleNewValueOptionsForgetAfter.
List of SecurityMonitoringRuleNewValueOptionsLearningDuration.
List of SecurityMonitoringRuleNewValueOptionsLearningDuration.
List of SecurityMonitoringRuleNewValueOptionsLearningDuration.
List of SecurityMonitoringRuleQueryAggregation.
List of SecurityMonitoringRuleQueryAggregation.
List of SecurityMonitoringRuleQueryAggregation.
List of SecurityMonitoringRuleQueryAggregation.
List of SecurityMonitoringRuleQueryAggregation.
List of SecurityMonitoringRuleSeverity.
List of SecurityMonitoringRuleSeverity.
List of SecurityMonitoringRuleSeverity.
List of SecurityMonitoringRuleSeverity.
List of SecurityMonitoringRuleSeverity.
List of SecurityMonitoringSignalsSort.
List of SecurityMonitoringSignalsSort.
List of SecurityMonitoringSignalType.
List of UserInvitationsType.
List of UsersType.

# Variables

ContextAccessToken takes a string oauth2 access token as authentication for the request.
ContextAPIKeys takes a string apikey as authentication for the request.
ContextBasicAuth takes BasicAuth as authentication for the request.
ContextHttpSignatureAuth takes HttpSignatureAuth as authentication for the request.
ContextOAuth2 takes an oauth2.TokenSource as authentication for the request.
ContextOperationServerIndices uses a server configuration from the index mapping.
ContextOperationServerVariables overrides a server configuration variables using operation specific values.
ContextServerIndex uses a server configuration from the index.
ContextServerVariables overrides a server configuration variables.

# Structs

APIClient manages communication with the Datadog API V2 Collection API v1.0 In most cases there should be only one, shared, APIClient.
APIErrorResponse API error response.
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
APIKeyCreateAttributes Attributes used to create an API Key.
APIKeyCreateData Object used to create an API key.
APIKeyCreateRequest Request used to create an API key.
APIKeyRelationships Resources related to the API key.
APIKeyResponse Response for retrieving an API key.
APIKeyResponseIncludedItem - An object related to an API key.
APIKeysResponse Response for a list of API keys.
APIKeyUpdateAttributes Attributes used to update an API Key.
APIKeyUpdateData Object used to update an API key.
APIKeyUpdateRequest Request used to update an API key.
APIResponse stores the API response returned by the server.
ApplicationKeyCreateAttributes Attributes used to create an application Key.
ApplicationKeyCreateData Object used to create an application key.
ApplicationKeyCreateRequest Request used to create an application key.
ApplicationKeyRelationships Resources related to the application key.
ApplicationKeyResponse Response for retrieving an application key.
ApplicationKeyResponseIncludedItem - An object related to an application key.
ApplicationKeyUpdateAttributes Attributes used to update an application Key.
ApplicationKeyUpdateData Object used to update an application key.
ApplicationKeyUpdateRequest Request used to update an application key.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
Configuration stores the configuration of the API client.
Creator Creator of the object.
DashboardListAddItemsRequest Request containing a list of dashboards to add.
DashboardListAddItemsResponse Response containing a list of added dashboards.
DashboardListDeleteItemsRequest Request containing a list of dashboards to delete.
DashboardListDeleteItemsResponse Response containing a list of deleted dashboards.
DashboardListItem A dashboard within a list.
DashboardListItemRequest A dashboard within a list.
DashboardListItemResponse A dashboard within a list.
DashboardListItems Dashboards within a list.
DashboardListUpdateItemsRequest Request containing the list of dashboards to update to.
DashboardListUpdateItemsResponse Response containing a list of updated dashboards.
FullAPIKey Datadog API key.
FullAPIKeyAttributes Attributes of a full API key.
FullApplicationKey Datadog application key.
FullApplicationKeyAttributes Attributes of a full application key.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
IncidentCreateAttributes The incident's attributes for a create request.
IncidentCreateData Incident data for a create request.
IncidentCreateRelationships The relationships the incident will have with other resources once created.
IncidentCreateRequest Create request for an incident.
IncidentFieldAttributes - Dynamic fields for which selections can be made, with field names as keys.
IncidentFieldAttributesMultipleValue A field with potentially multiple values selected.
IncidentFieldAttributesSingleValue A field with a single value selected.
IncidentResponse Response with an incident.
IncidentResponseAttributes The incident's attributes from a response.
IncidentResponseData Incident data from a response.
IncidentResponseIncludedItem - An object related to an incident that is included in the response.
IncidentResponseRelationships The incident's relationships from a response.
IncidentServiceCreateAttributes The incident service's attributes for a create request.
IncidentServiceCreateData Incident Service payload for create requests.
IncidentServiceCreateRequest Create request with an incident service payload.
IncidentServiceIncludedItems - An object related to an incident service which is present in the included payload.
IncidentServiceRelationships The incident service's relationships.
IncidentServiceResponse Response with an incident service payload.
IncidentServiceResponseAttributes The incident service's attributes from a response.
IncidentServiceResponseData Incident Service data from responses.
IncidentServicesResponse Response with a list of incident service payloads.
IncidentServicesResponseMeta The metadata object containing pagination metadata.
IncidentServicesResponseMetaPagination Pagination properties.
IncidentServiceUpdateAttributes The incident service's attributes for an update request.
IncidentServiceUpdateData Incident Service payload for update requests.
IncidentServiceUpdateRequest Update request with an incident service payload.
IncidentsResponse Response with a list of incidents.
IncidentTeamCreateAttributes The incident team's attributes for a create request.
IncidentTeamCreateData Incident Team data for a create request.
IncidentTeamCreateRequest Create request with an incident team payload.
IncidentTeamIncludedItems - An object related to an incident team which is present in the included payload.
IncidentTeamRelationships The incident team's relationships.
IncidentTeamResponse Response with an incident team payload.
IncidentTeamResponseAttributes The incident team's attributes from a response.
IncidentTeamResponseData Incident Team data from a response.
IncidentTeamsResponse Response with a list of incident team payloads.
IncidentTeamUpdateAttributes The incident team's attributes for an update request.
IncidentTeamUpdateData Incident Team data for an update request.
IncidentTeamUpdateRequest Update request with an incident team payload.
IncidentTimelineCellCreateAttributes - The timeline cell's attributes for a create request.
IncidentTimelineCellMarkdownCreateAttributes Timeline cell data for Markdown timeline cells for a create request.
IncidentTimelineCellMarkdownCreateAttributesContent The Markdown timeline cell contents.
IncidentUpdateAttributes The incident's attributes for an update request.
IncidentUpdateData Incident data for an update request.
IncidentUpdateRelationships The incident's relationships for an update request.
IncidentUpdateRequest Update request for an incident.
No description provided by the author
No description provided by the author
ListApplicationKeysResponse Response for a list of application keys.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Log Object description of a log after being processed and stored by Datadog.
LogAttributes JSON object containing all log attributes and their associated values.
LogsAggregateBucket A bucket values.
LogsAggregateBucketValue - A bucket value, can be either a timeseries or a single value.
LogsAggregateBucketValueTimeseries A timeseries array.
LogsAggregateBucketValueTimeseriesPoint A timeseries point.
LogsAggregateRequest The object sent with the request to retrieve a list of logs from your organization.
LogsAggregateRequestPage Paging settings.
LogsAggregateResponse The response object for the logs aggregate API endpoint.
LogsAggregateResponseData The query results.
LogsAggregateSort A sort rule.
LogsArchive The logs archive.
LogsArchiveAttributes The attributes associated with the archive.
LogsArchiveCreateRequest The logs archive.
LogsArchiveCreateRequestAttributes The attributes associated with the archive.
LogsArchiveCreateRequestDefinition The definition of an archive.
LogsArchiveCreateRequestDestination - An archive's destination.
LogsArchiveDefinition The definition of an archive.
LogsArchiveDestination - An archive's destination.
LogsArchiveDestinationAzure The Azure archive destination.
LogsArchiveDestinationGCS The GCS archive destination.
LogsArchiveDestinationS3 The S3 archive destination.
LogsArchiveIntegrationAzure The Azure archive's integration destination.
LogsArchiveIntegrationGCS The GCS archive's integration destination.
LogsArchiveIntegrationS3 The S3 Archive's integration destination.
LogsArchiveOrder A ordered list of archive IDs.
LogsArchiveOrderAttributes The attributes associated with the archive order.
LogsArchiveOrderDefinition The definition of an archive order.
LogsArchives The available archives.
LogsCompute A compute rule to compute metrics or timeseries.
LogsGroupBy A group by rule.
LogsGroupByHistogram Used to perform a histogram computation (only for measure facets).
LogsGroupByMissing - The value to use for logs that don't have the facet used to group by.
LogsGroupByTotal - A resulting object to put the given computes in over all the matching records.
LogsListRequest The request for a logs list.
LogsListRequestPage Paging attributes for listing logs.
LogsListResponse Response object with all logs matching the request and pagination information.
LogsListResponseLinks Links attributes.
LogsMetricCompute The compute rule to compute the log-based metric.
LogsMetricCreateAttributes The object describing the Datadog log-based metric to create.
LogsMetricCreateData The new log-based metric properties.
LogsMetricCreateRequest The new log-based metric body.
LogsMetricFilter The log-based metric filter.
LogsMetricGroupBy A group by rule.
LogsMetricResponse The log-based metric object.
LogsMetricResponseAttributes The object describing a Datadog log-based metric.
LogsMetricResponseCompute The compute rule to compute the log-based metric.
LogsMetricResponseData The log-based metric properties.
LogsMetricResponseFilter The log-based metric filter.
LogsMetricResponseGroupBy A group by rule.
LogsMetricsResponse All the available log-based metric objects.
LogsMetricUpdateAttributes The log-based metric properties that will be updated.
LogsMetricUpdateData The new log-based metric properties.
LogsMetricUpdateRequest The new log-based metric body.
LogsQueryFilter The search and filter query settings.
LogsQueryOptions Global query options that are used during the query.
LogsResponseMetadata The metadata associated with a request.
LogsResponseMetadataPage Paging attributes.
LogsWarning A warning message indicating something that went wrong with the query.
Metric Object for a single metric tag configuration.
MetricAllTags Object for a single metric's indexed tags.
MetricAllTagsAttributes Object containing the definition of a metric's tags.
MetricAllTagsResponse Response object that includes a single metric's indexed tags.
MetricDistinctVolume Object for a single metric's distinct volume.
MetricDistinctVolumeAttributes Object containing the definition of a metric's distinct volume.
MetricIngestedIndexedVolume Object for a single metric's ingested and indexed volume.
MetricIngestedIndexedVolumeAttributes Object containing the definition of a metric's ingested and indexed volume.
MetricsAndMetricTagConfigurations - Object for a metrics and metric tag configurations.
MetricsAndMetricTagConfigurationsResponse Response object that includes metrics and metric tag configurations.
MetricTagConfiguration Object for a single metric tag configuration.
MetricTagConfigurationAttributes Object containing the definition of a metric tag configuration attributes.
MetricTagConfigurationCreateAttributes Object containing the definition of a metric tag configuration to be created.
MetricTagConfigurationCreateData Object for a single metric to be configure tags on.
MetricTagConfigurationCreateRequest Request object that includes the metric that you would like to configure tags for.
MetricTagConfigurationResponse Response object which includes a single metric's tag configuration.
MetricTagConfigurationUpdateAttributes Object containing the definition of a metric tag configuration to be updated.
MetricTagConfigurationUpdateData Object for a single tag configuration to be edited.
MetricTagConfigurationUpdateRequest Request object that includes the metric that you would like to edit the tag configuration on.
MetricVolumes - Possible response objects for a metric's volume.
MetricVolumesResponse Response object which includes a single metric's volume.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
Organization Organization object.
OrganizationAttributes Attributes of the organization.
Pagination Pagination object.
PartialAPIKey Partial Datadog API key.
PartialAPIKeyAttributes Attributes of a partial API key.
PartialApplicationKey Partial Datadog application key.
PartialApplicationKeyAttributes Attributes of a partial application key.
Permission Permission object.
PermissionAttributes Attributes of a permission.
PermissionsResponse Payload with API-returned permissions.
ProcessSummariesMeta Response metadata object.
ProcessSummariesMetaPage Paging attributes.
ProcessSummariesResponse List of process summaries.
ProcessSummary Process summary object.
ProcessSummaryAttributes Attributes for a process summary.
RelationshipToIncidentIntegrationMetadataData A relationship reference for an integration metadata object.
RelationshipToIncidentIntegrationMetadatas A relationship reference for multiple integration metadata objects.
RelationshipToIncidentPostmortem A relationship reference for postmortems.
RelationshipToIncidentPostmortemData The postmortem relationship data.
RelationshipToOrganization Relationship to an organization.
RelationshipToOrganizationData Relationship to organization object.
RelationshipToOrganizations Relationship to organizations.
RelationshipToPermission Relationship to a permissions object.
RelationshipToPermissionData Relationship to permission object.
RelationshipToPermissions Relationship to multiple permissions objects.
RelationshipToRole Relationship to role.
RelationshipToRoleData Relationship to role object.
RelationshipToRoles Relationship to roles.
RelationshipToUser Relationship to user.
RelationshipToUserData Relationship to user object.
RelationshipToUsers Relationship to users.
ResponseMetaAttributes Object describing meta attributes of response.
Role Role object returned by the API.
RoleAttributes Attributes of the role.
RoleCreateAttributes Attributes of the created role.
RoleCreateData Data related to the creation of a role.
RoleCreateRequest Create a role.
RoleCreateResponse Response containing information about a created role.
RoleCreateResponseData Role object returned by the API.
RoleRelationships Relationships of the role object.
RoleResponse Response containing information about a single role.
RoleResponseRelationships Relationships of the role object returned by the API.
RolesResponse Response containing information about multiple roles.
RoleUpdateAttributes Attributes of the role.
RoleUpdateData Data related to the update of a role.
RoleUpdateRequest Update a role.
RoleUpdateResponse Response containing information about an updated role.
RoleUpdateResponseData Role object returned by the API.
No description provided by the author
SecurityFilter The security filter's properties.
SecurityFilterAttributes The object describing a security filter.
SecurityFilterCreateAttributes Object containing the attributes of the security filter to be created.
SecurityFilterCreateData Object for a single security filter.
SecurityFilterCreateRequest Request object that includes the security filter that you would like to create.
SecurityFilterDeleteResponse Response object which only includes the metadata.
SecurityFilterExclusionFilter Exclusion filter for the security filter.
SecurityFilterExclusionFilterResponse A single exclusion filter.
SecurityFilterMeta Optional metadata associated to the response.
SecurityFilterResponse Response object which includes a single security filter.
SecurityFiltersResponse All the available security filters objects.
SecurityFilterUpdateAttributes The security filters properties to be updated.
SecurityFilterUpdateData The new security filter properties.
SecurityFilterUpdateRequest The new security filter body.
SecurityMonitoringFilter The rule's suppression filter.
SecurityMonitoringListRulesResponse List of rules.
SecurityMonitoringRuleCase Case when signal is generated.
SecurityMonitoringRuleCaseCreate Case when signal is generated.
SecurityMonitoringRuleCreatePayload Create a new rule.
SecurityMonitoringRuleNewValueOptions Options on new value rules.
SecurityMonitoringRuleOptions Options on rules.
SecurityMonitoringRuleQuery Query for matching rule.
SecurityMonitoringRuleQueryCreate Query for matching rule.
SecurityMonitoringRuleResponse Detection rule.
SecurityMonitoringRuleUpdatePayload Update an existing rule.
SecurityMonitoringRuntimeAgentRule The Agent rule.
SecurityMonitoringSignal Object description of a security signal.
SecurityMonitoringSignalAttributes The object containing all signal attributes and their associated values.
SecurityMonitoringSignalListRequest The request for a security signal list.
SecurityMonitoringSignalListRequestFilter Search filters for listing security signals.
SecurityMonitoringSignalListRequestPage The paging attributes for listing security signals.
SecurityMonitoringSignalsListResponse The response object with all security signals matching the request and pagination information.
SecurityMonitoringSignalsListResponseLinks Links attributes.
SecurityMonitoringSignalsListResponseMeta Meta attributes.
SecurityMonitoringSignalsListResponseMetaPage Paging attributes.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
User User object returned by the API.
UserAttributes Attributes of user object returned by the API.
UserCreateAttributes Attributes of the created user.
UserCreateData Object to create a user.
UserCreateRequest Create a user.
UserInvitationData Object to create a user invitation.
UserInvitationDataAttributes Attributes of a user invitation.
UserInvitationRelationships Relationships data for user invitation.
UserInvitationResponse User invitation as returned by the API.
UserInvitationResponseData Object of a user invitation returned by the API.
UserInvitationsRequest Object to invite users to join the organization.
UserInvitationsResponse User invitations as returned by the API.
UserRelationships Relationships of the user object.
UserResponse Response containing information about a single user.
UserResponseIncludedItem - An object related to a user.
UserResponseRelationships Relationships of the user object returned by the API.
UsersResponse Response containing information about multiple users.
UserUpdateAttributes Attributes of the edited user.
UserUpdateData Object to update a user.
UserUpdateRequest Update a user.

# Type aliases

APIKeysSort Sorting options.
APIKeysType API Keys resource type.
ApplicationKeysSort Sorting options.
ApplicationKeysType Application Keys resource type.
DashboardListsApiService DashboardListsApi service.
DashboardType The type of the dashboard.
IncidentFieldAttributesSingleValueType Type of the single value field definitions.
IncidentFieldAttributesValueType Type of the single value field definitions.
IncidentIntegrationMetadataType Integration metadata resource type.
IncidentPostmortemType Incident postmortem resource type.
IncidentRelatedObject Object related to an incident.
IncidentsApiService IncidentsApi service.
IncidentServicesApiService IncidentServicesApi service.
IncidentServiceType Incident service resource type.
IncidentTeamsApiService IncidentTeamsApi service.
IncidentTeamType Incident Team resource type.
IncidentTimelineCellMarkdownContentType Type of the Markdown timeline cell.
IncidentType Incident resource type.
KeyManagementApiService KeyManagementApi service.
LogsAggregateResponseStatus The status of the response.
LogsAggregateSortType The type of sorting algorithm.
LogsAggregationFunction An aggregation function.
LogsApiService LogsApi service.
LogsArchiveDestinationAzureType Type of the Azure archive destination.
LogsArchiveDestinationGCSType Type of the GCS archive destination.
LogsArchiveDestinationS3Type Type of the S3 archive destination.
LogsArchiveOrderDefinitionType Type of the archive order definition.
LogsArchivesApiService LogsArchivesApi service.
LogsArchiveState The state of the archive.
LogsComputeType The type of compute.
LogsMetricComputeAggregationType The type of aggregation to use.
LogsMetricResponseComputeAggregationType The type of aggregation to use.
LogsMetricsApiService LogsMetricsApi service.
LogsMetricType The type of the resource.
LogsSort Sort parameters when querying logs.
LogsSortOrder The order to use, ascending or descending.
LogType Type of the event.
MetricDistinctVolumeType The metric distinct volume type.
MetricIngestedIndexedVolumeType The metric ingested and indexed volume type.
MetricsApiService MetricsApi service.
MetricTagConfigurationMetricTypes The metric's type.
MetricTagConfigurationType The metric tag configuration resource type.
MetricType The metric resource type.
OrganizationsType Organizations resource type.
PermissionsType Permissions resource type.
ProcessesApiService ProcessesApi service.
ProcessSummaryType Type of process summary.
QuerySortOrder Direction of sort.
RolesApiService RolesApi service.
RolesSort Sorting options for roles.
RolesType Roles type.
SecurityFilterFilteredDataType The filtered data type.
SecurityFilterType The type of the resource.
SecurityMonitoringApiService SecurityMonitoringApi service.
SecurityMonitoringFilterAction The type of filtering action.
SecurityMonitoringRuleDetectionMethod The detection method.
SecurityMonitoringRuleEvaluationWindow A time window is specified to match when at least one of the cases matches true.
SecurityMonitoringRuleKeepAlive Once a signal is generated, the signal will remain “open” if a case is matched at least once within this keep alive window.
SecurityMonitoringRuleMaxSignalDuration A signal will “close” regardless of the query being matched once the time exceeds the maximum duration.
SecurityMonitoringRuleNewValueOptionsForgetAfter The duration in days after which a learned value is forgotten.
SecurityMonitoringRuleNewValueOptionsLearningDuration The duration in days during which values are learned, and after which signals will be generated for values that weren't learned.
SecurityMonitoringRuleQueryAggregation The aggregation type.
SecurityMonitoringRuleSeverity Severity of the Security Signal.
SecurityMonitoringSignalsSort The sort parameters used for querying security signals.
SecurityMonitoringSignalType The type of event.
ServerConfigurations stores multiple ServerConfiguration items.
UserInvitationsType User invitations type.
UsersApiService UsersApi service.
UsersType Users resource type.