Categorygithub.com/agaurav/sumo-openapi
modulepackage
0.0.1
Repository: https://github.com/agaurav/sumo-openapi.git
Documentation: pkg.go.dev

# README

Go API client for openapi

Getting Started

Welcome to the Sumo Logic API reference. You can use these APIs to interact with the Sumo Logic platform. For information on the collector and search APIs see our API home page.

API Endpoints

Sumo Logic has several deployments in different geographic locations. You'll need to use the Sumo Logic API endpoint corresponding to your geographic location. See the table below for the different API endpoints by deployment. For details determining your account's deployment see API endpoints.

Deployment Endpoint
AU https://api.au.sumologic.com/api/
CA https://api.ca.sumologic.com/api/
DE https://api.de.sumologic.com/api/
EU https://api.eu.sumologic.com/api/
FED https://api.fed.sumologic.com/api/
IN https://api.in.sumologic.com/api/
JP https://api.jp.sumologic.com/api/
US1 https://api.sumologic.com/api/
US2 https://api.us2.sumologic.com/api/

Authentication

Sumo Logic supports the following options for API authentication:

  • Access ID and Access Key
  • Base64 encoded Access ID and Access Key

See Access Keys to generate an Access Key. Make sure to copy the key you create, because it is displayed only once. When you have an Access ID and Access Key you can execute requests such as the following:

curl -u \"<accessId>:<accessKey>\" -X GET https://api.<deployment>.sumologic.com/api/v1/users

Where deployment is either au, ca, de, eu, fed, in, jp, us1, or us2. See API endpoints for details.

If you prefer to use basic access authentication, you can do a Base64 encoding of your <accessId>:<accessKey> to authenticate your HTTPS request. The following is an example request, replace the placeholder <encoded> with your encoded Access ID and Access Key string:

curl -H \"Authorization: Basic <encoded>\" -X GET https://api.<deployment>.sumologic.com/api/v1/users

Refer to API Authentication for a Base64 example.

Status Codes

Generic status codes that apply to all our APIs. See the HTTP status code registry for reference.

HTTP Status Code Error Code Description
301 moved The requested resource SHOULD be accessed through returned URI in Location Header. See [troubleshooting](https://help.sumologic.com/APIs/Troubleshooting-APIs/API-301-Error-Moved) for details.
401 unauthorized Credential could not be verified.
403 forbidden This operation is not allowed for your account type or the user doesn't have the role capability to perform this action. See [troubleshooting](https://help.sumologic.com/APIs/Troubleshooting-APIs/API-403-Error-This-operation-is-not-allowed-for-your-account-type) for details.
404 notfound Requested resource could not be found.
405 method.unsupported Unsupported method for URL.
415 contenttype.invalid Invalid content type.
429 rate.limit.exceeded The API request rate is higher than 4 request per second or inflight API requests are higher than 10 request per second.
500 internal.error Internal server error.
503 service.unavailable Service is currently unavailable.

Filtering

Some API endpoints support filtering results on a specified set of fields. Each endpoint that supports filtering will list the fields that can be filtered. Multiple fields can be combined by using an ampersand & character.

For example, to get 20 users whose firstName is John and lastName is Doe:

api.sumologic.com/v1/users?limit=20&firstName=John&lastName=Doe

Sorting

Some API endpoints support sorting fields by using the sortBy query parameter. The default sort order is ascending. Prefix the field with a minus sign - to sort in descending order.

For example, to get 20 users sorted by their email in descending order:

api.sumologic.com/v1/users?limit=20&sort=-email

Asynchronous Request

Asynchronous requests do not wait for results, instead they immediately respond back with a job identifier while the job runs in the background. You can use the job identifier to track the status of the asynchronous job request. Here is a typical flow for an asynchronous request.

  1. Start an asynchronous job. On success, a job identifier is returned. The job identifier uniquely identifies your asynchronous job.

  2. Once started, use the job identifier from step 1 to track the status of your asynchronous job. An asynchronous request will typically provide an endpoint to poll for the status of asynchronous job. A successful response from the status endpoint will have the following structure:

{
    \"status\": \"Status of asynchronous request\",
    \"statusMessage\": \"Optional message with additional information in case request succeeds\",
    \"error\": \"Error object in case request fails\"
}

The status field can have one of the following values: 1. Success: The job succeeded. The statusMessage field might have additional information. 2. InProgress: The job is still running. 3. Failed: The job failed. The error field in the response will have more information about the failure.

  1. Some asynchronous APIs may provide a third endpoint (like export result) to fetch the result of an asynchronous job.

Example

Let's say we want to export a folder with the identifier 0000000006A2E86F. We will use the async export API to export all the content under the folder with id=0000000006A2E86F.

  1. Start an export job for the folder
curl -X POST -u \"<accessId>:<accessKey>\" https://api.<deployment>.sumologic.com/api/v2/content/0000000006A2E86F/export

See authentication section for more details about accessId, accessKey, and deployment. On success, you will get back a job identifier. In the response below, C03E086C137F38B4 is the job identifier.

{
    \"id\": \"C03E086C137F38B4\"
}
  1. Now poll for the status of the asynchronous job with the status endpoint.
curl -X GET -u \"<accessId>:<accessKey>\" https://api.<deployment>.sumologic.com/api/v2/content/0000000006A2E86F/export/C03E086C137F38B4/status

You may get a response like

{
    \"status\": \"InProgress\",
    \"statusMessage\": null,
    \"error\": null
}

It implies the job is still in progress. Keep polling till the status is either Success or Failed.

  1. When the asynchronous job completes (status != \"InProgress\"), you can fetch the results with the export result endpoint.
curl -X GET -u \"<accessId>:<accessKey>\" https://api.<deployment>.sumologic.com/api/v2/content/0000000006A2E86F/export/C03E086C137F38B4/result

The asynchronous job may fail (status == \"Failed\"). You can look at the error field for more details.

{
    \"status\": \"Failed\",
    \"errors\": {
        \"code\": \"content1:too_many_items\",
        \"message\": \"Too many objects: object count(1100) was greater than limit 1000\"
    }
}

Rate Limiting

  • A rate limit of four API requests per second (240 requests per minute) applies to all API calls from a user.
  • A rate limit of 10 concurrent requests to any API endpoint applies to an access key.

If a rate is exceeded, a rate limit exceeded 429 status code is returned.

Generating Clients

You can use OpenAPI Generator to generate clients from the YAML file to access the API.

Using NPM

  1. Install NPM package wrapper globally, exposing the CLI on the command line:
npm install @openapitools/openapi-generator-cli -g

You can see detailed instructions here.

  1. Download the YAML file and save it locally. Let's say the file is saved as sumologic-api.yaml.
  2. Use the following command to generate python client inside the sumo/client/python directory:
openapi-generator generate -i sumologic-api.yaml -g python -o sumo/client/python

Using Homebrew

  1. Install OpenAPI Generator
brew install openapi-generator
  1. Download the YAML file and save it locally. Let's say the file is saved as sumologic-api.yaml.
  2. Use the following command to generate python client side code inside the sumo/client/python directory:
openapi-generator generate -i sumologic-api.yaml -g python -o sumo/client/python

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.0
  • Package version: 1.0.0
  • Build package: org.openapitools.codegen.languages.GoClientCodegen

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 "./openapi"

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.au.sumologic.com/api

ClassMethodHTTP requestDescription
AccessKeyManagementApiCreateAccessKeyPost /v1/accessKeysCreate an access key.
AccessKeyManagementApiDeleteAccessKeyDelete /v1/accessKeys/{id}Delete an access key.
AccessKeyManagementApiListAccessKeysGet /v1/accessKeysList all access keys.
AccessKeyManagementApiListPersonalAccessKeysGet /v1/accessKeys/personalList personal keys.
AccessKeyManagementApiUpdateAccessKeyPut /v1/accessKeys/{id}Update an access key.
AccountManagementApiCreateSubdomainPost /v1/account/subdomainCreate account subdomain.
AccountManagementApiDeleteSubdomainDelete /v1/account/subdomainDelete the configured subdomain.
AccountManagementApiGetAccountOwnerGet /v1/account/accountOwnerGet the owner of an account.
AccountManagementApiGetStatusGet /v1/account/statusGet overview of the account status.
AccountManagementApiGetSubdomainGet /v1/account/subdomainGet the configured subdomain.
AccountManagementApiRecoverSubdomainsPost /v1/account/subdomain/recoverRecover subdomains for a user.
AccountManagementApiUpdateSubdomainPut /v1/account/subdomainUpdate account subdomain.
AppManagementApiGetAppGet /v1/apps/{uuid}Get an app by UUID.
AppManagementApiGetAsyncInstallStatusGet /v1/apps/install/{jobId}/statusApp install job status.
AppManagementApiInstallAppPost /v1/apps/{uuid}/installInstall an app by UUID.
AppManagementApiListAppsGet /v1/appsList available apps.
ArchiveManagementApiCreateArchiveJobPost /v1/archive/{sourceId}/jobsCreate an ingestion job.
ArchiveManagementApiDeleteArchiveJobDelete /v1/archive/{sourceId}/jobs/{id}Delete an ingestion job.
ArchiveManagementApiListArchiveJobsBySourceIdGet /v1/archive/{sourceId}/jobsGet ingestion jobs for an Archive Source.
ArchiveManagementApiListArchiveJobsCountPerSourceGet /v1/archive/jobs/countList ingestion jobs for all Archive Sources.
ConnectionManagementApiCreateConnectionPost /v1/connectionsCreate a new connection.
ConnectionManagementApiDeleteConnectionDelete /v1/connections/{id}Delete a connection.
ConnectionManagementApiGetConnectionGet /v1/connections/{id}Get a connection.
ConnectionManagementApiListConnectionsGet /v1/connectionsGet a list of connections.
ConnectionManagementApiTestConnectionPost /v1/connections/testTest a new connection url.
ConnectionManagementApiUpdateConnectionPut /v1/connections/{id}Update a connection.
ContentManagementApiAsyncCopyStatusGet /v2/content/{id}/copy/{jobId}/statusContent copy job status.
ContentManagementApiBeginAsyncCopyPost /v2/content/{id}/copyStart a content copy job.
ContentManagementApiBeginAsyncDeleteDelete /v2/content/{id}/deleteStart a content deletion job.
ContentManagementApiBeginAsyncExportPost /v2/content/{id}/exportStart a content export job.
ContentManagementApiBeginAsyncImportPost /v2/content/folders/{folderId}/importStart a content import job.
ContentManagementApiGetAsyncDeleteStatusGet /v2/content/{id}/delete/{jobId}/statusContent deletion job status.
ContentManagementApiGetAsyncExportResultGet /v2/content/{contentId}/export/{jobId}/resultContent export job result.
ContentManagementApiGetAsyncExportStatusGet /v2/content/{contentId}/export/{jobId}/statusContent export job status.
ContentManagementApiGetAsyncImportStatusGet /v2/content/folders/{folderId}/import/{jobId}/statusContent import job status.
ContentManagementApiGetItemByPathGet /v2/content/pathGet content item by path.
ContentManagementApiGetPathByIdGet /v2/content/{contentId}/pathGet path of an item.
ContentManagementApiMoveItemPost /v2/content/{id}/moveMove an item.
ContentPermissionsApiAddContentPermissionsPut /v2/content/{id}/permissions/addAdd permissions to a content item.
ContentPermissionsApiGetContentPermissionsGet /v2/content/{id}/permissionsGet permissions of a content item
ContentPermissionsApiRemoveContentPermissionsPut /v2/content/{id}/permissions/removeRemove permissions from a content item.
DashboardManagementApiCreateDashboardPost /v2/dashboardsCreate a new dashboard.
DashboardManagementApiDeleteDashboardDelete /v2/dashboards/{id}Delete a dashboard.
DashboardManagementApiGetDashboardGet /v2/dashboards/{id}Get a dashboard.
DashboardManagementApiUpdateDashboardPut /v2/dashboards/{id}Update a dashboard.
DynamicParsingRuleManagementApiCreateDynamicParsingRulePost /v1/dynamicParsingRulesCreate a new dynamic parsing rule.
DynamicParsingRuleManagementApiDeleteDynamicParsingRuleDelete /v1/dynamicParsingRules/{id}Delete a dynamic parsing rule.
DynamicParsingRuleManagementApiGetDynamicParsingRuleGet /v1/dynamicParsingRules/{id}Get a dynamic parsing rule.
DynamicParsingRuleManagementApiListDynamicParsingRulesGet /v1/dynamicParsingRulesGet a list of dynamic parsing rules.
DynamicParsingRuleManagementApiUpdateDynamicParsingRulePut /v1/dynamicParsingRules/{id}Update a dynamic parsing rule.
ExtractionRuleManagementApiCreateExtractionRulePost /v1/extractionRulesCreate a new field extraction rule.
ExtractionRuleManagementApiDeleteExtractionRuleDelete /v1/extractionRules/{id}Delete a field extraction rule.
ExtractionRuleManagementApiGetExtractionRuleGet /v1/extractionRules/{id}Get a field extraction rule.
ExtractionRuleManagementApiListExtractionRulesGet /v1/extractionRulesGet a list of field extraction rules.
ExtractionRuleManagementApiUpdateExtractionRulePut /v1/extractionRules/{id}Update a field extraction rule.
FieldManagementV1ApiCreateFieldPost /v1/fieldsCreate a new field.
FieldManagementV1ApiDeleteFieldDelete /v1/fields/{id}Delete a custom field.
FieldManagementV1ApiDisableFieldDelete /v1/fields/{id}/disableDisable a custom field.
FieldManagementV1ApiEnableFieldPut /v1/fields/{id}/enableEnable custom field with a specified identifier.
FieldManagementV1ApiGetBuiltInFieldGet /v1/fields/builtin/{id}Get a built-in field.
FieldManagementV1ApiGetCustomFieldGet /v1/fields/{id}Get a custom field.
FieldManagementV1ApiGetFieldQuotaGet /v1/fields/quotaGet capacity information.
FieldManagementV1ApiListBuiltInFieldsGet /v1/fields/builtinGet a list of built-in fields.
FieldManagementV1ApiListCustomFieldsGet /v1/fieldsGet a list of all custom fields.
FieldManagementV1ApiListDroppedFieldsGet /v1/fields/droppedGet a list of dropped fields.
FolderManagementApiCreateFolderPost /v2/content/foldersCreate a new folder.
FolderManagementApiGetAdminRecommendedFolderAsyncGet /v2/content/folders/adminRecommendedSchedule Admin Recommended folder job
FolderManagementApiGetAdminRecommendedFolderAsyncResultGet /v2/content/folders/adminRecommended/{jobId}/resultGet Admin Recommended folder job result
FolderManagementApiGetAdminRecommendedFolderAsyncStatusGet /v2/content/folders/adminRecommended/{jobId}/statusGet Admin Recommended folder job status
FolderManagementApiGetFolderGet /v2/content/folders/{id}Get a folder.
FolderManagementApiGetGlobalFolderAsyncGet /v2/content/folders/globalSchedule Global View job
FolderManagementApiGetGlobalFolderAsyncResultGet /v2/content/folders/global/{jobId}/resultGet Global View job result
FolderManagementApiGetGlobalFolderAsyncStatusGet /v2/content/folders/global/{jobId}/statusGet Global View job status
FolderManagementApiGetPersonalFolderGet /v2/content/folders/personalGet personal folder.
FolderManagementApiUpdateFolderPut /v2/content/folders/{id}Update a folder.
HealthEventsApiListAllHealthEventsGet /v1/healthEventsGet a list of health events.
HealthEventsApiListAllHealthEventsForResourcesPost /v1/healthEvents/resourcesHealth events for specific resources.
IngestBudgetManagementV1ApiAssignCollectorToBudgetPut /v1/ingestBudgets/{id}/collectors/{collectorId}Assign a Collector to a budget.
IngestBudgetManagementV1ApiCreateIngestBudgetPost /v1/ingestBudgetsCreate a new ingest budget.
IngestBudgetManagementV1ApiDeleteIngestBudgetDelete /v1/ingestBudgets/{id}Delete an ingest budget.
IngestBudgetManagementV1ApiGetAssignedCollectorsGet /v1/ingestBudgets/{id}/collectorsGet a list of Collectors.
IngestBudgetManagementV1ApiGetIngestBudgetGet /v1/ingestBudgets/{id}Get an ingest budget.
IngestBudgetManagementV1ApiListIngestBudgetsGet /v1/ingestBudgetsGet a list of ingest budgets.
IngestBudgetManagementV1ApiRemoveCollectorFromBudgetDelete /v1/ingestBudgets/{id}/collectors/{collectorId}Remove Collector from a budget.
IngestBudgetManagementV1ApiResetUsagePost /v1/ingestBudgets/{id}/usage/resetReset usage.
IngestBudgetManagementV1ApiUpdateIngestBudgetPut /v1/ingestBudgets/{id}Update an ingest budget.
IngestBudgetManagementV2ApiCreateIngestBudgetV2Post /v2/ingestBudgetsCreate a new ingest budget.
IngestBudgetManagementV2ApiDeleteIngestBudgetV2Delete /v2/ingestBudgets/{id}Delete an ingest budget.
IngestBudgetManagementV2ApiGetIngestBudgetV2Get /v2/ingestBudgets/{id}Get an ingest budget.
IngestBudgetManagementV2ApiListIngestBudgetsV2Get /v2/ingestBudgetsGet a list of ingest budgets.
IngestBudgetManagementV2ApiResetUsageV2Post /v2/ingestBudgets/{id}/usage/resetReset usage.
IngestBudgetManagementV2ApiUpdateIngestBudgetV2Put /v2/ingestBudgets/{id}Update an ingest budget.
LogSearchesEstimatedUsageApiGetLogSearchEstimatedUsagePost /v1/logSearches/estimatedUsageGets estimated usage details.
LogSearchesEstimatedUsageApiGetLogSearchEstimatedUsageByTierPost /v1/logSearches/estimatedUsageByTierGets Tier Wise estimated usage details.
LookupManagementApiCreateTablePost /v1/lookupTablesCreate a lookup table.
LookupManagementApiDeleteTableDelete /v1/lookupTables/{id}Delete a lookup table.
LookupManagementApiDeleteTableRowPut /v1/lookupTables/{id}/deleteTableRowDelete a lookup table row.
LookupManagementApiLookupTableByIdGet /v1/lookupTables/{id}Get a lookup table.
LookupManagementApiRequestJobStatusGet /v1/lookupTables/jobs/{jobId}/statusGet the status of an async job.
LookupManagementApiTruncateTablePost /v1/lookupTables/{id}/truncateEmpty a lookup table.
LookupManagementApiUpdateTablePut /v1/lookupTables/{id}Edit a lookup table.
LookupManagementApiUpdateTableRowPut /v1/lookupTables/{id}/rowInsert or Update a lookup table row.
LookupManagementApiUploadFilePost /v1/lookupTables/{id}/uploadUpload a CSV file.
MetricsQueryApiRunMetricsQueriesPost /v1/metricsQueriesRun metrics queries
MetricsSearchesManagementApiCreateMetricsSearchPost /v1/metricsSearchesSave a metrics search.
MetricsSearchesManagementApiDeleteMetricsSearchDelete /v1/metricsSearches/{id}Deletes a metrics search.
MetricsSearchesManagementApiGetMetricsSearchGet /v1/metricsSearches/{id}Get a metrics search.
MetricsSearchesManagementApiUpdateMetricsSearchPut /v1/metricsSearches/{id}Updates a metrics search.
MonitorsLibraryManagementApiDisableMonitorByIdsPut /v1/monitors/disableDisable monitors.
MonitorsLibraryManagementApiGetMonitorUsageInfoGet /v1/monitors/usageInfoUsage info of monitors.
MonitorsLibraryManagementApiGetMonitorsFullPathGet /v1/monitors/{id}/pathGet the path of a monitor or folder.
MonitorsLibraryManagementApiGetMonitorsLibraryRootGet /v1/monitors/rootGet the root monitors folder.
MonitorsLibraryManagementApiMonitorsCopyPost /v1/monitors/{id}/copyCopy a monitor or folder.
MonitorsLibraryManagementApiMonitorsCreatePost /v1/monitorsCreate a monitor or folder.
MonitorsLibraryManagementApiMonitorsDeleteByIdDelete /v1/monitors/{id}Delete a monitor or folder.
MonitorsLibraryManagementApiMonitorsDeleteByIdsDelete /v1/monitorsBulk delete a monitor or folder.
MonitorsLibraryManagementApiMonitorsExportItemGet /v1/monitors/{id}/exportExport a monitor or folder.
MonitorsLibraryManagementApiMonitorsGetByPathGet /v1/monitors/pathRead a monitor or folder by its path.
MonitorsLibraryManagementApiMonitorsImportItemPost /v1/monitors/{parentId}/importImport a monitor or folder.
MonitorsLibraryManagementApiMonitorsMovePost /v1/monitors/{id}/moveMove a monitor or folder.
MonitorsLibraryManagementApiMonitorsReadByIdGet /v1/monitors/{id}Get a monitor or folder.
MonitorsLibraryManagementApiMonitorsReadByIdsGet /v1/monitorsBulk read a monitor or folder.
MonitorsLibraryManagementApiMonitorsSearchGet /v1/monitors/searchSearch for a monitor or folder.
MonitorsLibraryManagementApiMonitorsUpdateByIdPut /v1/monitors/{id}Update a monitor or folder.
PartitionManagementApiCancelRetentionUpdatePost /v1/partitions/{id}/cancelRetentionUpdateCancel a retention update for a partition
PartitionManagementApiCreatePartitionPost /v1/partitionsCreate a new partition.
PartitionManagementApiDecommissionPartitionPost /v1/partitions/{id}/decommissionDecommission a partition.
PartitionManagementApiGetPartitionGet /v1/partitions/{id}Get a partition.
PartitionManagementApiListPartitionsGet /v1/partitionsGet a list of partitions.
PartitionManagementApiUpdatePartitionPut /v1/partitions/{id}Update a partition.
PasswordPolicyApiGetPasswordPolicyGet /v1/passwordPolicyGet the current password policy.
PasswordPolicyApiSetPasswordPolicyPut /v1/passwordPolicyUpdate password policy.
PoliciesManagementApiGetAuditPolicyGet /v1/policies/auditGet Audit policy.
PoliciesManagementApiGetDataAccessLevelPolicyGet /v1/policies/dataAccessLevelGet Data Access Level policy.
PoliciesManagementApiGetMaxUserSessionTimeoutPolicyGet /v1/policies/maxUserSessionTimeoutGet Max User Session Timeout policy.
PoliciesManagementApiGetSearchAuditPolicyGet /v1/policies/searchAuditGet Search Audit policy.
PoliciesManagementApiGetShareDashboardsOutsideOrganizationPolicyGet /v1/policies/shareDashboardsOutsideOrganizationGet Share Dashboards Outside Organization policy.
PoliciesManagementApiGetUserConcurrentSessionsLimitPolicyGet /v1/policies/userConcurrentSessionsLimitGet User Concurrent Sessions Limit policy.
PoliciesManagementApiSetAuditPolicyPut /v1/policies/auditSet Audit policy.
PoliciesManagementApiSetDataAccessLevelPolicyPut /v1/policies/dataAccessLevelSet Data Access Level policy.
PoliciesManagementApiSetMaxUserSessionTimeoutPolicyPut /v1/policies/maxUserSessionTimeoutSet Max User Session Timeout policy.
PoliciesManagementApiSetSearchAuditPolicyPut /v1/policies/searchAuditSet Search Audit policy.
PoliciesManagementApiSetShareDashboardsOutsideOrganizationPolicyPut /v1/policies/shareDashboardsOutsideOrganizationSet Share Dashboards Outside Organization policy.
PoliciesManagementApiSetUserConcurrentSessionsLimitPolicyPut /v1/policies/userConcurrentSessionsLimitSet User Concurrent Sessions Limit policy.
RoleManagementApiAssignRoleToUserPut /v1/roles/{roleId}/users/{userId}Assign a role to a user.
RoleManagementApiCreateRolePost /v1/rolesCreate a new role.
RoleManagementApiDeleteRoleDelete /v1/roles/{id}Delete a role.
RoleManagementApiGetRoleGet /v1/roles/{id}Get a role.
RoleManagementApiListRolesGet /v1/rolesGet a list of roles.
RoleManagementApiRemoveRoleFromUserDelete /v1/roles/{roleId}/users/{userId}Remove role from a user.
RoleManagementApiUpdateRolePut /v1/roles/{id}Update a role.
SamlConfigurationManagementApiCreateAllowlistedUserPost /v1/saml/allowlistedUsers/{userId}Allowlist a user.
SamlConfigurationManagementApiCreateIdentityProviderPost /v1/saml/identityProvidersCreate a new SAML configuration.
SamlConfigurationManagementApiDeleteAllowlistedUserDelete /v1/saml/allowlistedUsers/{userId}Remove an allowlisted user.
SamlConfigurationManagementApiDeleteIdentityProviderDelete /v1/saml/identityProviders/{id}Delete a SAML configuration.
SamlConfigurationManagementApiDisableSamlLockdownPost /v1/saml/lockdown/disableDisable SAML lockdown.
SamlConfigurationManagementApiEnableSamlLockdownPost /v1/saml/lockdown/enableRequire SAML for sign-in.
SamlConfigurationManagementApiGetAllowlistedUsersGet /v1/saml/allowlistedUsersGet list of allowlisted users.
SamlConfigurationManagementApiGetIdentityProvidersGet /v1/saml/identityProvidersGet a list of SAML configurations.
SamlConfigurationManagementApiUpdateIdentityProviderPut /v1/saml/identityProviders/{id}Update a SAML configuration.
ScheduledViewManagementApiCreateScheduledViewPost /v1/scheduledViewsCreate a new scheduled view.
ScheduledViewManagementApiDisableScheduledViewDelete /v1/scheduledViews/{id}/disableDisable a scheduled view.
ScheduledViewManagementApiGetScheduledViewGet /v1/scheduledViews/{id}Get a scheduled view.
ScheduledViewManagementApiListScheduledViewsGet /v1/scheduledViewsGet a list of scheduled views.
ScheduledViewManagementApiPauseScheduledViewPost /v1/scheduledViews/{id}/pausePause a scheduled view.
ScheduledViewManagementApiStartScheduledViewPost /v1/scheduledViews/{id}/startStart a scheduled view.
ScheduledViewManagementApiUpdateScheduledViewPut /v1/scheduledViews/{id}Update a scheduled view.
ServiceAllowlistManagementApiAddAllowlistedCidrsPost /v1/serviceAllowlist/addresses/addAllowlist CIDRs/IP addresses.
ServiceAllowlistManagementApiDeleteAllowlistedCidrsPost /v1/serviceAllowlist/addresses/removeRemove allowlisted CIDRs/IP addresses.
ServiceAllowlistManagementApiDisableAllowlistingPost /v1/serviceAllowlist/disableDisable service allowlisting.
ServiceAllowlistManagementApiEnableAllowlistingPost /v1/serviceAllowlist/enableEnable service allowlisting.
ServiceAllowlistManagementApiGetAllowlistingStatusGet /v1/serviceAllowlist/statusGet the allowlisting status.
ServiceAllowlistManagementApiListAllowlistedCidrsGet /v1/serviceAllowlist/addressesList all allowlisted CIDRs/IP addresses.
TokensLibraryManagementApiCreateTokenPost /v1/tokensCreate a token.
TokensLibraryManagementApiDeleteTokenDelete /v1/tokens/{id}Delete a token.
TokensLibraryManagementApiGetTokenGet /v1/tokens/{id}Get a token.
TokensLibraryManagementApiListTokensGet /v1/tokensGet a list of tokens.
TokensLibraryManagementApiUpdateTokenPut /v1/tokens/{id}Update a token.
TransformationRuleManagementApiCreateRulePost /v1/transformationRulesCreate a new transformation rule.
TransformationRuleManagementApiDeleteRuleDelete /v1/transformationRules/{id}Delete a transformation rule.
TransformationRuleManagementApiGetTransformationRuleGet /v1/transformationRules/{id}Get a transformation rule.
TransformationRuleManagementApiGetTransformationRulesGet /v1/transformationRulesGet a list of transformation rules.
TransformationRuleManagementApiUpdateTransformationRulePut /v1/transformationRules/{id}Update a transformation rule.
UserManagementApiCreateUserPost /v1/usersCreate a new user.
UserManagementApiDeleteUserDelete /v1/users/{id}Delete a user.
UserManagementApiDisableMfaPut /v1/users/{id}/mfa/disableDisable MFA for user.
UserManagementApiGetUserGet /v1/users/{id}Get a user.
UserManagementApiListUsersGet /v1/usersGet a list of users.
UserManagementApiRequestChangeEmailPost /v1/users/{id}/email/requestChangeChange email address.
UserManagementApiResetPasswordPost /v1/users/{id}/password/resetReset password.
UserManagementApiUnlockUserPost /v1/users/{id}/unlockUnlock a user.
UserManagementApiUpdateUserPut /v1/users/{id}Update a user.

Documentation For Models

Documentation For Authorization

basicAuth

  • Type: HTTP basic authentication

Example

auth := context.WithValue(context.Background(), sw.ContextBasicAuth, sw.BasicAuth{
    UserName: "username",
    Password: "password",
})
r, err := client.Service.Operation(auth, args)

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

# Functions

CacheExpires helper function to determine remaining time before repeating a request.
NewAccessKey instantiates a new AccessKey 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.
NewAccessKeyAllOf instantiates a new AccessKeyAllOf 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.
NewAccessKeyAllOfWithDefaults instantiates a new AccessKeyAllOf 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.
NewAccessKeyCreateRequest instantiates a new AccessKeyCreateRequest 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.
NewAccessKeyCreateRequestWithDefaults instantiates a new AccessKeyCreateRequest 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.
NewAccessKeyPublic instantiates a new AccessKeyPublic 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.
NewAccessKeyPublicWithDefaults instantiates a new AccessKeyPublic 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.
NewAccessKeyUpdateRequest instantiates a new AccessKeyUpdateRequest 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.
NewAccessKeyUpdateRequestWithDefaults instantiates a new AccessKeyUpdateRequest 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.
NewAccessKeyWithDefaults instantiates a new AccessKey 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.
NewAccountStatusResponse instantiates a new AccountStatusResponse 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.
NewAccountStatusResponseWithDefaults instantiates a new AccountStatusResponse 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.
NewAction instantiates a new Action 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.
NewActionWithDefaults instantiates a new Action 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.
NewAddOrReplaceTransformation instantiates a new AddOrReplaceTransformation 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.
NewAddOrReplaceTransformationAllOf instantiates a new AddOrReplaceTransformationAllOf 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.
NewAddOrReplaceTransformationAllOfWithDefaults instantiates a new AddOrReplaceTransformationAllOf 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.
NewAddOrReplaceTransformationWithDefaults instantiates a new AddOrReplaceTransformation 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.
NewAggregateOnTransformation instantiates a new AggregateOnTransformation 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.
NewAggregateOnTransformationAllOf instantiates a new AggregateOnTransformationAllOf 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.
NewAggregateOnTransformationAllOfWithDefaults instantiates a new AggregateOnTransformationAllOf 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.
NewAggregateOnTransformationWithDefaults instantiates a new AggregateOnTransformation 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.
NewAlertChartDataResult instantiates a new AlertChartDataResult 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.
NewAlertChartDataResultWithDefaults instantiates a new AlertChartDataResult 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.
NewAlertChartMetadata instantiates a new AlertChartMetadata 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.
NewAlertChartMetadataWithDefaults instantiates a new AlertChartMetadata 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.
NewAlertEntityInfo instantiates a new AlertEntityInfo 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.
NewAlertEntityInfoWithDefaults instantiates a new AlertEntityInfo 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.
NewAlertMonitorQuery instantiates a new AlertMonitorQuery 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.
NewAlertMonitorQueryAllOf instantiates a new AlertMonitorQueryAllOf 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.
NewAlertMonitorQueryAllOfWithDefaults instantiates a new AlertMonitorQueryAllOf 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.
NewAlertMonitorQueryWithDefaults instantiates a new AlertMonitorQuery 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.
NewAlertSearchNotificationSyncDefinition instantiates a new AlertSearchNotificationSyncDefinition 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.
NewAlertSearchNotificationSyncDefinitionAllOf instantiates a new AlertSearchNotificationSyncDefinitionAllOf 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.
NewAlertSearchNotificationSyncDefinitionAllOfWithDefaults instantiates a new AlertSearchNotificationSyncDefinitionAllOf 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.
NewAlertSearchNotificationSyncDefinitionWithDefaults instantiates a new AlertSearchNotificationSyncDefinition 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.
NewAlertSignalContext instantiates a new AlertSignalContext 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.
NewAlertSignalContextAllOf instantiates a new AlertSignalContextAllOf 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.
NewAlertSignalContextAllOfWithDefaults instantiates a new AlertSignalContextAllOf 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.
NewAlertSignalContextWithDefaults instantiates a new AlertSignalContext 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.
NewAlertsLibraryAlert instantiates a new AlertsLibraryAlert 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.
NewAlertsLibraryAlertAllOf instantiates a new AlertsLibraryAlertAllOf 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.
NewAlertsLibraryAlertAllOfWithDefaults instantiates a new AlertsLibraryAlertAllOf 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.
NewAlertsLibraryAlertExport instantiates a new AlertsLibraryAlertExport 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.
NewAlertsLibraryAlertExportWithDefaults instantiates a new AlertsLibraryAlertExport 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.
NewAlertsLibraryAlertResponse instantiates a new AlertsLibraryAlertResponse 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.
NewAlertsLibraryAlertResponseWithDefaults instantiates a new AlertsLibraryAlertResponse 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.
NewAlertsLibraryAlertUpdate instantiates a new AlertsLibraryAlertUpdate 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.
NewAlertsLibraryAlertUpdateWithDefaults instantiates a new AlertsLibraryAlertUpdate 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.
NewAlertsLibraryAlertWithDefaults instantiates a new AlertsLibraryAlert 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.
NewAlertsLibraryBase instantiates a new AlertsLibraryBase 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.
NewAlertsLibraryBaseExport instantiates a new AlertsLibraryBaseExport 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.
NewAlertsLibraryBaseExportWithDefaults instantiates a new AlertsLibraryBaseExport 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.
NewAlertsLibraryBaseResponse instantiates a new AlertsLibraryBaseResponse 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.
NewAlertsLibraryBaseResponseWithDefaults instantiates a new AlertsLibraryBaseResponse 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.
NewAlertsLibraryBaseUpdate instantiates a new AlertsLibraryBaseUpdate 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.
NewAlertsLibraryBaseUpdateWithDefaults instantiates a new AlertsLibraryBaseUpdate 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.
NewAlertsLibraryBaseWithDefaults instantiates a new AlertsLibraryBase 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.
NewAlertsLibraryFolder instantiates a new AlertsLibraryFolder 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.
NewAlertsLibraryFolderExport instantiates a new AlertsLibraryFolderExport 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.
NewAlertsLibraryFolderExportAllOf instantiates a new AlertsLibraryFolderExportAllOf 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.
NewAlertsLibraryFolderExportAllOfWithDefaults instantiates a new AlertsLibraryFolderExportAllOf 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.
NewAlertsLibraryFolderExportWithDefaults instantiates a new AlertsLibraryFolderExport 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.
NewAlertsLibraryFolderResponse instantiates a new AlertsLibraryFolderResponse 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.
NewAlertsLibraryFolderResponseAllOf instantiates a new AlertsLibraryFolderResponseAllOf 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.
NewAlertsLibraryFolderResponseAllOfWithDefaults instantiates a new AlertsLibraryFolderResponseAllOf 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.
NewAlertsLibraryFolderResponseWithDefaults instantiates a new AlertsLibraryFolderResponse 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.
NewAlertsLibraryFolderUpdate instantiates a new AlertsLibraryFolderUpdate 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.
NewAlertsLibraryFolderUpdateWithDefaults instantiates a new AlertsLibraryFolderUpdate 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.
NewAlertsLibraryFolderWithDefaults instantiates a new AlertsLibraryFolder 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.
NewAlertsLibraryItemWithPath instantiates a new AlertsLibraryItemWithPath 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.
NewAlertsLibraryItemWithPathWithDefaults instantiates a new AlertsLibraryItemWithPath 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.
NewAlertsListPageObject instantiates a new AlertsListPageObject 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.
NewAlertsListPageObjectWithDefaults instantiates a new AlertsListPageObject 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.
NewAlertsListPageResponse instantiates a new AlertsListPageResponse 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.
NewAlertsListPageResponseWithDefaults instantiates a new AlertsListPageResponse 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.
NewAllowlistedUserResult instantiates a new AllowlistedUserResult 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.
NewAllowlistedUserResultWithDefaults instantiates a new AllowlistedUserResult 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.
NewAllowlistingStatus instantiates a new AllowlistingStatus 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.
NewAllowlistingStatusWithDefaults instantiates a new AllowlistingStatus 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.
NewAPIClient creates a new API client.
NewAPIResponse returns a new APIResponse object.
NewAPIResponseWithError returns a new APIResponse object with the provided error message.
NewApp instantiates a new App 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.
NewAppDefinition instantiates a new AppDefinition 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.
NewAppDefinitionWithDefaults instantiates a new AppDefinition 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.
NewAppInstallRequest instantiates a new AppInstallRequest 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.
NewAppInstallRequestWithDefaults instantiates a new AppInstallRequest 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.
NewAppItemsList instantiates a new AppItemsList 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.
NewAppItemsListWithDefaults instantiates a new AppItemsList 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.
NewAppListItem instantiates a new AppListItem 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.
NewAppListItemWithDefaults instantiates a new AppListItem 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.
NewAppManifest instantiates a new AppManifest 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.
NewAppManifestWithDefaults instantiates a new AppManifest 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.
NewAppRecommendation instantiates a new AppRecommendation 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.
NewAppRecommendationWithDefaults instantiates a new AppRecommendation 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.
NewAppWithDefaults instantiates a new App 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.
NewArchiveJob instantiates a new ArchiveJob 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.
NewArchiveJobAllOf instantiates a new ArchiveJobAllOf 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.
NewArchiveJobAllOfWithDefaults instantiates a new ArchiveJobAllOf 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.
NewArchiveJobsCount instantiates a new ArchiveJobsCount 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.
NewArchiveJobsCountWithDefaults instantiates a new ArchiveJobsCount 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.
NewArchiveJobWithDefaults instantiates a new ArchiveJob 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.
NewAsyncJobStatus instantiates a new AsyncJobStatus 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.
NewAsyncJobStatusWithDefaults instantiates a new AsyncJobStatus 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.
NewAuditPolicy instantiates a new AuditPolicy 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.
NewAuditPolicyWithDefaults instantiates a new AuditPolicy 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.
NewAuthnCertificateResult instantiates a new AuthnCertificateResult 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.
NewAuthnCertificateResultWithDefaults instantiates a new AuthnCertificateResult 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.
NewAutoCompleteValueSyncDefinition instantiates a new AutoCompleteValueSyncDefinition 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.
NewAutoCompleteValueSyncDefinitionWithDefaults instantiates a new AutoCompleteValueSyncDefinition 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.
NewAwsCloudWatchCollectionErrorTracker instantiates a new AwsCloudWatchCollectionErrorTracker 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.
NewAwsCloudWatchCollectionErrorTrackerWithDefaults instantiates a new AwsCloudWatchCollectionErrorTracker 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.
NewAwsInventoryCollectionErrorTracker instantiates a new AwsInventoryCollectionErrorTracker 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.
NewAwsInventoryCollectionErrorTrackerWithDefaults instantiates a new AwsInventoryCollectionErrorTracker 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.
NewAWSLambda instantiates a new AWSLambda 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.
NewAWSLambdaAllOf instantiates a new AWSLambdaAllOf 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.
NewAWSLambdaAllOfWithDefaults instantiates a new AWSLambdaAllOf 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.
NewAWSLambdaWithDefaults instantiates a new AWSLambda 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.
NewAxisRange instantiates a new AxisRange 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.
NewAxisRangeWithDefaults instantiates a new AxisRange 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.
NewAzureFunctions instantiates a new AzureFunctions 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.
NewAzureFunctionsWithDefaults instantiates a new AzureFunctions 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.
NewBaseExtractionRuleDefinition instantiates a new BaseExtractionRuleDefinition 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.
NewBaseExtractionRuleDefinitionWithDefaults instantiates a new BaseExtractionRuleDefinition 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.
NewBaselines instantiates a new Baselines 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.
NewBaselinesWithDefaults instantiates a new Baselines 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.
NewBeginAsyncJobResponse instantiates a new BeginAsyncJobResponse 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.
NewBeginAsyncJobResponseWithDefaults instantiates a new BeginAsyncJobResponse 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.
NewBeginBoundedTimeRange instantiates a new BeginBoundedTimeRange 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.
NewBeginBoundedTimeRangeAllOf instantiates a new BeginBoundedTimeRangeAllOf 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.
NewBeginBoundedTimeRangeAllOfWithDefaults instantiates a new BeginBoundedTimeRangeAllOf 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.
NewBeginBoundedTimeRangeWithDefaults instantiates a new BeginBoundedTimeRange 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.
NewBuiltinField instantiates a new BuiltinField 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.
NewBuiltinFieldUsage instantiates a new BuiltinFieldUsage 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.
NewBuiltinFieldUsageAllOf instantiates a new BuiltinFieldUsageAllOf 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.
NewBuiltinFieldUsageAllOfWithDefaults instantiates a new BuiltinFieldUsageAllOf 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.
NewBuiltinFieldUsageWithDefaults instantiates a new BuiltinFieldUsage 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.
NewBuiltinFieldWithDefaults instantiates a new BuiltinField 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.
NewBulkAsyncStatusResponse instantiates a new BulkAsyncStatusResponse 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.
NewBulkAsyncStatusResponseWithDefaults instantiates a new BulkAsyncStatusResponse 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.
NewBulkBeginAsyncJobResponse instantiates a new BulkBeginAsyncJobResponse 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.
NewBulkBeginAsyncJobResponseWithDefaults instantiates a new BulkBeginAsyncJobResponse 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.
NewBulkErrorResponse instantiates a new BulkErrorResponse 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.
NewBulkErrorResponseWithDefaults instantiates a new BulkErrorResponse 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.
NewCalculatorRequest instantiates a new CalculatorRequest 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.
NewCalculatorRequestWithDefaults instantiates a new CalculatorRequest 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.
NewCapabilityDefinition instantiates a new CapabilityDefinition 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.
NewCapabilityDefinitionGroup instantiates a new CapabilityDefinitionGroup 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.
NewCapabilityDefinitionGroupWithDefaults instantiates a new CapabilityDefinitionGroup 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.
NewCapabilityDefinitionWithDefaults instantiates a new CapabilityDefinition 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.
NewCapabilityList instantiates a new CapabilityList 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.
NewCapabilityListWithDefaults instantiates a new CapabilityList 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.
NewCapabilityMap instantiates a new CapabilityMap 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.
NewCapabilityMapWithDefaults instantiates a new CapabilityMap 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.
NewCapacity instantiates a new Capacity 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.
NewCapacityWithDefaults instantiates a new Capacity 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.
NewChangeEmailRequest instantiates a new ChangeEmailRequest 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.
NewChangeEmailRequestWithDefaults instantiates a new ChangeEmailRequest 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.
NewChartDataRequest instantiates a new ChartDataRequest 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.
NewChartDataRequestWithDefaults instantiates a new ChartDataRequest 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.
NewChartDataResult instantiates a new ChartDataResult 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.
NewChartDataResultWithDefaults instantiates a new ChartDataResult 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.
NewCidr instantiates a new Cidr 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.
NewCidrList instantiates a new CidrList 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.
NewCidrListWithDefaults instantiates a new CidrList 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.
NewCidrWithDefaults instantiates a new Cidr 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.
NewCollectionAffectedDueToIngestBudgetTracker instantiates a new CollectionAffectedDueToIngestBudgetTracker 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.
NewCollectionAffectedDueToIngestBudgetTrackerAllOf instantiates a new CollectionAffectedDueToIngestBudgetTrackerAllOf 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.
NewCollectionAffectedDueToIngestBudgetTrackerAllOfWithDefaults instantiates a new CollectionAffectedDueToIngestBudgetTrackerAllOf 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.
NewCollectionAffectedDueToIngestBudgetTrackerWithDefaults instantiates a new CollectionAffectedDueToIngestBudgetTracker 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.
NewCollectionAwsInventoryThrottledTracker instantiates a new CollectionAwsInventoryThrottledTracker 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.
NewCollectionAwsInventoryThrottledTrackerWithDefaults instantiates a new CollectionAwsInventoryThrottledTracker 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.
NewCollectionAwsInventoryUnauthorizedTracker instantiates a new CollectionAwsInventoryUnauthorizedTracker 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.
NewCollectionAwsInventoryUnauthorizedTrackerWithDefaults instantiates a new CollectionAwsInventoryUnauthorizedTracker 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.
NewCollectionAwsMetadataTagsFetchDeniedTracker instantiates a new CollectionAwsMetadataTagsFetchDeniedTracker 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.
NewCollectionAwsMetadataTagsFetchDeniedTrackerWithDefaults instantiates a new CollectionAwsMetadataTagsFetchDeniedTracker 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.
NewCollectionCloudWatchGetStatisticsDeniedTracker instantiates a new CollectionCloudWatchGetStatisticsDeniedTracker 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.
NewCollectionCloudWatchGetStatisticsDeniedTrackerWithDefaults instantiates a new CollectionCloudWatchGetStatisticsDeniedTracker 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.
NewCollectionCloudWatchGetStatisticsThrottledTracker instantiates a new CollectionCloudWatchGetStatisticsThrottledTracker 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.
NewCollectionCloudWatchGetStatisticsThrottledTrackerWithDefaults instantiates a new CollectionCloudWatchGetStatisticsThrottledTracker 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.
NewCollectionCloudWatchListMetricsDeniedTracker instantiates a new CollectionCloudWatchListMetricsDeniedTracker 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.
NewCollectionCloudWatchListMetricsDeniedTrackerAllOf instantiates a new CollectionCloudWatchListMetricsDeniedTrackerAllOf 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.
NewCollectionCloudWatchListMetricsDeniedTrackerAllOfWithDefaults instantiates a new CollectionCloudWatchListMetricsDeniedTrackerAllOf 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.
NewCollectionCloudWatchListMetricsDeniedTrackerWithDefaults instantiates a new CollectionCloudWatchListMetricsDeniedTracker 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.
NewCollectionCloudWatchTagsFetchDeniedTracker instantiates a new CollectionCloudWatchTagsFetchDeniedTracker 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.
NewCollectionCloudWatchTagsFetchDeniedTrackerWithDefaults instantiates a new CollectionCloudWatchTagsFetchDeniedTracker 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.
NewCollectionDockerClientBuildingFailedTracker instantiates a new CollectionDockerClientBuildingFailedTracker 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.
NewCollectionDockerClientBuildingFailedTrackerWithDefaults instantiates a new CollectionDockerClientBuildingFailedTracker 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.
NewCollectionInvalidFilePathTracker instantiates a new CollectionInvalidFilePathTracker 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.
NewCollectionInvalidFilePathTrackerAllOf instantiates a new CollectionInvalidFilePathTrackerAllOf 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.
NewCollectionInvalidFilePathTrackerAllOfWithDefaults instantiates a new CollectionInvalidFilePathTrackerAllOf 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.
NewCollectionInvalidFilePathTrackerWithDefaults instantiates a new CollectionInvalidFilePathTracker 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.
NewCollectionPathAccessDeniedTracker instantiates a new CollectionPathAccessDeniedTracker 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.
NewCollectionPathAccessDeniedTrackerWithDefaults instantiates a new CollectionPathAccessDeniedTracker 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.
NewCollectionRemoteConnectionFailedTracker instantiates a new CollectionRemoteConnectionFailedTracker 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.
NewCollectionRemoteConnectionFailedTrackerWithDefaults instantiates a new CollectionRemoteConnectionFailedTracker 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.
NewCollectionS3AccessDeniedTracker instantiates a new CollectionS3AccessDeniedTracker 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.
NewCollectionS3AccessDeniedTrackerAllOf instantiates a new CollectionS3AccessDeniedTrackerAllOf 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.
NewCollectionS3AccessDeniedTrackerAllOfWithDefaults instantiates a new CollectionS3AccessDeniedTrackerAllOf 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.
NewCollectionS3AccessDeniedTrackerWithDefaults instantiates a new CollectionS3AccessDeniedTracker 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.
NewCollectionS3GetObjectAccessDeniedTracker instantiates a new CollectionS3GetObjectAccessDeniedTracker 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.
NewCollectionS3GetObjectAccessDeniedTrackerWithDefaults instantiates a new CollectionS3GetObjectAccessDeniedTracker 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.
NewCollectionS3InvalidKeyTracker instantiates a new CollectionS3InvalidKeyTracker 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.
NewCollectionS3InvalidKeyTrackerAllOf instantiates a new CollectionS3InvalidKeyTrackerAllOf 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.
NewCollectionS3InvalidKeyTrackerAllOfWithDefaults instantiates a new CollectionS3InvalidKeyTrackerAllOf 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.
NewCollectionS3InvalidKeyTrackerWithDefaults instantiates a new CollectionS3InvalidKeyTracker 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.
NewCollectionS3ListingFailedTracker instantiates a new CollectionS3ListingFailedTracker 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.
NewCollectionS3ListingFailedTrackerAllOf instantiates a new CollectionS3ListingFailedTrackerAllOf 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.
NewCollectionS3ListingFailedTrackerAllOfWithDefaults instantiates a new CollectionS3ListingFailedTrackerAllOf 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.
NewCollectionS3ListingFailedTrackerWithDefaults instantiates a new CollectionS3ListingFailedTracker 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.
NewCollectionS3SlowListingTracker instantiates a new CollectionS3SlowListingTracker 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.
NewCollectionS3SlowListingTrackerAllOf instantiates a new CollectionS3SlowListingTrackerAllOf 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.
NewCollectionS3SlowListingTrackerAllOfWithDefaults instantiates a new CollectionS3SlowListingTrackerAllOf 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.
NewCollectionS3SlowListingTrackerWithDefaults instantiates a new CollectionS3SlowListingTracker 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.
NewCollectionWindowsEventChannelConnectionFailedTracker instantiates a new CollectionWindowsEventChannelConnectionFailedTracker 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.
NewCollectionWindowsEventChannelConnectionFailedTrackerWithDefaults instantiates a new CollectionWindowsEventChannelConnectionFailedTracker 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.
NewCollectionWindowsHostConnectionFailedTracker instantiates a new CollectionWindowsHostConnectionFailedTracker 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.
NewCollectionWindowsHostConnectionFailedTrackerWithDefaults instantiates a new CollectionWindowsHostConnectionFailedTracker 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.
NewCollector instantiates a new Collector 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.
NewCollectorIdentity instantiates a new CollectorIdentity 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.
NewCollectorIdentityWithDefaults instantiates a new CollectorIdentity 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.
NewCollectorLimitApproachingTracker instantiates a new CollectorLimitApproachingTracker 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.
NewCollectorLimitApproachingTrackerWithDefaults instantiates a new CollectorLimitApproachingTracker 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.
NewCollectorRegistrationTokenResponse instantiates a new CollectorRegistrationTokenResponse 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.
NewCollectorRegistrationTokenResponseAllOf instantiates a new CollectorRegistrationTokenResponseAllOf 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.
NewCollectorRegistrationTokenResponseAllOfWithDefaults instantiates a new CollectorRegistrationTokenResponseAllOf 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.
NewCollectorRegistrationTokenResponseWithDefaults instantiates a new CollectorRegistrationTokenResponse 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.
NewCollectorResourceIdentity instantiates a new CollectorResourceIdentity 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.
NewCollectorResourceIdentityWithDefaults instantiates a new CollectorResourceIdentity 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.
NewCollectorWithDefaults instantiates a new Collector 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.
NewColoringRule instantiates a new ColoringRule 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.
NewColoringRuleWithDefaults instantiates a new ColoringRule 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.
NewColoringThreshold instantiates a new ColoringThreshold 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.
NewColoringThresholdWithDefaults instantiates a new ColoringThreshold 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.
NewCompleteLiteralTimeRange instantiates a new CompleteLiteralTimeRange 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.
NewCompleteLiteralTimeRangeAllOf instantiates a new CompleteLiteralTimeRangeAllOf 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.
NewCompleteLiteralTimeRangeAllOfWithDefaults instantiates a new CompleteLiteralTimeRangeAllOf 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.
NewCompleteLiteralTimeRangeWithDefaults instantiates a new CompleteLiteralTimeRange 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.
NewConfidenceScoreResponse instantiates a new ConfidenceScoreResponse 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.
NewConfidenceScoreResponseWithDefaults instantiates a new ConfidenceScoreResponse 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.
NewConfigureSubdomainRequest instantiates a new ConfigureSubdomainRequest 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.
NewConfigureSubdomainRequestWithDefaults instantiates a new ConfigureSubdomainRequest 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.
NewConnection instantiates a new Connection 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.
NewConnectionDefinition instantiates a new ConnectionDefinition 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.
NewConnectionDefinitionWithDefaults instantiates a new ConnectionDefinition 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.
NewConnectionWithDefaults instantiates a new Connection 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.
NewConsumable instantiates a new Consumable 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.
NewConsumableWithDefaults instantiates a new Consumable 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.
NewConsumptionDetails instantiates a new ConsumptionDetails 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.
NewConsumptionDetailsWithDefaults instantiates a new ConsumptionDetails 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.
NewContainerPanel instantiates a new ContainerPanel 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.
NewContainerPanelAllOf instantiates a new ContainerPanelAllOf 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.
NewContainerPanelAllOfWithDefaults instantiates a new ContainerPanelAllOf 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.
NewContainerPanelWithDefaults instantiates a new ContainerPanel 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.
NewContent instantiates a new Content 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.
NewContentAllOf instantiates a new ContentAllOf 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.
NewContentAllOfWithDefaults instantiates a new ContentAllOf 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.
NewContentCopyParams instantiates a new ContentCopyParams 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.
NewContentCopyParamsWithDefaults instantiates a new ContentCopyParams 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.
NewContentList instantiates a new ContentList 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.
NewContentListWithDefaults instantiates a new ContentList 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.
NewContentPath instantiates a new ContentPath 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.
NewContentPathWithDefaults instantiates a new ContentPath 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.
NewContentPermissionAssignment instantiates a new ContentPermissionAssignment 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.
NewContentPermissionAssignmentWithDefaults instantiates a new ContentPermissionAssignment 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.
NewContentPermissionResult instantiates a new ContentPermissionResult 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.
NewContentPermissionResultWithDefaults instantiates a new ContentPermissionResult 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.
NewContentPermissionUpdateRequest instantiates a new ContentPermissionUpdateRequest 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.
NewContentPermissionUpdateRequestWithDefaults instantiates a new ContentPermissionUpdateRequest 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.
NewContentSyncDefinition instantiates a new ContentSyncDefinition 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.
NewContentSyncDefinitionWithDefaults instantiates a new ContentSyncDefinition 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.
NewContentWithDefaults instantiates a new Content 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.
NewContractDetails instantiates a new ContractDetails 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.
NewContractDetailsWithDefaults instantiates a new ContractDetails 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.
NewContractPeriod instantiates a new ContractPeriod 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.
NewContractPeriodWithDefaults instantiates a new ContractPeriod 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.
NewCreateArchiveJobRequest instantiates a new CreateArchiveJobRequest 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.
NewCreateArchiveJobRequestWithDefaults instantiates a new CreateArchiveJobRequest 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.
NewCreatePartitionDefinition instantiates a new CreatePartitionDefinition 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.
NewCreatePartitionDefinitionWithDefaults instantiates a new CreatePartitionDefinition 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.
NewCreateRoleDefinition instantiates a new CreateRoleDefinition 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.
NewCreateRoleDefinitionWithDefaults instantiates a new CreateRoleDefinition 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.
NewCreateScheduledViewDefinition instantiates a new CreateScheduledViewDefinition 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.
NewCreateScheduledViewDefinitionWithDefaults instantiates a new CreateScheduledViewDefinition 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.
NewCreateUserDefinition instantiates a new CreateUserDefinition 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.
NewCreateUserDefinitionWithDefaults instantiates a new CreateUserDefinition 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.
NewCreditsBreakdown instantiates a new CreditsBreakdown 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.
NewCreditsBreakdownWithDefaults instantiates a new CreditsBreakdown 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.
NewCseInsightConfidenceRequest instantiates a new CseInsightConfidenceRequest 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.
NewCseInsightConfidenceRequestWithDefaults instantiates a new CseInsightConfidenceRequest 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.
NewCseSignalNotificationSyncDefinition instantiates a new CseSignalNotificationSyncDefinition 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.
NewCseSignalNotificationSyncDefinitionAllOf instantiates a new CseSignalNotificationSyncDefinitionAllOf 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.
NewCseSignalNotificationSyncDefinitionAllOfWithDefaults instantiates a new CseSignalNotificationSyncDefinitionAllOf 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.
NewCseSignalNotificationSyncDefinitionWithDefaults instantiates a new CseSignalNotificationSyncDefinition 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.
NewCSEWindowsAccessErrorTracker instantiates a new CSEWindowsAccessErrorTracker 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.
NewCSEWindowsAccessErrorTrackerWithDefaults instantiates a new CSEWindowsAccessErrorTracker 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.
NewCSEWindowsErrorAppendingToQueueFilesTracker instantiates a new CSEWindowsErrorAppendingToQueueFilesTracker 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.
NewCSEWindowsErrorAppendingToQueueFilesTrackerWithDefaults instantiates a new CSEWindowsErrorAppendingToQueueFilesTracker 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.
NewCSEWindowsErrorParsingRecordsTracker instantiates a new CSEWindowsErrorParsingRecordsTracker 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.
NewCSEWindowsErrorParsingRecordsTrackerAllOf instantiates a new CSEWindowsErrorParsingRecordsTrackerAllOf 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.
NewCSEWindowsErrorParsingRecordsTrackerAllOfWithDefaults instantiates a new CSEWindowsErrorParsingRecordsTrackerAllOf 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.
NewCSEWindowsErrorParsingRecordsTrackerWithDefaults instantiates a new CSEWindowsErrorParsingRecordsTracker 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.
NewCSEWindowsErrorTracker instantiates a new CSEWindowsErrorTracker 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.
NewCSEWindowsErrorTrackerWithDefaults instantiates a new CSEWindowsErrorTracker 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.
NewCSEWindowsExcessiveBacklogTracker instantiates a new CSEWindowsExcessiveBacklogTracker 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.
NewCSEWindowsExcessiveBacklogTrackerWithDefaults instantiates a new CSEWindowsExcessiveBacklogTracker 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.
NewCSEWindowsExcessiveEventLogMonitorsTracker instantiates a new CSEWindowsExcessiveEventLogMonitorsTracker 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.
NewCSEWindowsExcessiveEventLogMonitorsTrackerWithDefaults instantiates a new CSEWindowsExcessiveEventLogMonitorsTracker 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.
NewCSEWindowsExcessiveFilesPendingUploadTracker instantiates a new CSEWindowsExcessiveFilesPendingUploadTracker 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.
NewCSEWindowsExcessiveFilesPendingUploadTrackerAllOf instantiates a new CSEWindowsExcessiveFilesPendingUploadTrackerAllOf 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.
NewCSEWindowsExcessiveFilesPendingUploadTrackerAllOfWithDefaults instantiates a new CSEWindowsExcessiveFilesPendingUploadTrackerAllOf 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.
NewCSEWindowsExcessiveFilesPendingUploadTrackerWithDefaults instantiates a new CSEWindowsExcessiveFilesPendingUploadTracker 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.
NewCSEWindowsInvalidConfigurationTracker instantiates a new CSEWindowsInvalidConfigurationTracker 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.
NewCSEWindowsInvalidConfigurationTrackerAllOf instantiates a new CSEWindowsInvalidConfigurationTrackerAllOf 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.
NewCSEWindowsInvalidConfigurationTrackerAllOfWithDefaults instantiates a new CSEWindowsInvalidConfigurationTrackerAllOf 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.
NewCSEWindowsInvalidConfigurationTrackerWithDefaults instantiates a new CSEWindowsInvalidConfigurationTracker 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.
NewCSEWindowsInvalidUserPermissionsTracker instantiates a new CSEWindowsInvalidUserPermissionsTracker 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.
NewCSEWindowsInvalidUserPermissionsTrackerAllOf instantiates a new CSEWindowsInvalidUserPermissionsTrackerAllOf 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.
NewCSEWindowsInvalidUserPermissionsTrackerAllOfWithDefaults instantiates a new CSEWindowsInvalidUserPermissionsTrackerAllOf 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.
NewCSEWindowsInvalidUserPermissionsTrackerWithDefaults instantiates a new CSEWindowsInvalidUserPermissionsTracker 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.
NewCSEWindowsOldestRecordTimestampExceedsThresholdTracker instantiates a new CSEWindowsOldestRecordTimestampExceedsThresholdTracker 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.
NewCSEWindowsOldestRecordTimestampExceedsThresholdTrackerWithDefaults instantiates a new CSEWindowsOldestRecordTimestampExceedsThresholdTracker 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.
NewCSEWindowsParsingErrorTracker instantiates a new CSEWindowsParsingErrorTracker 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.
NewCSEWindowsParsingErrorTrackerWithDefaults instantiates a new CSEWindowsParsingErrorTracker 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.
NewCSEWindowsRuntimeErrorTracker instantiates a new CSEWindowsRuntimeErrorTracker 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.
NewCSEWindowsRuntimeErrorTrackerWithDefaults instantiates a new CSEWindowsRuntimeErrorTracker 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.
NewCSEWindowsRuntimeWarningTracker instantiates a new CSEWindowsRuntimeWarningTracker 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.
NewCSEWindowsRuntimeWarningTrackerWithDefaults instantiates a new CSEWindowsRuntimeWarningTracker 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.
NewCSEWindowsSensorOfflineTracker instantiates a new CSEWindowsSensorOfflineTracker 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.
NewCSEWindowsSensorOfflineTrackerAllOf instantiates a new CSEWindowsSensorOfflineTrackerAllOf 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.
NewCSEWindowsSensorOfflineTrackerAllOfWithDefaults instantiates a new CSEWindowsSensorOfflineTrackerAllOf 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.
NewCSEWindowsSensorOfflineTrackerWithDefaults instantiates a new CSEWindowsSensorOfflineTracker 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.
NewCSEWindowsSensorOutOfStorageTracker instantiates a new CSEWindowsSensorOutOfStorageTracker 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.
NewCSEWindowsSensorOutOfStorageTrackerWithDefaults instantiates a new CSEWindowsSensorOutOfStorageTracker 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.
NewCSEWindowsStorageLimitApproachingTracker instantiates a new CSEWindowsStorageLimitApproachingTracker 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.
NewCSEWindowsStorageLimitApproachingTrackerWithDefaults instantiates a new CSEWindowsStorageLimitApproachingTracker 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.
NewCSEWindowsStorageLimitExceededTracker instantiates a new CSEWindowsStorageLimitExceededTracker 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.
NewCSEWindowsStorageLimitExceededTrackerAllOf instantiates a new CSEWindowsStorageLimitExceededTrackerAllOf 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.
NewCSEWindowsStorageLimitExceededTrackerAllOfWithDefaults instantiates a new CSEWindowsStorageLimitExceededTrackerAllOf 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.
NewCSEWindowsStorageLimitExceededTrackerWithDefaults instantiates a new CSEWindowsStorageLimitExceededTracker 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.
NewCSEWindowsWriteQueueFilesToSensorDirectoryFailedTracker instantiates a new CSEWindowsWriteQueueFilesToSensorDirectoryFailedTracker 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.
NewCSEWindowsWriteQueueFilesToSensorDirectoryFailedTrackerWithDefaults instantiates a new CSEWindowsWriteQueueFilesToSensorDirectoryFailedTracker 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.
NewCsvVariableSourceDefinition instantiates a new CsvVariableSourceDefinition 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.
NewCsvVariableSourceDefinitionAllOf instantiates a new CsvVariableSourceDefinitionAllOf 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.
NewCsvVariableSourceDefinitionAllOfWithDefaults instantiates a new CsvVariableSourceDefinitionAllOf 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.
NewCsvVariableSourceDefinitionWithDefaults instantiates a new CsvVariableSourceDefinition 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.
NewCurrentBillingPeriod instantiates a new CurrentBillingPeriod 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.
NewCurrentBillingPeriodWithDefaults instantiates a new CurrentBillingPeriod 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.
NewCurrentPlan instantiates a new CurrentPlan 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.
NewCurrentPlanWithDefaults instantiates a new CurrentPlan 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.
NewCustomField instantiates a new CustomField 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.
NewCustomFieldAllOf instantiates a new CustomFieldAllOf 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.
NewCustomFieldAllOfWithDefaults instantiates a new CustomFieldAllOf 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.
NewCustomFieldUsage instantiates a new CustomFieldUsage 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.
NewCustomFieldUsageAllOf instantiates a new CustomFieldUsageAllOf 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.
NewCustomFieldUsageAllOfWithDefaults instantiates a new CustomFieldUsageAllOf 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.
NewCustomFieldUsageWithDefaults instantiates a new CustomFieldUsage 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.
NewCustomFieldWithDefaults instantiates a new CustomField 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.
NewDashboard instantiates a new Dashboard 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.
NewDashboardAllOf instantiates a new DashboardAllOf 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.
NewDashboardAllOfWithDefaults instantiates a new DashboardAllOf 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.
NewDashboardRequest instantiates a new DashboardRequest 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.
NewDashboardRequestWithDefaults instantiates a new DashboardRequest 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.
NewDashboardSearchStatus instantiates a new DashboardSearchStatus 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.
NewDashboardSearchStatusWithDefaults instantiates a new DashboardSearchStatus 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.
NewDashboardSyncDefinition instantiates a new DashboardSyncDefinition 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.
NewDashboardSyncDefinitionAllOf instantiates a new DashboardSyncDefinitionAllOf 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.
NewDashboardSyncDefinitionAllOfWithDefaults instantiates a new DashboardSyncDefinitionAllOf 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.
NewDashboardSyncDefinitionWithDefaults instantiates a new DashboardSyncDefinition 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.
NewDashboardV2SyncDefinition instantiates a new DashboardV2SyncDefinition 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.
NewDashboardV2SyncDefinitionWithDefaults instantiates a new DashboardV2SyncDefinition 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.
NewDashboardWithDefaults instantiates a new Dashboard 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.
NewDataAccessLevelPolicy instantiates a new DataAccessLevelPolicy 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.
NewDataAccessLevelPolicyWithDefaults instantiates a new DataAccessLevelPolicy 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.
NewDatadog instantiates a new Datadog 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.
NewDatadogWithDefaults instantiates a new Datadog 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.
NewDataIngestAffectedTracker instantiates a new DataIngestAffectedTracker 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.
NewDataIngestAffectedTrackerWithDefaults instantiates a new DataIngestAffectedTracker 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.
NewDataPoint instantiates a new DataPoint 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.
NewDataPoints instantiates a new DataPoints 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.
NewDataPointsWithDefaults instantiates a new DataPoints 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.
NewDataPointWithDefaults instantiates a new DataPoint 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.
NewDataValue instantiates a new DataValue 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.
NewDataValueWithDefaults instantiates a new DataValue 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.
NewDimensionKeyValue instantiates a new DimensionKeyValue 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.
NewDimensionKeyValueWithDefaults instantiates a new DimensionKeyValue 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.
NewDimensionTransformation instantiates a new DimensionTransformation 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.
NewDimensionTransformationWithDefaults instantiates a new DimensionTransformation 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.
NewDisableMfaRequest instantiates a new DisableMfaRequest 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.
NewDisableMfaRequestWithDefaults instantiates a new DisableMfaRequest 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.
NewDisableMonitorResponse instantiates a new DisableMonitorResponse 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.
NewDisableMonitorResponseWithDefaults instantiates a new DisableMonitorResponse 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.
NewDisableMonitorWarning instantiates a new DisableMonitorWarning 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.
NewDisableMonitorWarningWithDefaults instantiates a new DisableMonitorWarning 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.
NewDroppedField instantiates a new DroppedField 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.
NewDroppedFieldWithDefaults instantiates a new DroppedField 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.
NewDynamicRule instantiates a new DynamicRule 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.
NewDynamicRuleAllOf instantiates a new DynamicRuleAllOf 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.
NewDynamicRuleAllOfWithDefaults instantiates a new DynamicRuleAllOf 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.
NewDynamicRuleDefinition instantiates a new DynamicRuleDefinition 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.
NewDynamicRuleDefinitionWithDefaults instantiates a new DynamicRuleDefinition 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.
NewDynamicRuleWithDefaults instantiates a new DynamicRule 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.
NewEmail instantiates a new Email 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.
NewEmailAllOf instantiates a new EmailAllOf 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.
NewEmailAllOfWithDefaults instantiates a new EmailAllOf 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.
NewEmailSearchNotificationSyncDefinition instantiates a new EmailSearchNotificationSyncDefinition 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.
NewEmailSearchNotificationSyncDefinitionAllOf instantiates a new EmailSearchNotificationSyncDefinitionAllOf 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.
NewEmailSearchNotificationSyncDefinitionAllOfWithDefaults instantiates a new EmailSearchNotificationSyncDefinitionAllOf 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.
NewEmailSearchNotificationSyncDefinitionWithDefaults instantiates a new EmailSearchNotificationSyncDefinition 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.
NewEmailWithDefaults instantiates a new Email 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.
NewEntitlementConsumption instantiates a new EntitlementConsumption 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.
NewEntitlementConsumptionWithDefaults instantiates a new EntitlementConsumption 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.
NewEntitlements instantiates a new Entitlements 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.
NewEntitlementsWithDefaults instantiates a new Entitlements 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.
NewEpochTimeRangeBoundary instantiates a new EpochTimeRangeBoundary 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.
NewEpochTimeRangeBoundaryAllOf instantiates a new EpochTimeRangeBoundaryAllOf 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.
NewEpochTimeRangeBoundaryAllOfWithDefaults instantiates a new EpochTimeRangeBoundaryAllOf 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.
NewEpochTimeRangeBoundaryWithDefaults instantiates a new EpochTimeRangeBoundary 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.
NewErrorDescription instantiates a new ErrorDescription 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.
NewErrorDescriptionWithDefaults instantiates a new ErrorDescription 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.
NewErrorResponse instantiates a new ErrorResponse 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.
NewErrorResponseWithDefaults instantiates a new ErrorResponse 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.
NewEstimatedUsageDetails instantiates a new EstimatedUsageDetails 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.
NewEstimatedUsageDetailsWithDefaults instantiates a new EstimatedUsageDetails 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.
NewEstimatedUsageDetailsWithTier instantiates a new EstimatedUsageDetailsWithTier 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.
NewEstimatedUsageDetailsWithTierWithDefaults instantiates a new EstimatedUsageDetailsWithTier 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.
NewEventsOfInterestScatterPanel instantiates a new EventsOfInterestScatterPanel 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.
NewEventsOfInterestScatterPanelWithDefaults instantiates a new EventsOfInterestScatterPanel 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.
NewExportableLookupTableInfo instantiates a new ExportableLookupTableInfo 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.
NewExportableLookupTableInfoWithDefaults instantiates a new ExportableLookupTableInfo 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.
NewExtractionRule instantiates a new ExtractionRule 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.
NewExtractionRuleAllOf instantiates a new ExtractionRuleAllOf 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.
NewExtractionRuleAllOfWithDefaults instantiates a new ExtractionRuleAllOf 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.
NewExtractionRuleDefinition instantiates a new ExtractionRuleDefinition 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.
NewExtractionRuleDefinitionAllOf instantiates a new ExtractionRuleDefinitionAllOf 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.
NewExtractionRuleDefinitionAllOfWithDefaults instantiates a new ExtractionRuleDefinitionAllOf 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.
NewExtractionRuleDefinitionWithDefaults instantiates a new ExtractionRuleDefinition 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.
NewExtractionRuleWithDefaults instantiates a new ExtractionRule 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.
NewExtraDetails instantiates a new ExtraDetails 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.
NewExtraDetailsWithDefaults instantiates a new ExtraDetails 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.
NewFieldName instantiates a new FieldName 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.
NewFieldNameWithDefaults instantiates a new FieldName 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.
NewFieldQuotaUsage instantiates a new FieldQuotaUsage 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.
NewFieldQuotaUsageWithDefaults instantiates a new FieldQuotaUsage 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.
NewFileCollectionErrorTracker instantiates a new FileCollectionErrorTracker 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.
NewFileCollectionErrorTrackerWithDefaults instantiates a new FileCollectionErrorTracker 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.
NewFolder instantiates a new Folder 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.
NewFolderAllOf instantiates a new FolderAllOf 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.
NewFolderAllOfWithDefaults instantiates a new FolderAllOf 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.
NewFolderDefinition instantiates a new FolderDefinition 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.
NewFolderDefinitionWithDefaults instantiates a new FolderDefinition 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.
NewFolderSyncDefinition instantiates a new FolderSyncDefinition 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.
NewFolderSyncDefinitionAllOf instantiates a new FolderSyncDefinitionAllOf 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.
NewFolderSyncDefinitionAllOfWithDefaults instantiates a new FolderSyncDefinitionAllOf 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.
NewFolderSyncDefinitionWithDefaults instantiates a new FolderSyncDefinition 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.
NewFolderWithDefaults instantiates a new Folder 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.
NewGenerateReportRequest instantiates a new GenerateReportRequest 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.
NewGenerateReportRequestWithDefaults instantiates a new GenerateReportRequest 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.
NewGetCollectorsUsageResponse instantiates a new GetCollectorsUsageResponse 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.
NewGetCollectorsUsageResponseWithDefaults instantiates a new GetCollectorsUsageResponse 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.
NewGetSourcesUsageResponse instantiates a new GetSourcesUsageResponse 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.
NewGetSourcesUsageResponseWithDefaults instantiates a new GetSourcesUsageResponse 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.
NewGrid instantiates a new Grid 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.
NewGridWithDefaults instantiates a new Grid 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.
NewGroupFieldsRequest instantiates a new GroupFieldsRequest 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.
NewGroupFieldsRequestWithDefaults instantiates a new GroupFieldsRequest 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.
NewGroupFieldsResponse instantiates a new GroupFieldsResponse 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.
NewGroupFieldsResponseWithDefaults instantiates a new GroupFieldsResponse 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.
NewHeader instantiates a new Header 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.
NewHeaderWithDefaults instantiates a new Header 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.
NewHealthEvent instantiates a new HealthEvent 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.
NewHealthEventWithDefaults instantiates a new HealthEvent 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.
NewHighCardinalityDimensionDroppedTracker instantiates a new HighCardinalityDimensionDroppedTracker 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.
NewHighCardinalityDimensionDroppedTrackerAllOf instantiates a new HighCardinalityDimensionDroppedTrackerAllOf 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.
NewHighCardinalityDimensionDroppedTrackerAllOfWithDefaults instantiates a new HighCardinalityDimensionDroppedTrackerAllOf 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.
NewHighCardinalityDimensionDroppedTrackerWithDefaults instantiates a new HighCardinalityDimensionDroppedTracker 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.
NewHipChat instantiates a new HipChat 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.
NewHipChatWithDefaults instantiates a new HipChat 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.
NewIngestBudget instantiates a new IngestBudget 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.
NewIngestBudgetAllOf instantiates a new IngestBudgetAllOf 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.
NewIngestBudgetAllOfWithDefaults instantiates a new IngestBudgetAllOf 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.
NewIngestBudgetDefinition instantiates a new IngestBudgetDefinition 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.
NewIngestBudgetDefinitionV2 instantiates a new IngestBudgetDefinitionV2 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.
NewIngestBudgetDefinitionV2WithDefaults instantiates a new IngestBudgetDefinitionV2 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.
NewIngestBudgetDefinitionWithDefaults instantiates a new IngestBudgetDefinition 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.
NewIngestBudgetExceededTracker instantiates a new IngestBudgetExceededTracker 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.
NewIngestBudgetExceededTrackerWithDefaults instantiates a new IngestBudgetExceededTracker 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.
NewIngestBudgetResourceIdentity instantiates a new IngestBudgetResourceIdentity 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.
NewIngestBudgetResourceIdentityAllOf instantiates a new IngestBudgetResourceIdentityAllOf 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.
NewIngestBudgetResourceIdentityAllOfWithDefaults instantiates a new IngestBudgetResourceIdentityAllOf 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.
NewIngestBudgetResourceIdentityWithDefaults instantiates a new IngestBudgetResourceIdentity 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.
NewIngestBudgetV2 instantiates a new IngestBudgetV2 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.
NewIngestBudgetV2AllOf instantiates a new IngestBudgetV2AllOf 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.
NewIngestBudgetV2AllOfWithDefaults instantiates a new IngestBudgetV2AllOf 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.
NewIngestBudgetV2WithDefaults instantiates a new IngestBudgetV2 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.
NewIngestBudgetWithDefaults instantiates a new IngestBudget 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.
NewIngestThrottlingTracker instantiates a new IngestThrottlingTracker 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.
NewIngestThrottlingTrackerAllOf instantiates a new IngestThrottlingTrackerAllOf 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.
NewIngestThrottlingTrackerAllOfWithDefaults instantiates a new IngestThrottlingTrackerAllOf 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.
NewIngestThrottlingTrackerWithDefaults instantiates a new IngestThrottlingTracker 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.
NewInstalledCollectorOfflineTracker instantiates a new InstalledCollectorOfflineTracker 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.
NewInstalledCollectorOfflineTrackerAllOf instantiates a new InstalledCollectorOfflineTrackerAllOf 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.
NewInstalledCollectorOfflineTrackerAllOfWithDefaults instantiates a new InstalledCollectorOfflineTrackerAllOf 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.
NewInstalledCollectorOfflineTrackerWithDefaults instantiates a new InstalledCollectorOfflineTracker 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.
NewIso8601TimeRangeBoundary instantiates a new Iso8601TimeRangeBoundary 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.
NewIso8601TimeRangeBoundaryAllOf instantiates a new Iso8601TimeRangeBoundaryAllOf 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.
NewIso8601TimeRangeBoundaryAllOfWithDefaults instantiates a new Iso8601TimeRangeBoundaryAllOf 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.
NewIso8601TimeRangeBoundaryWithDefaults instantiates a new Iso8601TimeRangeBoundary 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.
NewJira instantiates a new Jira 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.
NewJiraWithDefaults instantiates a new Jira 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.
NewKeyValuePair instantiates a new KeyValuePair 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.
NewKeyValuePairWithDefaults instantiates a new KeyValuePair 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.
NewLayout instantiates a new Layout 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.
NewLayoutStructure instantiates a new LayoutStructure 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.
NewLayoutStructureWithDefaults instantiates a new LayoutStructure 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.
NewLayoutWithDefaults instantiates a new Layout 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.
NewLinkedDashboard instantiates a new LinkedDashboard 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.
NewLinkedDashboardWithDefaults instantiates a new LinkedDashboard 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.
NewListAccessKeysResult instantiates a new ListAccessKeysResult 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.
NewListAccessKeysResultWithDefaults instantiates a new ListAccessKeysResult 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.
NewListAppsResult instantiates a new ListAppsResult 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.
NewListAppsResultWithDefaults instantiates a new ListAppsResult 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.
NewListArchiveJobsCount instantiates a new ListArchiveJobsCount 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.
NewListArchiveJobsCountWithDefaults instantiates a new ListArchiveJobsCount 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.
NewListArchiveJobsResponse instantiates a new ListArchiveJobsResponse 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.
NewListArchiveJobsResponseWithDefaults instantiates a new ListArchiveJobsResponse 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.
NewListBuiltinFieldsResponse instantiates a new ListBuiltinFieldsResponse 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.
NewListBuiltinFieldsResponseWithDefaults instantiates a new ListBuiltinFieldsResponse 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.
NewListBuiltinFieldsUsageResponse instantiates a new ListBuiltinFieldsUsageResponse 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.
NewListBuiltinFieldsUsageResponseWithDefaults instantiates a new ListBuiltinFieldsUsageResponse 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.
NewListCollectorIdentitiesResponse instantiates a new ListCollectorIdentitiesResponse 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.
NewListCollectorIdentitiesResponseWithDefaults instantiates a new ListCollectorIdentitiesResponse 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.
NewListConnectionsResponse instantiates a new ListConnectionsResponse 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.
NewListConnectionsResponseWithDefaults instantiates a new ListConnectionsResponse 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.
NewListCustomFieldsResponse instantiates a new ListCustomFieldsResponse 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.
NewListCustomFieldsResponseWithDefaults instantiates a new ListCustomFieldsResponse 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.
NewListCustomFieldsUsageResponse instantiates a new ListCustomFieldsUsageResponse 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.
NewListCustomFieldsUsageResponseWithDefaults instantiates a new ListCustomFieldsUsageResponse 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.
NewListDroppedFieldsResponse instantiates a new ListDroppedFieldsResponse 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.
NewListDroppedFieldsResponseWithDefaults instantiates a new ListDroppedFieldsResponse 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.
NewListDynamicRulesResponse instantiates a new ListDynamicRulesResponse 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.
NewListDynamicRulesResponseWithDefaults instantiates a new ListDynamicRulesResponse 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.
NewListExtractionRulesResponse instantiates a new ListExtractionRulesResponse 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.
NewListExtractionRulesResponseWithDefaults instantiates a new ListExtractionRulesResponse 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.
NewListFieldNamesResponse instantiates a new ListFieldNamesResponse 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.
NewListFieldNamesResponseWithDefaults instantiates a new ListFieldNamesResponse 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.
NewListHealthEventResponse instantiates a new ListHealthEventResponse 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.
NewListHealthEventResponseWithDefaults instantiates a new ListHealthEventResponse 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.
NewListIngestBudgetsResponse instantiates a new ListIngestBudgetsResponse 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.
NewListIngestBudgetsResponseV2 instantiates a new ListIngestBudgetsResponseV2 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.
NewListIngestBudgetsResponseV2WithDefaults instantiates a new ListIngestBudgetsResponseV2 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.
NewListIngestBudgetsResponseWithDefaults instantiates a new ListIngestBudgetsResponse 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.
NewListPartitionsResponse instantiates a new ListPartitionsResponse 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.
NewListPartitionsResponseWithDefaults instantiates a new ListPartitionsResponse 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.
NewListRoleModelsResponse instantiates a new ListRoleModelsResponse 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.
NewListRoleModelsResponseWithDefaults instantiates a new ListRoleModelsResponse 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.
NewListScheduledViewsResponse instantiates a new ListScheduledViewsResponse 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.
NewListScheduledViewsResponseWithDefaults instantiates a new ListScheduledViewsResponse 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.
NewListTokensBaseResponse instantiates a new ListTokensBaseResponse 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.
NewListTokensBaseResponseWithDefaults instantiates a new ListTokensBaseResponse 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.
NewListUserId instantiates a new ListUserId 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.
NewListUserIdWithDefaults instantiates a new ListUserId 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.
NewListUserModelsResponse instantiates a new ListUserModelsResponse 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.
NewListUserModelsResponseWithDefaults instantiates a new ListUserModelsResponse 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.
NewLiteralTimeRangeBoundary instantiates a new LiteralTimeRangeBoundary 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.
NewLiteralTimeRangeBoundaryAllOf instantiates a new LiteralTimeRangeBoundaryAllOf 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.
NewLiteralTimeRangeBoundaryAllOfWithDefaults instantiates a new LiteralTimeRangeBoundaryAllOf 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.
NewLiteralTimeRangeBoundaryWithDefaults instantiates a new LiteralTimeRangeBoundary 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.
NewLogQueryVariableSourceDefinition instantiates a new LogQueryVariableSourceDefinition 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.
NewLogQueryVariableSourceDefinitionAllOf instantiates a new LogQueryVariableSourceDefinitionAllOf 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.
NewLogQueryVariableSourceDefinitionAllOfWithDefaults instantiates a new LogQueryVariableSourceDefinitionAllOf 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.
NewLogQueryVariableSourceDefinitionWithDefaults instantiates a new LogQueryVariableSourceDefinition 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.
NewLogSearchEstimatedUsageByTierDefinition instantiates a new LogSearchEstimatedUsageByTierDefinition 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.
NewLogSearchEstimatedUsageByTierDefinitionAllOf instantiates a new LogSearchEstimatedUsageByTierDefinitionAllOf 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.
NewLogSearchEstimatedUsageByTierDefinitionAllOfWithDefaults instantiates a new LogSearchEstimatedUsageByTierDefinitionAllOf 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.
NewLogSearchEstimatedUsageByTierDefinitionWithDefaults instantiates a new LogSearchEstimatedUsageByTierDefinition 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.
NewLogSearchEstimatedUsageDefinition instantiates a new LogSearchEstimatedUsageDefinition 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.
NewLogSearchEstimatedUsageDefinitionAllOf instantiates a new LogSearchEstimatedUsageDefinitionAllOf 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.
NewLogSearchEstimatedUsageDefinitionAllOfWithDefaults instantiates a new LogSearchEstimatedUsageDefinitionAllOf 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.
NewLogSearchEstimatedUsageDefinitionWithDefaults instantiates a new LogSearchEstimatedUsageDefinition 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.
NewLogSearchEstimatedUsageRequest instantiates a new LogSearchEstimatedUsageRequest 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.
NewLogSearchEstimatedUsageRequestAllOf instantiates a new LogSearchEstimatedUsageRequestAllOf 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.
NewLogSearchEstimatedUsageRequestAllOfWithDefaults instantiates a new LogSearchEstimatedUsageRequestAllOf 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.
NewLogSearchEstimatedUsageRequestV2 instantiates a new LogSearchEstimatedUsageRequestV2 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.
NewLogSearchEstimatedUsageRequestV2WithDefaults instantiates a new LogSearchEstimatedUsageRequestV2 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.
NewLogSearchEstimatedUsageRequestWithDefaults instantiates a new LogSearchEstimatedUsageRequest 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.
NewLogSearchQuery instantiates a new LogSearchQuery 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.
NewLogSearchQueryTimeRangeBase instantiates a new LogSearchQueryTimeRangeBase 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.
NewLogSearchQueryTimeRangeBaseAllOf instantiates a new LogSearchQueryTimeRangeBaseAllOf 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.
NewLogSearchQueryTimeRangeBaseAllOfWithDefaults instantiates a new LogSearchQueryTimeRangeBaseAllOf 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.
NewLogSearchQueryTimeRangeBaseExceptParsingMode instantiates a new LogSearchQueryTimeRangeBaseExceptParsingMode 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.
NewLogSearchQueryTimeRangeBaseExceptParsingModeWithDefaults instantiates a new LogSearchQueryTimeRangeBaseExceptParsingMode 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.
NewLogSearchQueryTimeRangeBaseWithDefaults instantiates a new LogSearchQueryTimeRangeBase 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.
NewLogSearchQueryWithDefaults instantiates a new LogSearchQuery 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.
NewLogsMissingDataCondition instantiates a new LogsMissingDataCondition 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.
NewLogsMissingDataConditionAllOf instantiates a new LogsMissingDataConditionAllOf 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.
NewLogsMissingDataConditionAllOfWithDefaults instantiates a new LogsMissingDataConditionAllOf 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.
NewLogsMissingDataConditionWithDefaults instantiates a new LogsMissingDataCondition 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.
NewLogsOutlier instantiates a new LogsOutlier 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.
NewLogsOutlierCondition instantiates a new LogsOutlierCondition 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.
NewLogsOutlierConditionAllOf instantiates a new LogsOutlierConditionAllOf 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.
NewLogsOutlierConditionAllOfWithDefaults instantiates a new LogsOutlierConditionAllOf 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.
NewLogsOutlierConditionWithDefaults instantiates a new LogsOutlierCondition 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.
NewLogsOutlierWithDefaults instantiates a new LogsOutlier 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.
NewLogsStaticCondition instantiates a new LogsStaticCondition 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.
NewLogsStaticConditionAllOf instantiates a new LogsStaticConditionAllOf 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.
NewLogsStaticConditionAllOfWithDefaults instantiates a new LogsStaticConditionAllOf 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.
NewLogsStaticConditionWithDefaults instantiates a new LogsStaticCondition 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.
NewLogsToMetricsRuleDisabledTracker instantiates a new LogsToMetricsRuleDisabledTracker 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.
NewLogsToMetricsRuleDisabledTrackerWithDefaults instantiates a new LogsToMetricsRuleDisabledTracker 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.
NewLogsToMetricsRuleIdentity instantiates a new LogsToMetricsRuleIdentity 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.
NewLogsToMetricsRuleIdentityWithDefaults instantiates a new LogsToMetricsRuleIdentity 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.
NewLookupAsyncJobStatus instantiates a new LookupAsyncJobStatus 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.
NewLookupAsyncJobStatusWithDefaults instantiates a new LookupAsyncJobStatus 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.
NewLookupPreviewData instantiates a new LookupPreviewData 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.
NewLookupPreviewDataWithDefaults instantiates a new LookupPreviewData 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.
NewLookupRequestToken instantiates a new LookupRequestToken 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.
NewLookupRequestTokenWithDefaults instantiates a new LookupRequestToken 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.
NewLookupTable instantiates a new LookupTable 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.
NewLookupTableAllOf instantiates a new LookupTableAllOf 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.
NewLookupTableAllOfWithDefaults instantiates a new LookupTableAllOf 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.
NewLookupTableDefinition instantiates a new LookupTableDefinition 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.
NewLookupTableDefinitionAllOf instantiates a new LookupTableDefinitionAllOf 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.
NewLookupTableDefinitionAllOfWithDefaults instantiates a new LookupTableDefinitionAllOf 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.
NewLookupTableDefinitionWithDefaults instantiates a new LookupTableDefinition 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.
NewLookupTableField instantiates a new LookupTableField 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.
NewLookupTableFieldWithDefaults instantiates a new LookupTableField 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.
NewLookupTablesLimits instantiates a new LookupTablesLimits 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.
NewLookupTablesLimitsWithDefaults instantiates a new LookupTablesLimits 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.
NewLookupTableSyncDefinition instantiates a new LookupTableSyncDefinition 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.
NewLookupTableSyncDefinitionWithDefaults instantiates a new LookupTableSyncDefinition 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.
NewLookupTableWithDefaults instantiates a new LookupTable 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.
NewLookupUpdateDefinition instantiates a new LookupUpdateDefinition 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.
NewLookupUpdateDefinitionWithDefaults instantiates a new LookupUpdateDefinition 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.
NewMaxUserSessionTimeoutPolicy instantiates a new MaxUserSessionTimeoutPolicy 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.
NewMaxUserSessionTimeoutPolicyWithDefaults instantiates a new MaxUserSessionTimeoutPolicy 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.
NewMetadata instantiates a new Metadata 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.
NewMetadataModel instantiates a new MetadataModel 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.
NewMetadataModelWithDefaults instantiates a new MetadataModel 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.
NewMetadataVariableSourceDefinition instantiates a new MetadataVariableSourceDefinition 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.
NewMetadataVariableSourceDefinitionAllOf instantiates a new MetadataVariableSourceDefinitionAllOf 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.
NewMetadataVariableSourceDefinitionAllOfWithDefaults instantiates a new MetadataVariableSourceDefinitionAllOf 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.
NewMetadataVariableSourceDefinitionWithDefaults instantiates a new MetadataVariableSourceDefinition 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.
NewMetadataWithDefaults instantiates a new Metadata 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.
NewMetadataWithUserInfo instantiates a new MetadataWithUserInfo 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.
NewMetadataWithUserInfoWithDefaults instantiates a new MetadataWithUserInfo 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.
NewMetricDefinition instantiates a new MetricDefinition 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.
NewMetricDefinitionWithDefaults instantiates a new MetricDefinition 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.
NewMetricsCardinalityLimitExceededTracker instantiates a new MetricsCardinalityLimitExceededTracker 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.
NewMetricsCardinalityLimitExceededTrackerAllOf instantiates a new MetricsCardinalityLimitExceededTrackerAllOf 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.
NewMetricsCardinalityLimitExceededTrackerAllOfWithDefaults instantiates a new MetricsCardinalityLimitExceededTrackerAllOf 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.
NewMetricsCardinalityLimitExceededTrackerWithDefaults instantiates a new MetricsCardinalityLimitExceededTracker 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.
NewMetricsFilter instantiates a new MetricsFilter 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.
NewMetricsFilterWithDefaults instantiates a new MetricsFilter 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.
NewMetricsHighCardinalityDetectedTracker instantiates a new MetricsHighCardinalityDetectedTracker 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.
NewMetricsHighCardinalityDetectedTrackerAllOf instantiates a new MetricsHighCardinalityDetectedTrackerAllOf 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.
NewMetricsHighCardinalityDetectedTrackerAllOfWithDefaults instantiates a new MetricsHighCardinalityDetectedTrackerAllOf 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.
NewMetricsHighCardinalityDetectedTrackerWithDefaults instantiates a new MetricsHighCardinalityDetectedTracker 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.
NewMetricsMetadataKeyLengthLimitExceeded instantiates a new MetricsMetadataKeyLengthLimitExceeded 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.
NewMetricsMetadataKeyLengthLimitExceededTracker instantiates a new MetricsMetadataKeyLengthLimitExceededTracker 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.
NewMetricsMetadataKeyLengthLimitExceededTrackerWithDefaults instantiates a new MetricsMetadataKeyLengthLimitExceededTracker 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.
NewMetricsMetadataKeyLengthLimitExceededWithDefaults instantiates a new MetricsMetadataKeyLengthLimitExceeded 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.
NewMetricsMetadataKeyValuePairsLimitExceeded instantiates a new MetricsMetadataKeyValuePairsLimitExceeded 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.
NewMetricsMetadataKeyValuePairsLimitExceededTracker instantiates a new MetricsMetadataKeyValuePairsLimitExceededTracker 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.
NewMetricsMetadataKeyValuePairsLimitExceededTrackerWithDefaults instantiates a new MetricsMetadataKeyValuePairsLimitExceededTracker 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.
NewMetricsMetadataKeyValuePairsLimitExceededWithDefaults instantiates a new MetricsMetadataKeyValuePairsLimitExceeded 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.
NewMetricsMetadataLimitsExceededTracker instantiates a new MetricsMetadataLimitsExceededTracker 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.
NewMetricsMetadataLimitsExceededTrackerWithDefaults instantiates a new MetricsMetadataLimitsExceededTracker 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.
NewMetricsMetadataTotalMetadataSizeLimitExceeded instantiates a new MetricsMetadataTotalMetadataSizeLimitExceeded 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.
NewMetricsMetadataTotalMetadataSizeLimitExceededTracker instantiates a new MetricsMetadataTotalMetadataSizeLimitExceededTracker 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.
NewMetricsMetadataTotalMetadataSizeLimitExceededTrackerWithDefaults instantiates a new MetricsMetadataTotalMetadataSizeLimitExceededTracker 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.
NewMetricsMetadataTotalMetadataSizeLimitExceededWithDefaults instantiates a new MetricsMetadataTotalMetadataSizeLimitExceeded 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.
NewMetricsMetadataValueLengthLimitExceeded instantiates a new MetricsMetadataValueLengthLimitExceeded 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.
NewMetricsMetadataValueLengthLimitExceededTracker instantiates a new MetricsMetadataValueLengthLimitExceededTracker 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.
NewMetricsMetadataValueLengthLimitExceededTrackerWithDefaults instantiates a new MetricsMetadataValueLengthLimitExceededTracker 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.
NewMetricsMetadataValueLengthLimitExceededWithDefaults instantiates a new MetricsMetadataValueLengthLimitExceeded 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.
NewMetricsMissingDataCondition instantiates a new MetricsMissingDataCondition 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.
NewMetricsMissingDataConditionAllOf instantiates a new MetricsMissingDataConditionAllOf 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.
NewMetricsMissingDataConditionAllOfWithDefaults instantiates a new MetricsMissingDataConditionAllOf 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.
NewMetricsMissingDataConditionWithDefaults instantiates a new MetricsMissingDataCondition 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.
NewMetricsOutlier instantiates a new MetricsOutlier 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.
NewMetricsOutlierCondition instantiates a new MetricsOutlierCondition 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.
NewMetricsOutlierConditionAllOf instantiates a new MetricsOutlierConditionAllOf 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.
NewMetricsOutlierConditionAllOfWithDefaults instantiates a new MetricsOutlierConditionAllOf 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.
NewMetricsOutlierConditionWithDefaults instantiates a new MetricsOutlierCondition 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.
NewMetricsOutlierWithDefaults instantiates a new MetricsOutlier 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.
NewMetricsQueryData instantiates a new MetricsQueryData 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.
NewMetricsQueryDataWithDefaults instantiates a new MetricsQueryData 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.
NewMetricsQueryRequest instantiates a new MetricsQueryRequest 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.
NewMetricsQueryRequestWithDefaults instantiates a new MetricsQueryRequest 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.
NewMetricsQueryResponse instantiates a new MetricsQueryResponse 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.
NewMetricsQueryResponseWithDefaults instantiates a new MetricsQueryResponse 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.
NewMetricsQueryRow instantiates a new MetricsQueryRow 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.
NewMetricsQueryRowWithDefaults instantiates a new MetricsQueryRow 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.
NewMetricsQuerySyncDefinition instantiates a new MetricsQuerySyncDefinition 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.
NewMetricsQuerySyncDefinitionWithDefaults instantiates a new MetricsQuerySyncDefinition 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.
NewMetricsSavedSearchQuerySyncDefinition instantiates a new MetricsSavedSearchQuerySyncDefinition 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.
NewMetricsSavedSearchQuerySyncDefinitionWithDefaults instantiates a new MetricsSavedSearchQuerySyncDefinition 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.
NewMetricsSavedSearchSyncDefinition instantiates a new MetricsSavedSearchSyncDefinition 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.
NewMetricsSavedSearchSyncDefinitionAllOf instantiates a new MetricsSavedSearchSyncDefinitionAllOf 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.
NewMetricsSavedSearchSyncDefinitionAllOfWithDefaults instantiates a new MetricsSavedSearchSyncDefinitionAllOf 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.
NewMetricsSavedSearchSyncDefinitionWithDefaults instantiates a new MetricsSavedSearchSyncDefinition 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.
NewMetricsSearchInstance instantiates a new MetricsSearchInstance 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.
NewMetricsSearchInstanceAllOf instantiates a new MetricsSearchInstanceAllOf 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.
NewMetricsSearchInstanceAllOfWithDefaults instantiates a new MetricsSearchInstanceAllOf 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.
NewMetricsSearchInstanceWithDefaults instantiates a new MetricsSearchInstance 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.
NewMetricsSearchQuery instantiates a new MetricsSearchQuery 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.
NewMetricsSearchQueryWithDefaults instantiates a new MetricsSearchQuery 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.
NewMetricsSearchSyncDefinition instantiates a new MetricsSearchSyncDefinition 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.
NewMetricsSearchSyncDefinitionAllOf instantiates a new MetricsSearchSyncDefinitionAllOf 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.
NewMetricsSearchSyncDefinitionAllOfWithDefaults instantiates a new MetricsSearchSyncDefinitionAllOf 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.
NewMetricsSearchSyncDefinitionWithDefaults instantiates a new MetricsSearchSyncDefinition 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.
NewMetricsSearchV1 instantiates a new MetricsSearchV1 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.
NewMetricsSearchV1WithDefaults instantiates a new MetricsSearchV1 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.
NewMetricsStaticCondition instantiates a new MetricsStaticCondition 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.
NewMetricsStaticConditionAllOf instantiates a new MetricsStaticConditionAllOf 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.
NewMetricsStaticConditionAllOfWithDefaults instantiates a new MetricsStaticConditionAllOf 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.
NewMetricsStaticConditionWithDefaults instantiates a new MetricsStaticCondition 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.
NewMewboardSyncDefinition instantiates a new MewboardSyncDefinition 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.
NewMewboardSyncDefinitionAllOf instantiates a new MewboardSyncDefinitionAllOf 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.
NewMewboardSyncDefinitionAllOfWithDefaults instantiates a new MewboardSyncDefinitionAllOf 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.
NewMewboardSyncDefinitionWithDefaults instantiates a new MewboardSyncDefinition 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.
NewMicrosoftTeams instantiates a new MicrosoftTeams 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.
NewMicrosoftTeamsWithDefaults instantiates a new MicrosoftTeams 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.
NewMonitorNotification instantiates a new MonitorNotification 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.
NewMonitorNotificationWithDefaults instantiates a new MonitorNotification 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.
NewMonitorQueries instantiates a new MonitorQueries 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.
NewMonitorQueriesValidationResult instantiates a new MonitorQueriesValidationResult 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.
NewMonitorQueriesValidationResultWithDefaults instantiates a new MonitorQueriesValidationResult 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.
NewMonitorQueriesWithDefaults instantiates a new MonitorQueries 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.
NewMonitorQuery instantiates a new MonitorQuery 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.
NewMonitorQueryWithDefaults instantiates a new MonitorQuery 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.
NewMonitorsLibraryBase instantiates a new MonitorsLibraryBase 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.
NewMonitorsLibraryBaseExport instantiates a new MonitorsLibraryBaseExport 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.
NewMonitorsLibraryBaseExportWithDefaults instantiates a new MonitorsLibraryBaseExport 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.
NewMonitorsLibraryBaseResponse instantiates a new MonitorsLibraryBaseResponse 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.
NewMonitorsLibraryBaseResponseWithDefaults instantiates a new MonitorsLibraryBaseResponse 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.
NewMonitorsLibraryBaseUpdate instantiates a new MonitorsLibraryBaseUpdate 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.
NewMonitorsLibraryBaseUpdateWithDefaults instantiates a new MonitorsLibraryBaseUpdate 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.
NewMonitorsLibraryBaseWithDefaults instantiates a new MonitorsLibraryBase 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.
NewMonitorsLibraryFolder instantiates a new MonitorsLibraryFolder 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.
NewMonitorsLibraryFolderExport instantiates a new MonitorsLibraryFolderExport 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.
NewMonitorsLibraryFolderExportAllOf instantiates a new MonitorsLibraryFolderExportAllOf 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.
NewMonitorsLibraryFolderExportAllOfWithDefaults instantiates a new MonitorsLibraryFolderExportAllOf 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.
NewMonitorsLibraryFolderExportWithDefaults instantiates a new MonitorsLibraryFolderExport 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.
NewMonitorsLibraryFolderResponse instantiates a new MonitorsLibraryFolderResponse 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.
NewMonitorsLibraryFolderResponseAllOf instantiates a new MonitorsLibraryFolderResponseAllOf 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.
NewMonitorsLibraryFolderResponseAllOfWithDefaults instantiates a new MonitorsLibraryFolderResponseAllOf 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.
NewMonitorsLibraryFolderResponseWithDefaults instantiates a new MonitorsLibraryFolderResponse 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.
NewMonitorsLibraryFolderUpdate instantiates a new MonitorsLibraryFolderUpdate 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.
NewMonitorsLibraryFolderUpdateWithDefaults instantiates a new MonitorsLibraryFolderUpdate 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.
NewMonitorsLibraryFolderWithDefaults instantiates a new MonitorsLibraryFolder 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.
NewMonitorsLibraryItemWithPath instantiates a new MonitorsLibraryItemWithPath 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.
NewMonitorsLibraryItemWithPathWithDefaults instantiates a new MonitorsLibraryItemWithPath 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.
NewMonitorsLibraryMonitor instantiates a new MonitorsLibraryMonitor 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.
NewMonitorsLibraryMonitorAllOf instantiates a new MonitorsLibraryMonitorAllOf 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.
NewMonitorsLibraryMonitorAllOfWithDefaults instantiates a new MonitorsLibraryMonitorAllOf 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.
NewMonitorsLibraryMonitorExport instantiates a new MonitorsLibraryMonitorExport 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.
NewMonitorsLibraryMonitorExportWithDefaults instantiates a new MonitorsLibraryMonitorExport 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.
NewMonitorsLibraryMonitorResponse instantiates a new MonitorsLibraryMonitorResponse 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.
NewMonitorsLibraryMonitorResponseAllOf instantiates a new MonitorsLibraryMonitorResponseAllOf 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.
NewMonitorsLibraryMonitorResponseAllOfWithDefaults instantiates a new MonitorsLibraryMonitorResponseAllOf 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.
NewMonitorsLibraryMonitorResponseWithDefaults instantiates a new MonitorsLibraryMonitorResponse 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.
NewMonitorsLibraryMonitorUpdate instantiates a new MonitorsLibraryMonitorUpdate 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.
NewMonitorsLibraryMonitorUpdateWithDefaults instantiates a new MonitorsLibraryMonitorUpdate 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.
NewMonitorsLibraryMonitorWithDefaults instantiates a new MonitorsLibraryMonitor 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.
NewMonitorUsage instantiates a new MonitorUsage 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.
NewMonitorUsageWithDefaults instantiates a new MonitorUsage 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.
NewNewRelic instantiates a new NewRelic 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.
NewNewRelicWithDefaults instantiates a new NewRelic 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.
NewNotificationThresholdSyncDefinition instantiates a new NotificationThresholdSyncDefinition 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.
NewNotificationThresholdSyncDefinitionWithDefaults instantiates a new NotificationThresholdSyncDefinition 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
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
NewOAuthRefreshFailedTracker instantiates a new OAuthRefreshFailedTracker 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.
NewOAuthRefreshFailedTrackerAllOf instantiates a new OAuthRefreshFailedTrackerAllOf 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.
NewOAuthRefreshFailedTrackerAllOfWithDefaults instantiates a new OAuthRefreshFailedTrackerAllOf 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.
NewOAuthRefreshFailedTrackerWithDefaults instantiates a new OAuthRefreshFailedTracker 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.
NewOnDemandProvisioningInfo instantiates a new OnDemandProvisioningInfo 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.
NewOnDemandProvisioningInfoWithDefaults instantiates a new OnDemandProvisioningInfo 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.
NewOpenInQuery instantiates a new OpenInQuery 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.
NewOpenInQueryWithDefaults instantiates a new OpenInQuery 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.
NewOperator instantiates a new Operator 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.
NewOperatorData instantiates a new OperatorData 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.
NewOperatorDataWithDefaults instantiates a new OperatorData 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.
NewOperatorParameter instantiates a new OperatorParameter 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.
NewOperatorParameterWithDefaults instantiates a new OperatorParameter 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.
NewOperatorWithDefaults instantiates a new Operator 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.
NewOpsgenie instantiates a new Opsgenie 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.
NewOpsgenieWithDefaults instantiates a new Opsgenie 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.
NewOrgIdentity instantiates a new OrgIdentity 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.
NewOrgIdentityWithDefaults instantiates a new OrgIdentity 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.
NewOutlierBound instantiates a new OutlierBound 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.
NewOutlierBoundWithDefaults instantiates a new OutlierBound 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.
NewOutlierDataValue instantiates a new OutlierDataValue 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.
NewOutlierDataValueWithDefaults instantiates a new OutlierDataValue 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.
NewOutlierSeriesDataPoint instantiates a new OutlierSeriesDataPoint 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.
NewOutlierSeriesDataPointAllOf instantiates a new OutlierSeriesDataPointAllOf 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.
NewOutlierSeriesDataPointAllOfWithDefaults instantiates a new OutlierSeriesDataPointAllOf 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.
NewOutlierSeriesDataPointWithDefaults instantiates a new OutlierSeriesDataPoint 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.
NewPagerDuty instantiates a new PagerDuty 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.
NewPagerDutyWithDefaults instantiates a new PagerDuty 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.
NewPaginatedListAccessKeysResult instantiates a new PaginatedListAccessKeysResult 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.
NewPaginatedListAccessKeysResultWithDefaults instantiates a new PaginatedListAccessKeysResult 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.
NewPanel instantiates a new Panel 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.
NewPanelItem instantiates a new PanelItem 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.
NewPanelItemWithDefaults instantiates a new PanelItem 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.
NewPanelWithDefaults instantiates a new Panel 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.
NewParameterAutoCompleteSyncDefinition instantiates a new ParameterAutoCompleteSyncDefinition 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.
NewParameterAutoCompleteSyncDefinitionWithDefaults instantiates a new ParameterAutoCompleteSyncDefinition 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.
NewPartition instantiates a new Partition 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.
NewPartitionAllOf instantiates a new PartitionAllOf 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.
NewPartitionAllOfWithDefaults instantiates a new PartitionAllOf 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.
NewPartitionsResponse instantiates a new PartitionsResponse 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.
NewPartitionsResponseWithDefaults instantiates a new PartitionsResponse 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.
NewPartitionWithDefaults instantiates a new Partition 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.
NewPasswordPolicy instantiates a new PasswordPolicy 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.
NewPasswordPolicyWithDefaults instantiates a new PasswordPolicy 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.
NewPath instantiates a new Path 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.
NewPathItem instantiates a new PathItem 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.
NewPathItemWithDefaults instantiates a new PathItem 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.
NewPathWithDefaults instantiates a new Path 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.
NewPermissionIdentifier instantiates a new PermissionIdentifier 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.
NewPermissionIdentifierAllOf instantiates a new PermissionIdentifierAllOf 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.
NewPermissionIdentifierAllOfWithDefaults instantiates a new PermissionIdentifierAllOf 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.
NewPermissionIdentifiers instantiates a new PermissionIdentifiers 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.
NewPermissionIdentifiersWithDefaults instantiates a new PermissionIdentifiers 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.
NewPermissionIdentifierWithDefaults instantiates a new PermissionIdentifier 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.
NewPermissions instantiates a new Permissions 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.
NewPermissionStatement instantiates a new PermissionStatement 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.
NewPermissionStatementDefinition instantiates a new PermissionStatementDefinition 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.
NewPermissionStatementDefinitionAllOf instantiates a new PermissionStatementDefinitionAllOf 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.
NewPermissionStatementDefinitionAllOfWithDefaults instantiates a new PermissionStatementDefinitionAllOf 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.
NewPermissionStatementDefinitions instantiates a new PermissionStatementDefinitions 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.
NewPermissionStatementDefinitionsWithDefaults instantiates a new PermissionStatementDefinitions 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.
NewPermissionStatementDefinitionWithDefaults instantiates a new PermissionStatementDefinition 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.
NewPermissionStatements instantiates a new PermissionStatements 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.
NewPermissionStatementsWithDefaults instantiates a new PermissionStatements 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.
NewPermissionStatementWithDefaults instantiates a new PermissionStatement 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.
NewPermissionSubject instantiates a new PermissionSubject 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.
NewPermissionSubjectWithDefaults instantiates a new PermissionSubject 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.
NewPermissionSummariesBySubjects instantiates a new PermissionSummariesBySubjects 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.
NewPermissionSummariesBySubjectsWithDefaults instantiates a new PermissionSummariesBySubjects 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.
NewPermissionSummaryBySubjects instantiates a new PermissionSummaryBySubjects 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.
NewPermissionSummaryBySubjectsAllOf instantiates a new PermissionSummaryBySubjectsAllOf 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.
NewPermissionSummaryBySubjectsAllOfWithDefaults instantiates a new PermissionSummaryBySubjectsAllOf 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.
NewPermissionSummaryBySubjectsWithDefaults instantiates a new PermissionSummaryBySubjects 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.
NewPermissionSummaryMeta instantiates a new PermissionSummaryMeta 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.
NewPermissionSummaryMetaWithDefaults instantiates a new PermissionSummaryMeta 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.
NewPermissionsWithDefaults instantiates a new Permissions 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.
NewPlan instantiates a new Plan 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.
NewPlansCatalog instantiates a new PlansCatalog 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.
NewPlansCatalogWithDefaults instantiates a new PlansCatalog 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.
NewPlanUpdateEmail instantiates a new PlanUpdateEmail 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.
NewPlanUpdateEmailWithDefaults instantiates a new PlanUpdateEmail 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.
NewPlanWithDefaults instantiates a new Plan 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.
NewPoints instantiates a new Points 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.
NewPointsWithDefaults instantiates a new Points 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.
NewPreviewLookupTableField instantiates a new PreviewLookupTableField 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.
NewPreviewLookupTableFieldWithDefaults instantiates a new PreviewLookupTableField 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.
NewProductGroup instantiates a new ProductGroup 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.
NewProductGroupWithDefaults instantiates a new ProductGroup 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.
NewProductSubscriptionOption instantiates a new ProductSubscriptionOption 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.
NewProductSubscriptionOptionWithDefaults instantiates a new ProductSubscriptionOption 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.
NewProductVariable instantiates a new ProductVariable 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.
NewProductVariableWithDefaults instantiates a new ProductVariable 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.
NewQuantity instantiates a new Quantity 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.
NewQuantityWithDefaults instantiates a new Quantity 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.
NewQueriesParametersResult instantiates a new QueriesParametersResult 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.
NewQueriesParametersResultWithDefaults instantiates a new QueriesParametersResult 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.
NewQuery instantiates a new Query 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.
NewQueryParameterSyncDefinition instantiates a new QueryParameterSyncDefinition 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.
NewQueryParameterSyncDefinitionWithDefaults instantiates a new QueryParameterSyncDefinition 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.
NewQueryWithDefaults instantiates a new Query 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.
NewRelatedAlert instantiates a new RelatedAlert 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.
NewRelatedAlertsLibraryAlertResponse instantiates a new RelatedAlertsLibraryAlertResponse 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.
NewRelatedAlertsLibraryAlertResponseWithDefaults instantiates a new RelatedAlertsLibraryAlertResponse 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.
NewRelatedAlertWithDefaults instantiates a new RelatedAlert 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.
NewRelativeTimeRangeBoundary instantiates a new RelativeTimeRangeBoundary 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.
NewRelativeTimeRangeBoundaryAllOf instantiates a new RelativeTimeRangeBoundaryAllOf 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.
NewRelativeTimeRangeBoundaryAllOfWithDefaults instantiates a new RelativeTimeRangeBoundaryAllOf 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.
NewRelativeTimeRangeBoundaryWithDefaults instantiates a new RelativeTimeRangeBoundary 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.
NewReportAction instantiates a new ReportAction 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.
NewReportActionWithDefaults instantiates a new ReportAction 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.
NewReportAutoParsingInfo instantiates a new ReportAutoParsingInfo 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.
NewReportAutoParsingInfoWithDefaults instantiates a new ReportAutoParsingInfo 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.
NewReportFilterSyncDefinition instantiates a new ReportFilterSyncDefinition 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.
NewReportFilterSyncDefinitionWithDefaults instantiates a new ReportFilterSyncDefinition 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.
NewReportPanelSyncDefinition instantiates a new ReportPanelSyncDefinition 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.
NewReportPanelSyncDefinitionWithDefaults instantiates a new ReportPanelSyncDefinition 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.
NewResolvableTimeRange instantiates a new ResolvableTimeRange 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.
NewResolvableTimeRangeWithDefaults instantiates a new ResolvableTimeRange 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.
NewResourceIdentities instantiates a new ResourceIdentities 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.
NewResourceIdentitiesWithDefaults instantiates a new ResourceIdentities 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.
NewResourceIdentity instantiates a new ResourceIdentity 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.
NewResourceIdentityWithDefaults instantiates a new ResourceIdentity 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.
NewRoleModel instantiates a new RoleModel 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.
NewRoleModelAllOf instantiates a new RoleModelAllOf 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.
NewRoleModelAllOfWithDefaults instantiates a new RoleModelAllOf 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.
NewRoleModelWithDefaults instantiates a new RoleModel 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.
NewRowDeleteDefinition instantiates a new RowDeleteDefinition 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.
NewRowDeleteDefinitionWithDefaults instantiates a new RowDeleteDefinition 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.
NewRowUpdateDefinition instantiates a new RowUpdateDefinition 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.
NewRowUpdateDefinitionWithDefaults instantiates a new RowUpdateDefinition 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.
NewS3CollectionErrorTracker instantiates a new S3CollectionErrorTracker 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.
NewS3CollectionErrorTrackerWithDefaults instantiates a new S3CollectionErrorTracker 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.
NewSamlIdentityProvider instantiates a new SamlIdentityProvider 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.
NewSamlIdentityProviderAllOf instantiates a new SamlIdentityProviderAllOf 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.
NewSamlIdentityProviderAllOfWithDefaults instantiates a new SamlIdentityProviderAllOf 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.
NewSamlIdentityProviderRequest instantiates a new SamlIdentityProviderRequest 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.
NewSamlIdentityProviderRequestWithDefaults instantiates a new SamlIdentityProviderRequest 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.
NewSamlIdentityProviderWithDefaults instantiates a new SamlIdentityProvider 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.
NewSavedSearchSyncDefinition instantiates a new SavedSearchSyncDefinition 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.
NewSavedSearchSyncDefinitionWithDefaults instantiates a new SavedSearchSyncDefinition 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.
NewSavedSearchWithScheduleSyncDefinition instantiates a new SavedSearchWithScheduleSyncDefinition 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.
NewSavedSearchWithScheduleSyncDefinitionAllOf instantiates a new SavedSearchWithScheduleSyncDefinitionAllOf 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.
NewSavedSearchWithScheduleSyncDefinitionAllOfWithDefaults instantiates a new SavedSearchWithScheduleSyncDefinitionAllOf 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.
NewSavedSearchWithScheduleSyncDefinitionWithDefaults instantiates a new SavedSearchWithScheduleSyncDefinition 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.
NewSaveMetricsSearchRequest instantiates a new SaveMetricsSearchRequest 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.
NewSaveMetricsSearchRequestAllOf instantiates a new SaveMetricsSearchRequestAllOf 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.
NewSaveMetricsSearchRequestAllOfWithDefaults instantiates a new SaveMetricsSearchRequestAllOf 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.
NewSaveMetricsSearchRequestWithDefaults instantiates a new SaveMetricsSearchRequest 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.
NewSaveToLookupNotificationSyncDefinition instantiates a new SaveToLookupNotificationSyncDefinition 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.
NewSaveToLookupNotificationSyncDefinitionAllOf instantiates a new SaveToLookupNotificationSyncDefinitionAllOf 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.
NewSaveToLookupNotificationSyncDefinitionAllOfWithDefaults instantiates a new SaveToLookupNotificationSyncDefinitionAllOf 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.
NewSaveToLookupNotificationSyncDefinitionWithDefaults instantiates a new SaveToLookupNotificationSyncDefinition 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.
NewSaveToViewNotificationSyncDefinition instantiates a new SaveToViewNotificationSyncDefinition 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.
NewSaveToViewNotificationSyncDefinitionAllOf instantiates a new SaveToViewNotificationSyncDefinitionAllOf 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.
NewSaveToViewNotificationSyncDefinitionAllOfWithDefaults instantiates a new SaveToViewNotificationSyncDefinitionAllOf 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.
NewSaveToViewNotificationSyncDefinitionWithDefaults instantiates a new SaveToViewNotificationSyncDefinition 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.
NewScheduledView instantiates a new ScheduledView 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.
NewScheduledViewAllOf instantiates a new ScheduledViewAllOf 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.
NewScheduledViewAllOfWithDefaults instantiates a new ScheduledViewAllOf 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.
NewScheduledViewWithDefaults instantiates a new ScheduledView 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.
NewScheduleNotificationSyncDefinition instantiates a new ScheduleNotificationSyncDefinition 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.
NewScheduleNotificationSyncDefinitionWithDefaults instantiates a new ScheduleNotificationSyncDefinition 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.
NewScheduleSearchParameterSyncDefinition instantiates a new ScheduleSearchParameterSyncDefinition 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.
NewScheduleSearchParameterSyncDefinitionWithDefaults instantiates a new ScheduleSearchParameterSyncDefinition 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.
NewSearchAuditPolicy instantiates a new SearchAuditPolicy 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.
NewSearchAuditPolicyWithDefaults instantiates a new SearchAuditPolicy 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.
NewSearchQueryFieldAndType instantiates a new SearchQueryFieldAndType 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.
NewSearchQueryFieldAndTypeWithDefaults instantiates a new SearchQueryFieldAndType 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.
NewSearchScheduleSyncDefinition instantiates a new SearchScheduleSyncDefinition 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.
NewSearchScheduleSyncDefinitionWithDefaults instantiates a new SearchScheduleSyncDefinition 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.
NewSelfServiceCreditsBaselines instantiates a new SelfServiceCreditsBaselines 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.
NewSelfServiceCreditsBaselinesWithDefaults instantiates a new SelfServiceCreditsBaselines 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.
NewSelfServicePlan instantiates a new SelfServicePlan 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.
NewSelfServicePlanWithDefaults instantiates a new SelfServicePlan 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.
NewSeriesAxisRange instantiates a new SeriesAxisRange 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.
NewSeriesAxisRangeWithDefaults instantiates a new SeriesAxisRange 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.
NewSeriesData instantiates a new SeriesData 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.
NewSeriesDataWithDefaults instantiates a new SeriesData 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.
NewSeriesMetadata instantiates a new SeriesMetadata 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.
NewSeriesMetadataWithDefaults instantiates a new SeriesMetadata 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.
NewServiceManifestDataSourceParameter instantiates a new ServiceManifestDataSourceParameter 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.
NewServiceManifestDataSourceParameterWithDefaults instantiates a new ServiceManifestDataSourceParameter 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.
NewServiceNow instantiates a new ServiceNow 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.
NewServiceNowAllOf instantiates a new ServiceNowAllOf 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.
NewServiceNowAllOfWithDefaults instantiates a new ServiceNowAllOf 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.
NewServiceNowConnection instantiates a new ServiceNowConnection 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.
NewServiceNowConnectionAllOf instantiates a new ServiceNowConnectionAllOf 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.
NewServiceNowConnectionAllOfWithDefaults instantiates a new ServiceNowConnectionAllOf 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.
NewServiceNowConnectionWithDefaults instantiates a new ServiceNowConnection 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.
NewServiceNowDefinition instantiates a new ServiceNowDefinition 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.
NewServiceNowDefinitionAllOf instantiates a new ServiceNowDefinitionAllOf 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.
NewServiceNowDefinitionAllOfWithDefaults instantiates a new ServiceNowDefinitionAllOf 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.
NewServiceNowDefinitionWithDefaults instantiates a new ServiceNowDefinition 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.
NewServiceNowFieldsSyncDefinition instantiates a new ServiceNowFieldsSyncDefinition 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.
NewServiceNowFieldsSyncDefinitionWithDefaults instantiates a new ServiceNowFieldsSyncDefinition 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.
NewServiceNowSearchNotificationSyncDefinition instantiates a new ServiceNowSearchNotificationSyncDefinition 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.
NewServiceNowSearchNotificationSyncDefinitionAllOf instantiates a new ServiceNowSearchNotificationSyncDefinitionAllOf 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.
NewServiceNowSearchNotificationSyncDefinitionAllOfWithDefaults instantiates a new ServiceNowSearchNotificationSyncDefinitionAllOf 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.
NewServiceNowSearchNotificationSyncDefinitionWithDefaults instantiates a new ServiceNowSearchNotificationSyncDefinition 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.
NewServiceNowWithDefaults instantiates a new ServiceNow 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.
NewShareDashboardsOutsideOrganizationPolicy instantiates a new ShareDashboardsOutsideOrganizationPolicy 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.
NewShareDashboardsOutsideOrganizationPolicyWithDefaults instantiates a new ShareDashboardsOutsideOrganizationPolicy 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.
NewSharedBucket instantiates a new SharedBucket 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.
NewSharedBucketWithDefaults instantiates a new SharedBucket 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.
NewSignalContext instantiates a new SignalContext 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.
NewSignalContextWithDefaults instantiates a new SignalContext 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.
NewSignalsJobResult instantiates a new SignalsJobResult 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.
NewSignalsJobResultWithDefaults instantiates a new SignalsJobResult 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.
NewSignalsRequest instantiates a new SignalsRequest 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.
NewSignalsRequestWithDefaults instantiates a new SignalsRequest 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.
NewSignalsResponse instantiates a new SignalsResponse 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.
NewSignalsResponseWithDefaults instantiates a new SignalsResponse 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.
NewSlack instantiates a new Slack 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.
NewSlackWithDefaults instantiates a new Slack 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.
NewSource instantiates a new Source 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.
NewSourceResourceIdentity instantiates a new SourceResourceIdentity 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.
NewSourceResourceIdentityAllOf instantiates a new SourceResourceIdentityAllOf 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.
NewSourceResourceIdentityAllOfWithDefaults instantiates a new SourceResourceIdentityAllOf 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.
NewSourceResourceIdentityWithDefaults instantiates a new SourceResourceIdentity 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.
NewSourceWithDefaults instantiates a new Source 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.
NewSpanIngestLimitExceededTracker instantiates a new SpanIngestLimitExceededTracker 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.
NewSpanIngestLimitExceededTrackerWithDefaults instantiates a new SpanIngestLimitExceededTracker 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.
NewStaticCondition instantiates a new StaticCondition 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.
NewStaticConditionAllOf instantiates a new StaticConditionAllOf 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.
NewStaticConditionAllOfWithDefaults instantiates a new StaticConditionAllOf 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.
NewStaticConditionWithDefaults instantiates a new StaticCondition 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.
NewStaticSeriesDataPoint instantiates a new StaticSeriesDataPoint 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.
NewStaticSeriesDataPointAllOf instantiates a new StaticSeriesDataPointAllOf 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.
NewStaticSeriesDataPointAllOfWithDefaults instantiates a new StaticSeriesDataPointAllOf 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.
NewStaticSeriesDataPointWithDefaults instantiates a new StaticSeriesDataPoint 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.
NewSubdomainAvailabilityResponse instantiates a new SubdomainAvailabilityResponse 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.
NewSubdomainAvailabilityResponseWithDefaults instantiates a new SubdomainAvailabilityResponse 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.
NewSubdomainDefinitionResponse instantiates a new SubdomainDefinitionResponse 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.
NewSubdomainDefinitionResponseWithDefaults instantiates a new SubdomainDefinitionResponse 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.
NewSubdomainUrlResponse instantiates a new SubdomainUrlResponse 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.
NewSubdomainUrlResponseWithDefaults instantiates a new SubdomainUrlResponse 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.
NewSumoCloudSOAR instantiates a new SumoCloudSOAR 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.
NewSumoCloudSOARWithDefaults instantiates a new SumoCloudSOAR 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.
NewSumoSearchPanel instantiates a new SumoSearchPanel 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.
NewSumoSearchPanelAllOf instantiates a new SumoSearchPanelAllOf 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.
NewSumoSearchPanelAllOfWithDefaults instantiates a new SumoSearchPanelAllOf 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.
NewSumoSearchPanelWithDefaults instantiates a new SumoSearchPanel 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.
NewTableRow instantiates a new TableRow 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.
NewTableRowWithDefaults instantiates a new TableRow 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.
NewTemplate instantiates a new Template 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.
NewTemplateWithDefaults instantiates a new Template 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.
NewTestConnectionResponse instantiates a new TestConnectionResponse 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.
NewTestConnectionResponseWithDefaults instantiates a new TestConnectionResponse 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.
NewTextPanel instantiates a new TextPanel 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.
NewTextPanelAllOf instantiates a new TextPanelAllOf 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.
NewTextPanelAllOfWithDefaults instantiates a new TextPanelAllOf 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.
NewTextPanelWithDefaults instantiates a new TextPanel 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.
NewTimeRangeBoundary instantiates a new TimeRangeBoundary 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.
NewTimeRangeBoundaryWithDefaults instantiates a new TimeRangeBoundary 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.
NewTimeSeries instantiates a new TimeSeries 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.
NewTimeSeriesList instantiates a new TimeSeriesList 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.
NewTimeSeriesListWithDefaults instantiates a new TimeSeriesList 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.
NewTimeSeriesRow instantiates a new TimeSeriesRow 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.
NewTimeSeriesRowWithDefaults instantiates a new TimeSeriesRow 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.
NewTimeSeriesWithDefaults instantiates a new TimeSeries 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.
NewTokenBaseDefinition instantiates a new TokenBaseDefinition 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.
NewTokenBaseDefinitionUpdate instantiates a new TokenBaseDefinitionUpdate 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.
NewTokenBaseDefinitionUpdateWithDefaults instantiates a new TokenBaseDefinitionUpdate 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.
NewTokenBaseDefinitionWithDefaults instantiates a new TokenBaseDefinition 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.
NewTokenBaseResponse instantiates a new TokenBaseResponse 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.
NewTokenBaseResponseWithDefaults instantiates a new TokenBaseResponse 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.
NewTopologyLabelMap instantiates a new TopologyLabelMap 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.
NewTopologyLabelMapWithDefaults instantiates a new TopologyLabelMap 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.
NewTopologySearchLabel instantiates a new TopologySearchLabel 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.
NewTopologySearchLabelWithDefaults instantiates a new TopologySearchLabel 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.
NewTotalCredits instantiates a new TotalCredits 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.
NewTotalCreditsWithDefaults instantiates a new TotalCredits 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.
NewTracesFilter instantiates a new TracesFilter 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.
NewTracesFilterWithDefaults instantiates a new TracesFilter 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.
NewTracesQueryData instantiates a new TracesQueryData 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.
NewTracesQueryDataWithDefaults instantiates a new TracesQueryData 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.
NewTrackerIdentity instantiates a new TrackerIdentity 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.
NewTrackerIdentityWithDefaults instantiates a new TrackerIdentity 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.
NewTransformationRuleDefinition instantiates a new TransformationRuleDefinition 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.
NewTransformationRuleDefinitionWithDefaults instantiates a new TransformationRuleDefinition 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.
NewTransformationRuleRequest instantiates a new TransformationRuleRequest 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.
NewTransformationRuleRequestWithDefaults instantiates a new TransformationRuleRequest 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.
NewTransformationRuleResponse instantiates a new TransformationRuleResponse 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.
NewTransformationRuleResponseAllOf instantiates a new TransformationRuleResponseAllOf 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.
NewTransformationRuleResponseAllOfWithDefaults instantiates a new TransformationRuleResponseAllOf 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.
NewTransformationRuleResponseWithDefaults instantiates a new TransformationRuleResponse 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.
NewTransformationRulesResponse instantiates a new TransformationRulesResponse 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.
NewTransformationRulesResponseWithDefaults instantiates a new TransformationRulesResponse 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.
NewTriggerCondition instantiates a new TriggerCondition 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.
NewTriggerConditionWithDefaults instantiates a new TriggerCondition 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.
NewUnvalidatedMonitorQuery instantiates a new UnvalidatedMonitorQuery 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.
NewUnvalidatedMonitorQueryWithDefaults instantiates a new UnvalidatedMonitorQuery 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.
NewUpdateExtractionRuleDefinition instantiates a new UpdateExtractionRuleDefinition 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.
NewUpdateExtractionRuleDefinitionAllOf instantiates a new UpdateExtractionRuleDefinitionAllOf 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.
NewUpdateExtractionRuleDefinitionAllOfWithDefaults instantiates a new UpdateExtractionRuleDefinitionAllOf 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.
NewUpdateExtractionRuleDefinitionWithDefaults instantiates a new UpdateExtractionRuleDefinition 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.
NewUpdateFolderRequest instantiates a new UpdateFolderRequest 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.
NewUpdateFolderRequestWithDefaults instantiates a new UpdateFolderRequest 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.
NewUpdatePartitionDefinition instantiates a new UpdatePartitionDefinition 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.
NewUpdatePartitionDefinitionWithDefaults instantiates a new UpdatePartitionDefinition 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.
NewUpdateRequest instantiates a new UpdateRequest 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.
NewUpdateRequestWithDefaults instantiates a new UpdateRequest 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.
NewUpdateRoleDefinition instantiates a new UpdateRoleDefinition 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.
NewUpdateRoleDefinitionWithDefaults instantiates a new UpdateRoleDefinition 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.
NewUpdateScheduledViewDefinition instantiates a new UpdateScheduledViewDefinition 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.
NewUpdateScheduledViewDefinitionWithDefaults instantiates a new UpdateScheduledViewDefinition 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.
NewUpdateUserDefinition instantiates a new UpdateUserDefinition 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.
NewUpdateUserDefinitionWithDefaults instantiates a new UpdateUserDefinition 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.
NewUpgradePlans instantiates a new UpgradePlans 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.
NewUpgradePlansWithDefaults instantiates a new UpgradePlans 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.
NewUserConcurrentSessionsLimitPolicy instantiates a new UserConcurrentSessionsLimitPolicy 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.
NewUserConcurrentSessionsLimitPolicyWithDefaults instantiates a new UserConcurrentSessionsLimitPolicy 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.
NewUserInfo instantiates a new UserInfo 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.
NewUserInfoWithDefaults instantiates a new UserInfo 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.
NewUserModel instantiates a new UserModel 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.
NewUserModelAllOf instantiates a new UserModelAllOf 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.
NewUserModelAllOfWithDefaults instantiates a new UserModelAllOf 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.
NewUserModelWithDefaults instantiates a new UserModel 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.
NewVariable instantiates a new Variable 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.
NewVariableSourceDefinition instantiates a new VariableSourceDefinition 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.
NewVariableSourceDefinitionWithDefaults instantiates a new VariableSourceDefinition 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.
NewVariablesValuesData instantiates a new VariablesValuesData 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.
NewVariablesValuesDataWithDefaults instantiates a new VariablesValuesData 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.
NewVariableValuesData instantiates a new VariableValuesData 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.
NewVariableValuesDataWithDefaults instantiates a new VariableValuesData 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.
NewVariableValuesLogQueryRequest instantiates a new VariableValuesLogQueryRequest 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.
NewVariableValuesLogQueryRequestWithDefaults instantiates a new VariableValuesLogQueryRequest 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.
NewVariableWithDefaults instantiates a new Variable 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.
NewVisualAggregateData instantiates a new VisualAggregateData 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.
NewVisualAggregateDataWithDefaults instantiates a new VisualAggregateData 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.
NewWarningDescription instantiates a new WarningDescription 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.
NewWarningDescriptionWithDefaults instantiates a new WarningDescription 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.
NewWarningDetails instantiates a new WarningDetails 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.
NewWarningDetailsWithDefaults instantiates a new WarningDetails 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.
NewWebhook instantiates a new Webhook 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.
NewWebhookConnection instantiates a new WebhookConnection 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.
NewWebhookConnectionAllOf instantiates a new WebhookConnectionAllOf 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.
NewWebhookConnectionAllOfWithDefaults instantiates a new WebhookConnectionAllOf 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.
NewWebhookConnectionWithDefaults instantiates a new WebhookConnection 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.
NewWebhookDefinition instantiates a new WebhookDefinition 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.
NewWebhookDefinitionAllOf instantiates a new WebhookDefinitionAllOf 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.
NewWebhookDefinitionAllOfWithDefaults instantiates a new WebhookDefinitionAllOf 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.
NewWebhookDefinitionWithDefaults instantiates a new WebhookDefinition 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.
NewWebhookSearchNotificationSyncDefinition instantiates a new WebhookSearchNotificationSyncDefinition 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.
NewWebhookSearchNotificationSyncDefinitionAllOf instantiates a new WebhookSearchNotificationSyncDefinitionAllOf 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.
NewWebhookSearchNotificationSyncDefinitionAllOfWithDefaults instantiates a new WebhookSearchNotificationSyncDefinitionAllOf 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.
NewWebhookSearchNotificationSyncDefinitionWithDefaults instantiates a new WebhookSearchNotificationSyncDefinition 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.
NewWebhookWithDefaults instantiates a new Webhook 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.
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.

# 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

AccessKey struct for AccessKey.
AccessKeyAllOf struct for AccessKeyAllOf.
AccessKeyCreateRequest struct for AccessKeyCreateRequest.
AccessKeyPublic struct for AccessKeyPublic.
AccessKeyUpdateRequest struct for AccessKeyUpdateRequest.
AccountStatusResponse Information about the account's plan and payment.
Action The base class of all connection types.
AddOrReplaceTransformation struct for AddOrReplaceTransformation.
AddOrReplaceTransformationAllOf struct for AddOrReplaceTransformationAllOf.
AggregateOnTransformation struct for AggregateOnTransformation.
AggregateOnTransformationAllOf struct for AggregateOnTransformationAllOf.
AlertChartDataResult Response for alert response chart data visualization.
AlertChartMetadata The metadata timestamps of alert chart data.
AlertEntityInfo An entity's name and Id.
AlertMonitorQuery struct for AlertMonitorQuery.
AlertMonitorQueryAllOf Monitor Query for the Alert.
AlertSearchNotificationSyncDefinition struct for AlertSearchNotificationSyncDefinition.
AlertSearchNotificationSyncDefinitionAllOf struct for AlertSearchNotificationSyncDefinitionAllOf.
AlertSignalContext Details of the alert signal context.
AlertSignalContextAllOf struct for AlertSignalContextAllOf.
AlertsLibraryAlert struct for AlertsLibraryAlert.
AlertsLibraryAlertAllOf struct for AlertsLibraryAlertAllOf.
AlertsLibraryAlertExport struct for AlertsLibraryAlertExport.
AlertsLibraryAlertResponse struct for AlertsLibraryAlertResponse.
AlertsLibraryAlertUpdate struct for AlertsLibraryAlertUpdate.
AlertsLibraryBase struct for AlertsLibraryBase.
AlertsLibraryBaseExport struct for AlertsLibraryBaseExport.
AlertsLibraryBaseResponse struct for AlertsLibraryBaseResponse.
AlertsLibraryBaseUpdate struct for AlertsLibraryBaseUpdate.
AlertsLibraryFolder struct for AlertsLibraryFolder.
AlertsLibraryFolderExport struct for AlertsLibraryFolderExport.
AlertsLibraryFolderExportAllOf struct for AlertsLibraryFolderExportAllOf.
AlertsLibraryFolderResponse struct for AlertsLibraryFolderResponse.
AlertsLibraryFolderResponseAllOf struct for AlertsLibraryFolderResponseAllOf.
AlertsLibraryFolderUpdate struct for AlertsLibraryFolderUpdate.
AlertsLibraryItemWithPath struct for AlertsLibraryItemWithPath.
AlertsListPageObject Alert list page object.
AlertsListPageResponse List of Alert list page objects.
AllowlistedUserResult struct for AllowlistedUserResult.
AllowlistingStatus The status of service allowlisting for Content and Login.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIClient manages communication with the Sumo Logic API API v1.0.0 In most cases there should be only one, shared, APIClient.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIKey provides API key based authentication to a request passed via context using ContextAPIKey.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
APIResponse stores the API response returned by the server.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
App struct for App.
AppDefinition struct for AppDefinition.
AppInstallRequest JSON object containing name, description, destinationFolderId, and dataSourceType.
AppItemsList struct for AppItemsList.
AppListItem struct for AppListItem.
AppManifest struct for AppManifest.
AppRecommendation App recommendation details.
ArchiveJob struct for ArchiveJob.
ArchiveJobAllOf struct for ArchiveJobAllOf.
ArchiveJobsCount struct for ArchiveJobsCount.
AsyncJobStatus struct for AsyncJobStatus.
AuditPolicy Audit policy.
AuthnCertificateResult struct for AuthnCertificateResult.
AutoCompleteValueSyncDefinition struct for AutoCompleteValueSyncDefinition.
AwsCloudWatchCollectionErrorTracker struct for AwsCloudWatchCollectionErrorTracker.
AwsInventoryCollectionErrorTracker struct for AwsInventoryCollectionErrorTracker.
AWSLambda struct for AWSLambda.
AWSLambdaAllOf struct for AWSLambdaAllOf.
AxisRange The min and max of the x,y axis of the monitor chart.
AzureFunctions struct for AzureFunctions.
BaseExtractionRuleDefinition struct for BaseExtractionRuleDefinition.
Baselines Details of consumable and its quantity.
BasicAuth provides basic http authentication to a request passed via context using ContextBasicAuth.
BeginAsyncJobResponse struct for BeginAsyncJobResponse.
BeginBoundedTimeRange struct for BeginBoundedTimeRange.
BeginBoundedTimeRangeAllOf struct for BeginBoundedTimeRangeAllOf.
BuiltinField struct for BuiltinField.
BuiltinFieldUsage struct for BuiltinFieldUsage.
BuiltinFieldUsageAllOf struct for BuiltinFieldUsageAllOf.
BulkAsyncStatusResponse struct for BulkAsyncStatusResponse.
BulkBeginAsyncJobResponse struct for BulkBeginAsyncJobResponse.
BulkErrorResponse struct for BulkErrorResponse.
CalculatorRequest Details of the request.
CapabilityDefinition struct for CapabilityDefinition.
CapabilityDefinitionGroup The group that the capability belongs to.
CapabilityList struct for CapabilityList.
CapabilityMap struct for CapabilityMap.
Capacity Amount of entitlement provided by Sumo Logic for the entitlement type of the account.
ChangeEmailRequest struct for ChangeEmailRequest.
ChartDataRequest Request payload for monitor chart data visualization.
ChartDataResult Response for monitor chart data visualization.
Cidr A CIDR notation or IP address along with its description.
CidrList A list of CIDR notations and/or IP addresses.
CollectionAffectedDueToIngestBudgetTracker struct for CollectionAffectedDueToIngestBudgetTracker.
CollectionAffectedDueToIngestBudgetTrackerAllOf struct for CollectionAffectedDueToIngestBudgetTrackerAllOf.
CollectionAwsInventoryThrottledTracker struct for CollectionAwsInventoryThrottledTracker.
CollectionAwsInventoryUnauthorizedTracker struct for CollectionAwsInventoryUnauthorizedTracker.
CollectionAwsMetadataTagsFetchDeniedTracker struct for CollectionAwsMetadataTagsFetchDeniedTracker.
CollectionCloudWatchGetStatisticsDeniedTracker struct for CollectionCloudWatchGetStatisticsDeniedTracker.
CollectionCloudWatchGetStatisticsThrottledTracker struct for CollectionCloudWatchGetStatisticsThrottledTracker.
CollectionCloudWatchListMetricsDeniedTracker struct for CollectionCloudWatchListMetricsDeniedTracker.
CollectionCloudWatchListMetricsDeniedTrackerAllOf struct for CollectionCloudWatchListMetricsDeniedTrackerAllOf.
CollectionCloudWatchTagsFetchDeniedTracker struct for CollectionCloudWatchTagsFetchDeniedTracker.
CollectionDockerClientBuildingFailedTracker struct for CollectionDockerClientBuildingFailedTracker.
CollectionInvalidFilePathTracker struct for CollectionInvalidFilePathTracker.
CollectionInvalidFilePathTrackerAllOf struct for CollectionInvalidFilePathTrackerAllOf.
CollectionPathAccessDeniedTracker struct for CollectionPathAccessDeniedTracker.
CollectionRemoteConnectionFailedTracker struct for CollectionRemoteConnectionFailedTracker.
CollectionS3AccessDeniedTracker struct for CollectionS3AccessDeniedTracker.
CollectionS3AccessDeniedTrackerAllOf struct for CollectionS3AccessDeniedTrackerAllOf.
CollectionS3GetObjectAccessDeniedTracker struct for CollectionS3GetObjectAccessDeniedTracker.
CollectionS3InvalidKeyTracker struct for CollectionS3InvalidKeyTracker.
CollectionS3InvalidKeyTrackerAllOf struct for CollectionS3InvalidKeyTrackerAllOf.
CollectionS3ListingFailedTracker struct for CollectionS3ListingFailedTracker.
CollectionS3ListingFailedTrackerAllOf struct for CollectionS3ListingFailedTrackerAllOf.
CollectionS3SlowListingTracker struct for CollectionS3SlowListingTracker.
CollectionS3SlowListingTrackerAllOf struct for CollectionS3SlowListingTrackerAllOf.
CollectionWindowsEventChannelConnectionFailedTracker struct for CollectionWindowsEventChannelConnectionFailedTracker.
CollectionWindowsHostConnectionFailedTracker struct for CollectionWindowsHostConnectionFailedTracker.
Collector struct for Collector.
CollectorIdentity struct for CollectorIdentity.
CollectorLimitApproachingTracker struct for CollectorLimitApproachingTracker.
CollectorRegistrationTokenResponse struct for CollectorRegistrationTokenResponse.
CollectorRegistrationTokenResponseAllOf struct for CollectorRegistrationTokenResponseAllOf.
CollectorResourceIdentity struct for CollectorResourceIdentity.
ColoringRule struct for ColoringRule.
ColoringThreshold struct for ColoringThreshold.
CompleteLiteralTimeRange struct for CompleteLiteralTimeRange.
CompleteLiteralTimeRangeAllOf struct for CompleteLiteralTimeRangeAllOf.
ConfidenceScoreResponse CSE insight confidence score.
Configuration stores the configuration of the API client.
ConfigureSubdomainRequest struct for ConfigureSubdomainRequest.
Connection struct for Connection.
ConnectionDefinition struct for ConnectionDefinition.
Consumable Details of consumable and its quantity.
ConsumptionDetails List of entitlements consumption.
ContainerPanel struct for ContainerPanel.
ContainerPanelAllOf A panel that contains a list of other panels.
Content struct for Content.
ContentAllOf struct for ContentAllOf.
ContentCopyParams struct for ContentCopyParams.
ContentList struct for ContentList.
ContentPath struct for ContentPath.
ContentPermissionAssignment struct for ContentPermissionAssignment.
ContentPermissionResult struct for ContentPermissionResult.
ContentPermissionUpdateRequest struct for ContentPermissionUpdateRequest.
ContentSyncDefinition struct for ContentSyncDefinition.
ContractDetails Contract details include Entitlements of the customer such as ContinuousLogs, FrequentLogs, Metrics, Storage, and Dashboards along with the entitlement value of each entitlement.
ContractPeriod struct for ContractPeriod.
CreateArchiveJobRequest struct for CreateArchiveJobRequest.
CreatePartitionDefinition struct for CreatePartitionDefinition.
CreateRoleDefinition struct for CreateRoleDefinition.
CreateScheduledViewDefinition struct for CreateScheduledViewDefinition.
CreateUserDefinition struct for CreateUserDefinition.
CreditsBreakdown Breakdown of the credits.
CseInsightConfidenceRequest CSE insight JSON object.
CseSignalNotificationSyncDefinition struct for CseSignalNotificationSyncDefinition.
CseSignalNotificationSyncDefinitionAllOf struct for CseSignalNotificationSyncDefinitionAllOf.
CSEWindowsAccessErrorTracker struct for CSEWindowsAccessErrorTracker.
CSEWindowsErrorAppendingToQueueFilesTracker struct for CSEWindowsErrorAppendingToQueueFilesTracker.
CSEWindowsErrorParsingRecordsTracker struct for CSEWindowsErrorParsingRecordsTracker.
CSEWindowsErrorParsingRecordsTrackerAllOf struct for CSEWindowsErrorParsingRecordsTrackerAllOf.
CSEWindowsErrorTracker struct for CSEWindowsErrorTracker.
CSEWindowsExcessiveBacklogTracker struct for CSEWindowsExcessiveBacklogTracker.
CSEWindowsExcessiveEventLogMonitorsTracker struct for CSEWindowsExcessiveEventLogMonitorsTracker.
CSEWindowsExcessiveFilesPendingUploadTracker struct for CSEWindowsExcessiveFilesPendingUploadTracker.
CSEWindowsExcessiveFilesPendingUploadTrackerAllOf struct for CSEWindowsExcessiveFilesPendingUploadTrackerAllOf.
CSEWindowsInvalidConfigurationTracker struct for CSEWindowsInvalidConfigurationTracker.
CSEWindowsInvalidConfigurationTrackerAllOf struct for CSEWindowsInvalidConfigurationTrackerAllOf.
CSEWindowsInvalidUserPermissionsTracker struct for CSEWindowsInvalidUserPermissionsTracker.
CSEWindowsInvalidUserPermissionsTrackerAllOf struct for CSEWindowsInvalidUserPermissionsTrackerAllOf.
CSEWindowsOldestRecordTimestampExceedsThresholdTracker struct for CSEWindowsOldestRecordTimestampExceedsThresholdTracker.
CSEWindowsParsingErrorTracker struct for CSEWindowsParsingErrorTracker.
CSEWindowsRuntimeErrorTracker struct for CSEWindowsRuntimeErrorTracker.
CSEWindowsRuntimeWarningTracker struct for CSEWindowsRuntimeWarningTracker.
CSEWindowsSensorOfflineTracker struct for CSEWindowsSensorOfflineTracker.
CSEWindowsSensorOfflineTrackerAllOf struct for CSEWindowsSensorOfflineTrackerAllOf.
CSEWindowsSensorOutOfStorageTracker struct for CSEWindowsSensorOutOfStorageTracker.
CSEWindowsStorageLimitApproachingTracker struct for CSEWindowsStorageLimitApproachingTracker.
CSEWindowsStorageLimitExceededTracker struct for CSEWindowsStorageLimitExceededTracker.
CSEWindowsStorageLimitExceededTrackerAllOf struct for CSEWindowsStorageLimitExceededTrackerAllOf.
CSEWindowsWriteQueueFilesToSensorDirectoryFailedTracker struct for CSEWindowsWriteQueueFilesToSensorDirectoryFailedTracker.
CsvVariableSourceDefinition struct for CsvVariableSourceDefinition.
CsvVariableSourceDefinitionAllOf Variable with values that are powered by a csv file.
CurrentBillingPeriod struct for CurrentBillingPeriod.
CurrentPlan Current plan of the account.
CustomField struct for CustomField.
CustomFieldAllOf struct for CustomFieldAllOf.
CustomFieldUsage struct for CustomFieldUsage.
CustomFieldUsageAllOf struct for CustomFieldUsageAllOf.
Dashboard struct for Dashboard.
DashboardAllOf struct for DashboardAllOf.
DashboardRequest struct for DashboardRequest.
DashboardSearchStatus struct for DashboardSearchStatus.
DashboardSyncDefinition struct for DashboardSyncDefinition.
DashboardSyncDefinitionAllOf struct for DashboardSyncDefinitionAllOf.
DashboardV2SyncDefinition struct for DashboardV2SyncDefinition.
DataAccessLevelPolicy Data Access Level policy.
Datadog struct for Datadog.
DataIngestAffectedTracker struct for DataIngestAffectedTracker.
DataPoint Data for visualizing monitor chart.
DataPoints Denotes the data points as a result of the groupBy function performed on the usage data.
DataValue struct for DataValue.
DimensionKeyValue The key and value pair for each metric dimension.
DimensionTransformation Base class of all transformation types.
DisableMfaRequest struct for DisableMfaRequest.
DisableMonitorResponse Response for disabling monitors.
DisableMonitorWarning Warning object from the operation providing details such as when a given monitor to disable does not exist.
DroppedField struct for DroppedField.
DynamicRule struct for DynamicRule.
DynamicRuleAllOf struct for DynamicRuleAllOf.
DynamicRuleDefinition struct for DynamicRuleDefinition.
Email struct for Email.
EmailAllOf struct for EmailAllOf.
EmailSearchNotificationSyncDefinition struct for EmailSearchNotificationSyncDefinition.
EmailSearchNotificationSyncDefinitionAllOf struct for EmailSearchNotificationSyncDefinitionAllOf.
EntitlementConsumption struct for EntitlementConsumption.
Entitlements struct for Entitlements.
EpochTimeRangeBoundary struct for EpochTimeRangeBoundary.
EpochTimeRangeBoundaryAllOf struct for EpochTimeRangeBoundaryAllOf.
ErrorDescription struct for ErrorDescription.
ErrorResponse struct for ErrorResponse.
EstimatedUsageDetails struct for EstimatedUsageDetails.
EstimatedUsageDetailsWithTier struct for EstimatedUsageDetailsWithTier.
EventsOfInterestScatterPanel struct for EventsOfInterestScatterPanel.
ExportableLookupTableInfo The lookup table definition independent of its location in the Library and name.
ExtractionRule struct for ExtractionRule.
ExtractionRuleAllOf struct for ExtractionRuleAllOf.
ExtractionRuleDefinition struct for ExtractionRuleDefinition.
ExtractionRuleDefinitionAllOf struct for ExtractionRuleDefinitionAllOf.
ExtraDetails struct for ExtraDetails.
FieldName struct for FieldName.
FieldQuotaUsage struct for FieldQuotaUsage.
FileCollectionErrorTracker struct for FileCollectionErrorTracker.
Folder struct for Folder.
FolderAllOf struct for FolderAllOf.
FolderDefinition struct for FolderDefinition.
FolderSyncDefinition struct for FolderSyncDefinition.
FolderSyncDefinitionAllOf struct for FolderSyncDefinitionAllOf.
GenerateReportRequest struct for GenerateReportRequest.
GenericOpenAPIError Provides access to the body, error and model on returned errors.
GetCollectorsUsageResponse struct for GetCollectorsUsageResponse.
GetSourcesUsageResponse struct for GetSourcesUsageResponse.
Grid struct for Grid.
GroupFieldsRequest Monitor type and queries.
GroupFieldsResponse Group fields for the monitor.
Header struct for Header.
HealthEvent struct for HealthEvent.
HighCardinalityDimensionDroppedTracker struct for HighCardinalityDimensionDroppedTracker.
HighCardinalityDimensionDroppedTrackerAllOf struct for HighCardinalityDimensionDroppedTrackerAllOf.
HipChat struct for HipChat.
IngestBudget struct for IngestBudget.
IngestBudgetAllOf struct for IngestBudgetAllOf.
IngestBudgetDefinition struct for IngestBudgetDefinition.
IngestBudgetDefinitionV2 struct for IngestBudgetDefinitionV2.
IngestBudgetExceededTracker struct for IngestBudgetExceededTracker.
IngestBudgetResourceIdentity struct for IngestBudgetResourceIdentity.
IngestBudgetResourceIdentityAllOf struct for IngestBudgetResourceIdentityAllOf.
IngestBudgetV2 struct for IngestBudgetV2.
IngestBudgetV2AllOf struct for IngestBudgetV2AllOf.
IngestThrottlingTracker struct for IngestThrottlingTracker.
IngestThrottlingTrackerAllOf struct for IngestThrottlingTrackerAllOf.
InstalledCollectorOfflineTracker struct for InstalledCollectorOfflineTracker.
InstalledCollectorOfflineTrackerAllOf struct for InstalledCollectorOfflineTrackerAllOf.
Iso8601TimeRangeBoundary struct for Iso8601TimeRangeBoundary.
Iso8601TimeRangeBoundaryAllOf struct for Iso8601TimeRangeBoundaryAllOf.
Jira struct for Jira.
KeyValuePair struct for KeyValuePair.
Layout struct for Layout.
LayoutStructure struct for LayoutStructure.
LinkedDashboard struct for LinkedDashboard.
ListAccessKeysResult List of access keys.
ListAppsResult List of all available apps from the App Catalog.
ListArchiveJobsCount struct for ListArchiveJobsCount.
ListArchiveJobsResponse struct for ListArchiveJobsResponse.
ListBuiltinFieldsResponse struct for ListBuiltinFieldsResponse.
ListBuiltinFieldsUsageResponse struct for ListBuiltinFieldsUsageResponse.
ListCollectorIdentitiesResponse struct for ListCollectorIdentitiesResponse.
ListConnectionsResponse struct for ListConnectionsResponse.
ListCustomFieldsResponse struct for ListCustomFieldsResponse.
ListCustomFieldsUsageResponse struct for ListCustomFieldsUsageResponse.
ListDroppedFieldsResponse struct for ListDroppedFieldsResponse.
ListDynamicRulesResponse struct for ListDynamicRulesResponse.
ListExtractionRulesResponse struct for ListExtractionRulesResponse.
ListFieldNamesResponse struct for ListFieldNamesResponse.
ListHealthEventResponse struct for ListHealthEventResponse.
ListIngestBudgetsResponse struct for ListIngestBudgetsResponse.
ListIngestBudgetsResponseV2 struct for ListIngestBudgetsResponseV2.
ListPartitionsResponse struct for ListPartitionsResponse.
ListRoleModelsResponse struct for ListRoleModelsResponse.
ListScheduledViewsResponse struct for ListScheduledViewsResponse.
ListTokensBaseResponse struct for ListTokensBaseResponse.
ListUserId struct for ListUserId.
ListUserModelsResponse struct for ListUserModelsResponse.
LiteralTimeRangeBoundary struct for LiteralTimeRangeBoundary.
LiteralTimeRangeBoundaryAllOf struct for LiteralTimeRangeBoundaryAllOf.
LogQueryVariableSourceDefinition struct for LogQueryVariableSourceDefinition.
LogQueryVariableSourceDefinitionAllOf Variable with values that are powered by a log query.
LogSearchEstimatedUsageByTierDefinition struct for LogSearchEstimatedUsageByTierDefinition.
LogSearchEstimatedUsageByTierDefinitionAllOf struct for LogSearchEstimatedUsageByTierDefinitionAllOf.
LogSearchEstimatedUsageDefinition struct for LogSearchEstimatedUsageDefinition.
LogSearchEstimatedUsageDefinitionAllOf struct for LogSearchEstimatedUsageDefinitionAllOf.
LogSearchEstimatedUsageRequest struct for LogSearchEstimatedUsageRequest.
LogSearchEstimatedUsageRequestAllOf struct for LogSearchEstimatedUsageRequestAllOf.
LogSearchEstimatedUsageRequestV2 struct for LogSearchEstimatedUsageRequestV2.
LogSearchQuery Query for which to get log fields.
LogSearchQueryTimeRangeBase Definition of a log search with query and timerange.
LogSearchQueryTimeRangeBaseAllOf struct for LogSearchQueryTimeRangeBaseAllOf.
LogSearchQueryTimeRangeBaseExceptParsingMode Definition of a log search with query and timerange.
LogsMissingDataCondition struct for LogsMissingDataCondition.
LogsMissingDataConditionAllOf A rule that defines how logs monitors should evaluate missing data and trigger notifications.
LogsOutlier The parameters extracted from the logs outlier query.
LogsOutlierCondition struct for LogsOutlierCondition.
LogsOutlierConditionAllOf A rule that defines how logs monitor should evaluate outlier data and trigger notifications.
LogsStaticCondition struct for LogsStaticCondition.
LogsStaticConditionAllOf A rule that defines how logs monitor should evaluate static data and trigger notifications.
LogsToMetricsRuleDisabledTracker struct for LogsToMetricsRuleDisabledTracker.
LogsToMetricsRuleIdentity struct for LogsToMetricsRuleIdentity.
LookupAsyncJobStatus Lookup table async job status.
LookupPreviewData The preview data of the lookup table.
LookupRequestToken Allows you to track the status of an upload or export request.
LookupTable Lookup table definition and metadata.
LookupTableAllOf struct for LookupTableAllOf.
LookupTableDefinition Definition of the lookup table.
LookupTableDefinitionAllOf struct for LookupTableDefinitionAllOf.
LookupTableField The definition of the field.
LookupTablesLimits Properties related to lookup tables being allowed and created.
LookupTableSyncDefinition struct for LookupTableSyncDefinition.
LookupUpdateDefinition The updated lookup table parameters.
MaxUserSessionTimeoutPolicy Max User Session Timeout policy.
Metadata struct for Metadata.
MetadataModel struct for MetadataModel.
MetadataVariableSourceDefinition struct for MetadataVariableSourceDefinition.
MetadataVariableSourceDefinitionAllOf Variable with values that are powered by a metadata search.
MetadataWithUserInfo struct for MetadataWithUserInfo.
MetricDefinition struct for MetricDefinition.
MetricsCardinalityLimitExceededTracker struct for MetricsCardinalityLimitExceededTracker.
MetricsCardinalityLimitExceededTrackerAllOf struct for MetricsCardinalityLimitExceededTrackerAllOf.
MetricsFilter The filter for metrics query.
MetricsHighCardinalityDetectedTracker struct for MetricsHighCardinalityDetectedTracker.
MetricsHighCardinalityDetectedTrackerAllOf struct for MetricsHighCardinalityDetectedTrackerAllOf.
MetricsMetadataKeyLengthLimitExceeded struct for MetricsMetadataKeyLengthLimitExceeded.
MetricsMetadataKeyLengthLimitExceededTracker struct for MetricsMetadataKeyLengthLimitExceededTracker.
MetricsMetadataKeyValuePairsLimitExceeded struct for MetricsMetadataKeyValuePairsLimitExceeded.
MetricsMetadataKeyValuePairsLimitExceededTracker struct for MetricsMetadataKeyValuePairsLimitExceededTracker.
MetricsMetadataLimitsExceededTracker struct for MetricsMetadataLimitsExceededTracker.
MetricsMetadataTotalMetadataSizeLimitExceeded struct for MetricsMetadataTotalMetadataSizeLimitExceeded.
MetricsMetadataTotalMetadataSizeLimitExceededTracker struct for MetricsMetadataTotalMetadataSizeLimitExceededTracker.
MetricsMetadataValueLengthLimitExceeded struct for MetricsMetadataValueLengthLimitExceeded.
MetricsMetadataValueLengthLimitExceededTracker struct for MetricsMetadataValueLengthLimitExceededTracker.
MetricsMissingDataCondition struct for MetricsMissingDataCondition.
MetricsMissingDataConditionAllOf A rule that defines how metrics monitors should evaluate missing data and trigger notifications.
MetricsOutlier The parameters extracted from the metrics outlier query.
MetricsOutlierCondition struct for MetricsOutlierCondition.
MetricsOutlierConditionAllOf A rule that defines how metrics monitor should evaluate outlier data and trigger notifications.
MetricsQueryData The data format describing a basic metrics query.
MetricsQueryRequest A list of metrics queries to run along with the time range for the query.
MetricsQueryResponse struct for MetricsQueryResponse.
MetricsQueryRow struct for MetricsQueryRow.
MetricsQuerySyncDefinition struct for MetricsQuerySyncDefinition.
MetricsSavedSearchQuerySyncDefinition Definition of a metrics query.
MetricsSavedSearchSyncDefinition struct for MetricsSavedSearchSyncDefinition.
MetricsSavedSearchSyncDefinitionAllOf struct for MetricsSavedSearchSyncDefinitionAllOf.
MetricsSearchInstance struct for MetricsSearchInstance.
MetricsSearchInstanceAllOf struct for MetricsSearchInstanceAllOf.
MetricsSearchQuery Definition of a metrics query.
MetricsSearchSyncDefinition struct for MetricsSearchSyncDefinition.
MetricsSearchSyncDefinitionAllOf struct for MetricsSearchSyncDefinitionAllOf.
MetricsSearchV1 Definition of a metrics search.
MetricsStaticCondition struct for MetricsStaticCondition.
MetricsStaticConditionAllOf A rule that defines how metrics monitor should evaluate static data and trigger notifications.
MewboardSyncDefinition struct for MewboardSyncDefinition.
MewboardSyncDefinitionAllOf struct for MewboardSyncDefinitionAllOf.
MicrosoftTeams struct for MicrosoftTeams.
MonitorNotification struct for MonitorNotification.
MonitorQueries Queries to be validated.
MonitorQueriesValidationResult Validation result for the monitor queries.
MonitorQuery A search query.
MonitorsLibraryBase struct for MonitorsLibraryBase.
MonitorsLibraryBaseExport struct for MonitorsLibraryBaseExport.
MonitorsLibraryBaseResponse struct for MonitorsLibraryBaseResponse.
MonitorsLibraryBaseUpdate struct for MonitorsLibraryBaseUpdate.
MonitorsLibraryFolder struct for MonitorsLibraryFolder.
MonitorsLibraryFolderExport struct for MonitorsLibraryFolderExport.
MonitorsLibraryFolderExportAllOf struct for MonitorsLibraryFolderExportAllOf.
MonitorsLibraryFolderResponse struct for MonitorsLibraryFolderResponse.
MonitorsLibraryFolderResponseAllOf struct for MonitorsLibraryFolderResponseAllOf.
MonitorsLibraryFolderUpdate struct for MonitorsLibraryFolderUpdate.
MonitorsLibraryItemWithPath struct for MonitorsLibraryItemWithPath.
MonitorsLibraryMonitor struct for MonitorsLibraryMonitor.
MonitorsLibraryMonitorAllOf struct for MonitorsLibraryMonitorAllOf.
MonitorsLibraryMonitorExport struct for MonitorsLibraryMonitorExport.
MonitorsLibraryMonitorResponse struct for MonitorsLibraryMonitorResponse.
MonitorsLibraryMonitorResponseAllOf struct for MonitorsLibraryMonitorResponseAllOf.
MonitorsLibraryMonitorUpdate struct for MonitorsLibraryMonitorUpdate.
MonitorUsage The usage info of monitors.
NewRelic struct for NewRelic.
NotificationThresholdSyncDefinition struct for NotificationThresholdSyncDefinition.
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
OAuthRefreshFailedTracker struct for OAuthRefreshFailedTracker.
OAuthRefreshFailedTrackerAllOf struct for OAuthRefreshFailedTrackerAllOf.
OnDemandProvisioningInfo struct for OnDemandProvisioningInfo.
OpenInQuery Raw data query for the computed signal.
Operator Result of the aggregations performed on the usages.
OperatorData The operator data for metrics query.
OperatorParameter The operator parameter for operator data.
Opsgenie struct for Opsgenie.
OrgIdentity struct for OrgIdentity.
OutlierBound The upper and lower bound of outlier/baseline.
OutlierDataValue Data value and bounds of outlier data point.
OutlierSeriesDataPoint struct for OutlierSeriesDataPoint.
OutlierSeriesDataPointAllOf Data point of outlier series.
PagerDuty struct for PagerDuty.
PaginatedListAccessKeysResult List of access keys.
Panel struct for Panel.
PanelItem struct for PanelItem.
ParameterAutoCompleteSyncDefinition struct for ParameterAutoCompleteSyncDefinition.
Partition struct for Partition.
PartitionAllOf struct for PartitionAllOf.
PartitionsResponse struct for PartitionsResponse.
PasswordPolicy Password Policy.
Path struct for Path.
PathItem struct for PathItem.
PermissionIdentifier struct for PermissionIdentifier.
PermissionIdentifierAllOf struct for PermissionIdentifierAllOf.
PermissionIdentifiers struct for PermissionIdentifiers.
Permissions struct for Permissions.
PermissionStatement struct for PermissionStatement.
PermissionStatementDefinition struct for PermissionStatementDefinition.
PermissionStatementDefinitionAllOf struct for PermissionStatementDefinitionAllOf.
PermissionStatementDefinitions struct for PermissionStatementDefinitions.
PermissionStatements struct for PermissionStatements.
PermissionSubject Identifier for the entity (subject) that is granted the permission on resource(s).
PermissionSummariesBySubjects struct for PermissionSummariesBySubjects.
PermissionSummaryBySubjects A list of PermissionSubjects and PermissionSummaryMeta(s) associated with each subject.
PermissionSummaryBySubjectsAllOf struct for PermissionSummaryBySubjectsAllOf.
PermissionSummaryMeta Permission Summary with additional information like inheritance, revocation, etc about the permission.
Plan Upgrade preview request for the account.
PlansCatalog Plans available for the account to update.
PlanUpdateEmail details of the plan for updating with contact information.
Points The `values` and `timestamps` are of the same length, and points are sorted by time ascending.
PreviewLookupTableField The properties of the field.
ProductGroup Details of product group and its quantity.
ProductSubscriptionOption Subscription option containing billing frequency and discount details.
ProductVariable Details of product variable and its quantity.
Quantity Details of unit of consumption and its value.
QueriesParametersResult Queries validation and extracted parameters result.
Query struct for Query.
QueryParameterSyncDefinition struct for QueryParameterSyncDefinition.
RelatedAlert An alert and how it is related to the given alert.
RelatedAlertsLibraryAlertResponse List of related Alerts.
RelativeTimeRangeBoundary struct for RelativeTimeRangeBoundary.
RelativeTimeRangeBoundaryAllOf struct for RelativeTimeRangeBoundaryAllOf.
ReportAction The base class of all report action types.
ReportAutoParsingInfo Auto-parsing information for the panel.
ReportFilterSyncDefinition struct for ReportFilterSyncDefinition.
ReportPanelSyncDefinition struct for ReportPanelSyncDefinition.
ResolvableTimeRange struct for ResolvableTimeRange.
ResourceIdentities struct for ResourceIdentities.
ResourceIdentity struct for ResourceIdentity.
RoleModel struct for RoleModel.
RoleModelAllOf struct for RoleModelAllOf.
RowDeleteDefinition Lookup table primary key of the row to be deleted.
RowUpdateDefinition Lookup table data to be uploaded.
S3CollectionErrorTracker struct for S3CollectionErrorTracker.
SamlIdentityProvider struct for SamlIdentityProvider.
SamlIdentityProviderAllOf struct for SamlIdentityProviderAllOf.
SamlIdentityProviderRequest struct for SamlIdentityProviderRequest.
SavedSearchSyncDefinition struct for SavedSearchSyncDefinition.
SavedSearchWithScheduleSyncDefinition struct for SavedSearchWithScheduleSyncDefinition.
SavedSearchWithScheduleSyncDefinitionAllOf struct for SavedSearchWithScheduleSyncDefinitionAllOf.
SaveMetricsSearchRequest The definition of the metrics search to save in the content library.
SaveMetricsSearchRequestAllOf struct for SaveMetricsSearchRequestAllOf.
SaveToLookupNotificationSyncDefinition struct for SaveToLookupNotificationSyncDefinition.
SaveToLookupNotificationSyncDefinitionAllOf struct for SaveToLookupNotificationSyncDefinitionAllOf.
SaveToViewNotificationSyncDefinition struct for SaveToViewNotificationSyncDefinition.
SaveToViewNotificationSyncDefinitionAllOf struct for SaveToViewNotificationSyncDefinitionAllOf.
ScheduledView struct for ScheduledView.
ScheduledViewAllOf struct for ScheduledViewAllOf.
ScheduleNotificationSyncDefinition struct for ScheduleNotificationSyncDefinition.
ScheduleSearchParameterSyncDefinition struct for ScheduleSearchParameterSyncDefinition.
SearchAuditPolicy Search Audit policy.
SearchQueryFieldAndType A log field and its associated type.
SearchScheduleSyncDefinition struct for SearchScheduleSyncDefinition.
SelfServiceCreditsBaselines Details of product variables and its quantity as required for credits.
SelfServicePlan Details about a Plan, along with its product groups and subscription options.
SeriesAxisRange The axis limitation for chart data.
SeriesData The data for visualizing monitor chart.
SeriesMetadata The metadata of time series for chart.
ServerConfiguration stores the information about a server.
ServerVariable stores the information about a server variable.
ServiceManifestDataSourceParameter struct for ServiceManifestDataSourceParameter.
ServiceNow struct for ServiceNow.
ServiceNowAllOf struct for ServiceNowAllOf.
ServiceNowConnection struct for ServiceNowConnection.
ServiceNowConnectionAllOf struct for ServiceNowConnectionAllOf.
ServiceNowDefinition struct for ServiceNowDefinition.
ServiceNowDefinitionAllOf struct for ServiceNowDefinitionAllOf.
ServiceNowFieldsSyncDefinition struct for ServiceNowFieldsSyncDefinition.
ServiceNowSearchNotificationSyncDefinition struct for ServiceNowSearchNotificationSyncDefinition.
ServiceNowSearchNotificationSyncDefinitionAllOf struct for ServiceNowSearchNotificationSyncDefinitionAllOf.
ShareDashboardsOutsideOrganizationPolicy Share Dashboards Outside Organization policy.
SharedBucket A shared bucket contains capacities which can be used my multiple entitlements which are linked to the bucket.
SignalContext struct for SignalContext.
SignalsJobResult The job result containing the job status, computed signals and any warnings.
SignalsRequest Signal Request object.
SignalsResponse Signal response object.
Slack struct for Slack.
Source struct for Source.
SourceResourceIdentity struct for SourceResourceIdentity.
SourceResourceIdentityAllOf struct for SourceResourceIdentityAllOf.
SpanIngestLimitExceededTracker struct for SpanIngestLimitExceededTracker.
StaticCondition struct for StaticCondition.
StaticConditionAllOf A rule that defines how the monitor should evaluate data and trigger notifications.
StaticSeriesDataPoint struct for StaticSeriesDataPoint.
StaticSeriesDataPointAllOf Data point of static series.
SubdomainAvailabilityResponse struct for SubdomainAvailabilityResponse.
SubdomainDefinitionResponse struct for SubdomainDefinitionResponse.
SubdomainUrlResponse struct for SubdomainUrlResponse.
SumoCloudSOAR struct for SumoCloudSOAR.
SumoSearchPanel struct for SumoSearchPanel.
SumoSearchPanelAllOf A panel that has logs and metrics search queries.
TableRow Lookup table row column and column value.
Template struct for Template.
TestConnectionResponse struct for TestConnectionResponse.
TextPanel struct for TextPanel.
TextPanelAllOf A panel that has text.
TimeRangeBoundary struct for TimeRangeBoundary.
TimeSeries struct for TimeSeries.
TimeSeriesList struct for TimeSeriesList.
TimeSeriesRow struct for TimeSeriesRow.
TokenBaseDefinition struct for TokenBaseDefinition.
TokenBaseDefinitionUpdate struct for TokenBaseDefinitionUpdate.
TokenBaseResponse struct for TokenBaseResponse.
TopologyLabelMap Map of the topology labels.
TopologySearchLabel Topology label to search for.
TotalCredits Total amount of credits to be deducted from the parent organization corresponding to the baselines.
TracesFilter The filter for traces query.
TracesQueryData The data format describing a basic traces query.
TrackerIdentity struct for TrackerIdentity.
TransformationRuleDefinition The properties that define a transformation rule.
TransformationRuleRequest A request for creating or updating a transformation rule.
TransformationRuleResponse A generic response for transformation rule.
TransformationRuleResponseAllOf struct for TransformationRuleResponseAllOf.
TransformationRulesResponse A generic response for transformation rule.
TriggerCondition struct for TriggerCondition.
UnvalidatedMonitorQuery A search query.
UpdateExtractionRuleDefinition struct for UpdateExtractionRuleDefinition.
UpdateExtractionRuleDefinitionAllOf struct for UpdateExtractionRuleDefinitionAllOf.
UpdateFolderRequest struct for UpdateFolderRequest.
UpdatePartitionDefinition struct for UpdatePartitionDefinition.
UpdateRequest Update request for the account.
UpdateRoleDefinition struct for UpdateRoleDefinition.
UpdateScheduledViewDefinition struct for UpdateScheduledViewDefinition.
UpdateUserDefinition struct for UpdateUserDefinition.
UpgradePlans Upgrade plans available for the account.
UserConcurrentSessionsLimitPolicy User Concurrent Sessions Limit policy.
UserInfo struct for UserInfo.
UserModel struct for UserModel.
UserModelAllOf struct for UserModelAllOf.
Variable struct for Variable.
VariableSourceDefinition struct for VariableSourceDefinition.
VariablesValuesData struct for VariablesValuesData.
VariableValuesData Variable values, status, type and errors for the variable values search.
VariableValuesLogQueryRequest The request to get a log query to populate variable values.
VisualAggregateData struct for VisualAggregateData.
WarningDescription Warning description.
WarningDetails Warning while computing signals.
Webhook struct for Webhook.
WebhookConnection struct for WebhookConnection.
WebhookConnectionAllOf struct for WebhookConnectionAllOf.
WebhookDefinition struct for WebhookDefinition.
WebhookDefinitionAllOf struct for WebhookDefinitionAllOf.
WebhookSearchNotificationSyncDefinition struct for WebhookSearchNotificationSyncDefinition.
WebhookSearchNotificationSyncDefinitionAllOf struct for WebhookSearchNotificationSyncDefinitionAllOf.

# Type aliases

AccessKeyManagementApiService AccessKeyManagementApi service.
AccountManagementApiService AccountManagementApi service.
AppManagementApiService AppManagementApi service.
ArchiveManagementApiService ArchiveManagementApi service.
ConnectionManagementApiService ConnectionManagementApi service.
ContentManagementApiService ContentManagementApi service.
ContentPermissionsApiService ContentPermissionsApi service.
DashboardManagementApiService DashboardManagementApi service.
DynamicParsingRuleManagementApiService DynamicParsingRuleManagementApi service.
ExtractionRuleManagementApiService ExtractionRuleManagementApi service.
FieldManagementV1ApiService FieldManagementV1Api service.
FolderManagementApiService FolderManagementApi service.
HealthEventsApiService HealthEventsApi service.
IngestBudgetManagementV1ApiService IngestBudgetManagementV1Api service.
IngestBudgetManagementV2ApiService IngestBudgetManagementV2Api service.
LogSearchesEstimatedUsageApiService LogSearchesEstimatedUsageApi service.
LookupManagementApiService LookupManagementApi service.
MetricsQueryApiService MetricsQueryApi service.
MetricsSearchesManagementApiService MetricsSearchesManagementApi service.
MonitorsLibraryManagementApiService MonitorsLibraryManagementApi service.
PartitionManagementApiService PartitionManagementApi service.
PasswordPolicyApiService PasswordPolicyApi service.
PoliciesManagementApiService PoliciesManagementApi service.
RoleManagementApiService RoleManagementApi service.
SamlConfigurationManagementApiService SamlConfigurationManagementApi service.
ScheduledViewManagementApiService ScheduledViewManagementApi service.
ServerConfigurations stores multiple ServerConfiguration items.
ServiceAllowlistManagementApiService ServiceAllowlistManagementApi service.
TokensLibraryManagementApiService TokensLibraryManagementApi service.
TransformationRuleManagementApiService TransformationRuleManagementApi service.
UserManagementApiService UserManagementApi service.