_id stringlengths 2 7 | title stringclasses 1
value | partition stringclasses 3
values | text stringlengths 6 2.61k | language stringclasses 1
value | meta_information dict |
|---|---|---|---|---|---|
c170400 | validation | // GetIntegrationSlack gets all the Slack Integrations from the system. | {
"resource": ""
} | ||
c170401 | validation | // CreateIntegrationAWS adds a new AWS Account in the AWS Integrations.
// Use this if you want to setup the integration for the first time
// or to add more accounts. | {
"resource": ""
} | ||
c170402 | validation | // GetIntegrationAWS gets all the AWS Accounts in the AWS Integrations from Datadog. | {
"resource": ""
} | ||
c170403 | validation | // DeleteIntegrationAWS removes a specific AWS Account from the AWS Integration. | {
"resource": ""
} | ||
c170404 | validation | // ListIntegrationGCP gets all Google Cloud Platform Integrations. | {
"resource": ""
} | ||
c170405 | validation | // CreateIntegrationGCP creates a new Google Cloud Platform Integration. | {
"resource": ""
} | ||
c170406 | validation | // UpdateIntegrationGCP updates a Google Cloud Platform Integration. | {
"resource": ""
} | ||
c170407 | validation | // DeleteIntegrationGCP deletes a Google Cloud Platform Integration. | {
"resource": ""
} | ||
c170408 | validation | // GetDashboardList returns a single dashboard list created on this account. | {
"resource": ""
} | ||
c170409 | validation | // GetDashboardLists returns a list of all dashboard lists created on this account. | {
"resource": ""
} | ||
c170410 | validation | // CreateDashboardList returns a single dashboard list created on this account. | {
"resource": ""
} | ||
c170411 | validation | // UpdateDashboardList returns a single dashboard list created on this account. | {
"resource": ""
} | ||
c170412 | validation | // GetDashboardListItems fetches the dashboard list's dashboard definitions. | {
"resource": ""
} | ||
c170413 | validation | // Snapshot creates an image from a graph and returns the URL of the image. | {
"resource": ""
} | ||
c170414 | validation | // SearchHosts searches through the hosts facet, returning matching hostnames. | {
"resource": ""
} | ||
c170415 | validation | // SearchMetrics searches through the metrics facet, returning matching ones. | {
"resource": ""
} | ||
c170416 | validation | // CreateAlert adds a new alert to the system. This returns a pointer to an
// Alert so you can pass that to UpdateAlert later if needed. | {
"resource": ""
} | ||
c170417 | validation | // UpdateAlert takes an alert that was previously retrieved through some method
// and sends it back to the server. | {
"resource": ""
} | ||
c170418 | validation | // GetAlert retrieves an alert by identifier. | {
"resource": ""
} | ||
c170419 | validation | // GetAlerts returns a slice of all alerts. | {
"resource": ""
} | ||
c170420 | validation | // CreateComment adds a new comment to the system. | {
"resource": ""
} | ||
c170421 | validation | // CreateRelatedComment adds a new comment, but lets you specify the related
// identifier for the comment. | {
"resource": ""
} | ||
c170422 | validation | // EditComment changes the message and possibly handle of a particular comment. | {
"resource": ""
} | ||
c170423 | validation | // CreateMonitor adds a new monitor to the system. This returns a pointer to a
// monitor so you can pass that to UpdateMonitor later if needed | {
"resource": ""
} | ||
c170424 | validation | // UpdateMonitor takes a monitor that was previously retrieved through some method
// and sends it back to the server | {
"resource": ""
} | ||
c170425 | validation | // GetMonitor retrieves a monitor by identifier | {
"resource": ""
} | ||
c170426 | validation | // GetMonitorsByName retrieves monitors by name | {
"resource": ""
} | ||
c170427 | validation | // GetMonitorsByTags retrieves monitors by a slice of tags | {
"resource": ""
} | ||
c170428 | validation | // GetMonitors returns a slice of all monitors | {
"resource": ""
} | ||
c170429 | validation | // GetSyntheticsLocations get all test locations | {
"resource": ""
} | ||
c170430 | validation | // GetBool is a helper routine that returns a boolean representing
// if a value was set, and if so, dereferences the pointer to it. | {
"resource": ""
} | ||
c170431 | validation | // GetIntOk is a helper routine that returns a boolean representing
// if a value was set, and if so, dereferences the pointer to it. | {
"resource": ""
} | ||
c170432 | validation | // GetStringOk is a helper routine that returns a boolean representing
// if a value was set, and if so, dereferences the pointer to it. | {
"resource": ""
} | ||
c170433 | validation | // GetJsonNumberOk is a helper routine that returns a boolean representing
// if a value was set, and if so, dereferences the pointer to it. | {
"resource": ""
} | ||
c170434 | validation | // GetPrecision is a helper routine that returns a boolean representing
// if a value was set, and if so, dereferences the pointer to it. | {
"resource": ""
} | ||
c170435 | validation | // GetStringId is a helper routine that allows screenboards and timeboards to be retrieved
// by either the legacy numerical format or the new string format.
// It returns the id as is if it is a string, converts it to a string if it is an integer.
// It return an error if the type is neither string or an integer | {
"resource": ""
} | ||
c170436 | validation | // GetDashboard returns a single dashboard created on this account. | {
"resource": ""
} | ||
c170437 | validation | // GetDashboards returns a list of all dashboards created on this account. | {
"resource": ""
} | ||
c170438 | validation | // CreateDashboard creates a new dashboard when given a Dashboard struct. Note
// that the Id, Resource, Url and similar elements are not used in creation. | {
"resource": ""
} | ||
c170439 | validation | // UpdateDashboard in essence takes a Dashboard struct and persists it back to
// the server. Use this if you've updated your local and need to push it back. | {
"resource": ""
} | ||
c170440 | validation | // InviteUsers takes a slice of email addresses and sends invitations to them. | {
"resource": ""
} | ||
c170441 | validation | // CreateUser creates an user account for an email address | {
"resource": ""
} | ||
c170442 | validation | // GetUsers returns all user, or an error if not found | {
"resource": ""
} | ||
c170443 | validation | // GetUser returns the user that match a handle, or an error if not found | {
"resource": ""
} | ||
c170444 | validation | // UpdateUser updates a user with the content of `user`,
// and returns an error if the update failed | {
"resource": ""
} | ||
c170445 | validation | // DeleteUser deletes a user and returns an error if deletion failed | {
"resource": ""
} | ||
c170446 | validation | // GetBoard returns a single dashboard created on this account. | {
"resource": ""
} | ||
c170447 | validation | // DeleteBoard deletes a dashboard by the identifier. | {
"resource": ""
} | ||
c170448 | validation | // CreateBoard creates a new dashboard when given a Board struct. | {
"resource": ""
} | ||
c170449 | validation | // UpdateBoard takes a Board struct and persists it back to the server.
// Use this if you've updated your local and need to push it back. | {
"resource": ""
} | ||
c170450 | validation | // NewClient returns a new datadog.Client which can be used to access the API
// methods. The expected argument is the API key. | {
"resource": ""
} | ||
c170451 | validation | // SetKeys changes the value of apiKey and appKey. | {
"resource": ""
} | ||
c170452 | validation | // Validate checks if the API and application keys are valid. | {
"resource": ""
} | ||
c170453 | validation | // MuteHost mutes all monitors for the given host | {
"resource": ""
} | ||
c170454 | validation | // UnmuteHost unmutes all monitors for the given host | {
"resource": ""
} | ||
c170455 | validation | // GetSilenced returns the Silenced field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170456 | validation | // GetSilencedOk returns a tuple with the Silenced field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170457 | validation | // HasSilenced returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170458 | validation | // GetState returns the State field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170459 | validation | // GetStateOk returns a tuple with the State field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170460 | validation | // HasState returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170461 | validation | // GetAlertIdOk returns a tuple with the AlertId field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170462 | validation | // GetKey returns the Key field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170463 | validation | // GetKeyOk returns a tuple with the Key field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170464 | validation | // HasKey returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170465 | validation | // GetFacetOk returns a tuple with the Facet field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170466 | validation | // GetOrder returns the Order field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170467 | validation | // GetOrderOk returns a tuple with the Order field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170468 | validation | // HasOrder returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170469 | validation | // GetAuthorHandle returns the AuthorHandle field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170470 | validation | // GetAuthorHandleOk returns a tuple with the AuthorHandle field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170471 | validation | // HasAuthorHandle returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170472 | validation | // GetIsReadOnly returns the IsReadOnly field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170473 | validation | // GetIsReadOnlyOk returns a tuple with the IsReadOnly field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170474 | validation | // HasIsReadOnly returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170475 | validation | // GetLayout returns the Layout field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170476 | validation | // GetLayoutOk returns a tuple with the Layout field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170477 | validation | // HasLayout returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170478 | validation | // GetShowPresent returns the ShowPresent field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170479 | validation | // GetShowPresentOk returns a tuple with the ShowPresent field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170480 | validation | // HasShowPresent returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170481 | validation | // GetChannelName returns the ChannelName field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170482 | validation | // GetChannelNameOk returns a tuple with the ChannelName field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170483 | validation | // HasChannelName returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170484 | validation | // GetTransferAllUserComments returns the TransferAllUserComments field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170485 | validation | // GetTransferAllUserCommentsOk returns a tuple with the TransferAllUserComments field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170486 | validation | // HasTransferAllUserComments returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170487 | validation | // GetHostName returns the HostName field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170488 | validation | // GetHostNameOk returns a tuple with the HostName field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170489 | validation | // HasHostName returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170490 | validation | // GetTimestamp returns the Timestamp field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170491 | validation | // GetTimestampOk returns a tuple with the Timestamp field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170492 | validation | // HasTimestamp returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170493 | validation | // GetRelatedId returns the RelatedId field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170494 | validation | // GetRelatedIdOk returns a tuple with the RelatedId field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170495 | validation | // HasRelatedId returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170496 | validation | // GetImageURL returns the ImageURL field if non-nil, zero value otherwise. | {
"resource": ""
} | ||
c170497 | validation | // GetImageURLOk returns a tuple with the ImageURL field if it's non-nil, zero value otherwise
// and a boolean to check if the value has been set. | {
"resource": ""
} | ||
c170498 | validation | // HasImageURL returns a boolean if a field has been set. | {
"resource": ""
} | ||
c170499 | validation | // GetInvert returns the Invert field if non-nil, zero value otherwise. | {
"resource": ""
} |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.