datadog_api_client 2.37.0 → 2.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.apigentools-info +4 -4
- data/.generator/schemas/v1/openapi.yaml +20 -1
- data/.generator/schemas/v2/openapi.yaml +1083 -74
- data/CHANGELOG.md +20 -0
- data/examples/v2/action-connection/GetAppKeyRegistration.rb +5 -0
- data/examples/v2/action-connection/ListAppKeyRegistrations.rb +5 -0
- data/examples/v2/action-connection/RegisterAppKey.rb +5 -0
- data/examples/v2/action-connection/UnregisterAppKey.rb +5 -0
- data/examples/v2/events/CreateEvent.rb +4 -2
- data/examples/v2/monitors/CreateMonitorUserTemplate.rb +37 -0
- data/examples/v2/monitors/DeleteMonitorUserTemplate.rb +8 -0
- data/examples/v2/monitors/GetMonitorUserTemplate.rb +11 -0
- data/examples/v2/monitors/ListMonitorUserTemplates.rb +8 -0
- data/examples/v2/monitors/UpdateMonitorUserTemplate.rb +41 -0
- data/examples/v2/monitors/ValidateExistingMonitorUserTemplate.rb +41 -0
- data/examples/v2/monitors/ValidateMonitorUserTemplate.rb +37 -0
- data/lib/datadog_api_client/configuration.rb +59 -0
- data/lib/datadog_api_client/inflector.rb +29 -0
- data/lib/datadog_api_client/v1/models/synthetics_mobile_test.rb +12 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_request.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_request_dns_server_port.rb +63 -0
- data/lib/datadog_api_client/v2/api/action_connection_api.rb +263 -4
- data/lib/datadog_api_client/v2/api/app_builder_api.rb +8 -8
- data/lib/datadog_api_client/v2/api/events_api.rb +8 -4
- data/lib/datadog_api_client/v2/api/monitors_api.rb +512 -0
- data/lib/datadog_api_client/v2/api/workflow_automation_api.rb +8 -8
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes.rb +145 -0
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes_links_items.rb +152 -0
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes_links_items_category.rb +28 -0
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes_priority.rb +30 -0
- data/lib/datadog_api_client/v2/models/alert_event_custom_attributes_status.rb +28 -0
- data/lib/datadog_api_client/v2/models/app_key_registration_data.rb +133 -0
- data/lib/datadog_api_client/v2/models/app_key_registration_data_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes.rb +19 -33
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_author.rb +10 -31
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_changed_resource.rb +15 -32
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_changed_resource_type.rb +1 -1
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_impacted_resources_items.rb +15 -32
- data/lib/datadog_api_client/v2/models/change_event_custom_attributes_impacted_resources_items_type.rb +1 -1
- data/lib/datadog_api_client/v2/models/event_category.rb +2 -1
- data/lib/datadog_api_client/v2/models/event_create_request.rb +32 -3
- data/lib/datadog_api_client/v2/models/event_create_request_payload.rb +20 -2
- data/lib/datadog_api_client/v2/models/event_create_response.rb +3 -3
- data/lib/datadog_api_client/v2/models/event_create_response_attributes.rb +2 -2
- data/lib/datadog_api_client/v2/models/event_create_response_attributes_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/event_create_response_attributes_attributes_evt.rb +14 -4
- data/lib/datadog_api_client/v2/models/event_create_response_payload.rb +15 -5
- data/lib/datadog_api_client/v2/models/event_create_response_payload_links.rb +105 -0
- data/lib/datadog_api_client/v2/models/event_payload.rb +48 -36
- data/lib/datadog_api_client/v2/models/event_payload_attributes.rb +3 -2
- data/lib/datadog_api_client/v2/models/event_payload_integration_id.rb +26 -0
- data/lib/datadog_api_client/v2/models/get_app_key_registration_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/incident_create_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/incident_response_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/job_definition_from_rule.rb +1 -26
- data/lib/datadog_api_client/v2/models/list_app_key_registrations_response.rb +117 -0
- data/lib/datadog_api_client/v2/models/list_app_key_registrations_response_meta.rb +115 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template.rb +200 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_create_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_create_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_create_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_list_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_request_attributes.rb +172 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_resource_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_response_attributes.rb +188 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_response_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_response_data_with_versions.rb +125 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_template_variables_items.rb +132 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_update_data.rb +165 -0
- data/lib/datadog_api_client/v2/models/monitor_user_template_update_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/register_app_key_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/simple_monitor_user_template.rb +188 -0
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +41 -1
@@ -0,0 +1,105 @@
|
|
1
|
+
=begin
|
2
|
+
#Datadog API V2 Collection
|
3
|
+
|
4
|
+
#Collection of all Datadog Public endpoints.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
Contact: support@datadoghq.com
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
9
|
+
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
13
|
+
|
14
|
+
=end
|
15
|
+
|
16
|
+
require 'date'
|
17
|
+
require 'time'
|
18
|
+
|
19
|
+
module DatadogAPIClient::V2
|
20
|
+
# The response object after creating an app key registration.
|
21
|
+
class RegisterAppKeyResponse
|
22
|
+
include BaseGenericModel
|
23
|
+
|
24
|
+
# Data related to the app key registration.
|
25
|
+
attr_accessor :data
|
26
|
+
|
27
|
+
attr_accessor :additional_properties
|
28
|
+
|
29
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
30
|
+
# @!visibility private
|
31
|
+
def self.attribute_map
|
32
|
+
{
|
33
|
+
:'data' => :'data'
|
34
|
+
}
|
35
|
+
end
|
36
|
+
|
37
|
+
# Attribute type mapping.
|
38
|
+
# @!visibility private
|
39
|
+
def self.openapi_types
|
40
|
+
{
|
41
|
+
:'data' => :'AppKeyRegistrationData'
|
42
|
+
}
|
43
|
+
end
|
44
|
+
|
45
|
+
# Initializes the object
|
46
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
47
|
+
# @!visibility private
|
48
|
+
def initialize(attributes = {})
|
49
|
+
if (!attributes.is_a?(Hash))
|
50
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::RegisterAppKeyResponse` initialize method"
|
51
|
+
end
|
52
|
+
|
53
|
+
self.additional_properties = {}
|
54
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
55
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
56
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
57
|
+
self.additional_properties[k.to_sym] = v
|
58
|
+
else
|
59
|
+
h[k.to_sym] = v
|
60
|
+
end
|
61
|
+
}
|
62
|
+
|
63
|
+
if attributes.key?(:'data')
|
64
|
+
self.data = attributes[:'data']
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
# Returns the object in the form of hash, with additionalProperties support.
|
69
|
+
# @return [Hash] Returns the object in the form of hash
|
70
|
+
# @!visibility private
|
71
|
+
def to_hash
|
72
|
+
hash = {}
|
73
|
+
self.class.attribute_map.each_pair do |attr, param|
|
74
|
+
value = self.send(attr)
|
75
|
+
if value.nil?
|
76
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
77
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
78
|
+
end
|
79
|
+
|
80
|
+
hash[param] = _to_hash(value)
|
81
|
+
end
|
82
|
+
self.additional_properties.each_pair do |attr, value|
|
83
|
+
hash[attr] = value
|
84
|
+
end
|
85
|
+
hash
|
86
|
+
end
|
87
|
+
|
88
|
+
# Checks equality by comparing each attribute.
|
89
|
+
# @param o [Object] Object to be compared
|
90
|
+
# @!visibility private
|
91
|
+
def ==(o)
|
92
|
+
return true if self.equal?(o)
|
93
|
+
self.class == o.class &&
|
94
|
+
data == o.data &&
|
95
|
+
additional_properties == o.additional_properties
|
96
|
+
end
|
97
|
+
|
98
|
+
# Calculates hash code according to all attributes.
|
99
|
+
# @return [Integer] Hash code
|
100
|
+
# @!visibility private
|
101
|
+
def hash
|
102
|
+
[data, additional_properties].hash
|
103
|
+
end
|
104
|
+
end
|
105
|
+
end
|
@@ -0,0 +1,188 @@
|
|
1
|
+
=begin
|
2
|
+
#Datadog API V2 Collection
|
3
|
+
|
4
|
+
#Collection of all Datadog Public endpoints.
|
5
|
+
|
6
|
+
The version of the OpenAPI document: 1.0
|
7
|
+
Contact: support@datadoghq.com
|
8
|
+
Generated by: https://github.com/DataDog/datadog-api-client-ruby/tree/master/.generator
|
9
|
+
|
10
|
+
Unless explicitly stated otherwise all files in this repository are licensed under the Apache-2.0 License.
|
11
|
+
This product includes software developed at Datadog (https://www.datadoghq.com/).
|
12
|
+
Copyright 2020-Present Datadog, Inc.
|
13
|
+
|
14
|
+
=end
|
15
|
+
|
16
|
+
require 'date'
|
17
|
+
require 'time'
|
18
|
+
|
19
|
+
module DatadogAPIClient::V2
|
20
|
+
# A simplified version of a monitor user template.
|
21
|
+
class SimpleMonitorUserTemplate
|
22
|
+
include BaseGenericModel
|
23
|
+
|
24
|
+
# The created timestamp of the template.
|
25
|
+
attr_accessor :created
|
26
|
+
|
27
|
+
# A brief description of the monitor user template.
|
28
|
+
attr_accessor :description
|
29
|
+
|
30
|
+
# The unique identifier. The initial version will match the template ID.
|
31
|
+
attr_accessor :id
|
32
|
+
|
33
|
+
# A valid monitor definition in the same format as the [V1 Monitor API](https://docs.datadoghq.com/api/latest/monitors/#create-a-monitor).
|
34
|
+
attr_accessor :monitor_definition
|
35
|
+
|
36
|
+
# The definition of `MonitorUserTemplateTags` object.
|
37
|
+
attr_accessor :tags
|
38
|
+
|
39
|
+
# The definition of `MonitorUserTemplateTemplateVariables` object.
|
40
|
+
attr_accessor :template_variables
|
41
|
+
|
42
|
+
# The title of the monitor user template.
|
43
|
+
attr_accessor :title
|
44
|
+
|
45
|
+
# The version of the monitor user template.
|
46
|
+
attr_accessor :version
|
47
|
+
|
48
|
+
attr_accessor :additional_properties
|
49
|
+
|
50
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
51
|
+
# @!visibility private
|
52
|
+
def self.attribute_map
|
53
|
+
{
|
54
|
+
:'created' => :'created',
|
55
|
+
:'description' => :'description',
|
56
|
+
:'id' => :'id',
|
57
|
+
:'monitor_definition' => :'monitor_definition',
|
58
|
+
:'tags' => :'tags',
|
59
|
+
:'template_variables' => :'template_variables',
|
60
|
+
:'title' => :'title',
|
61
|
+
:'version' => :'version'
|
62
|
+
}
|
63
|
+
end
|
64
|
+
|
65
|
+
# Attribute type mapping.
|
66
|
+
# @!visibility private
|
67
|
+
def self.openapi_types
|
68
|
+
{
|
69
|
+
:'created' => :'Time',
|
70
|
+
:'description' => :'String',
|
71
|
+
:'id' => :'String',
|
72
|
+
:'monitor_definition' => :'Hash<String, Object>',
|
73
|
+
:'tags' => :'Array<String>',
|
74
|
+
:'template_variables' => :'Array<MonitorUserTemplateTemplateVariablesItems>',
|
75
|
+
:'title' => :'String',
|
76
|
+
:'version' => :'Integer'
|
77
|
+
}
|
78
|
+
end
|
79
|
+
|
80
|
+
# List of attributes with nullable: true
|
81
|
+
# @!visibility private
|
82
|
+
def self.openapi_nullable
|
83
|
+
Set.new([
|
84
|
+
:'description',
|
85
|
+
:'version',
|
86
|
+
])
|
87
|
+
end
|
88
|
+
|
89
|
+
# Initializes the object
|
90
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
91
|
+
# @!visibility private
|
92
|
+
def initialize(attributes = {})
|
93
|
+
if (!attributes.is_a?(Hash))
|
94
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SimpleMonitorUserTemplate` initialize method"
|
95
|
+
end
|
96
|
+
|
97
|
+
self.additional_properties = {}
|
98
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
99
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
100
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
101
|
+
self.additional_properties[k.to_sym] = v
|
102
|
+
else
|
103
|
+
h[k.to_sym] = v
|
104
|
+
end
|
105
|
+
}
|
106
|
+
|
107
|
+
if attributes.key?(:'created')
|
108
|
+
self.created = attributes[:'created']
|
109
|
+
end
|
110
|
+
|
111
|
+
if attributes.key?(:'description')
|
112
|
+
self.description = attributes[:'description']
|
113
|
+
end
|
114
|
+
|
115
|
+
if attributes.key?(:'id')
|
116
|
+
self.id = attributes[:'id']
|
117
|
+
end
|
118
|
+
|
119
|
+
if attributes.key?(:'monitor_definition')
|
120
|
+
self.monitor_definition = attributes[:'monitor_definition']
|
121
|
+
end
|
122
|
+
|
123
|
+
if attributes.key?(:'tags')
|
124
|
+
if (value = attributes[:'tags']).is_a?(Array)
|
125
|
+
self.tags = value
|
126
|
+
end
|
127
|
+
end
|
128
|
+
|
129
|
+
if attributes.key?(:'template_variables')
|
130
|
+
if (value = attributes[:'template_variables']).is_a?(Array)
|
131
|
+
self.template_variables = value
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
if attributes.key?(:'title')
|
136
|
+
self.title = attributes[:'title']
|
137
|
+
end
|
138
|
+
|
139
|
+
if attributes.key?(:'version')
|
140
|
+
self.version = attributes[:'version']
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
# Returns the object in the form of hash, with additionalProperties support.
|
145
|
+
# @return [Hash] Returns the object in the form of hash
|
146
|
+
# @!visibility private
|
147
|
+
def to_hash
|
148
|
+
hash = {}
|
149
|
+
self.class.attribute_map.each_pair do |attr, param|
|
150
|
+
value = self.send(attr)
|
151
|
+
if value.nil?
|
152
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
153
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
154
|
+
end
|
155
|
+
|
156
|
+
hash[param] = _to_hash(value)
|
157
|
+
end
|
158
|
+
self.additional_properties.each_pair do |attr, value|
|
159
|
+
hash[attr] = value
|
160
|
+
end
|
161
|
+
hash
|
162
|
+
end
|
163
|
+
|
164
|
+
# Checks equality by comparing each attribute.
|
165
|
+
# @param o [Object] Object to be compared
|
166
|
+
# @!visibility private
|
167
|
+
def ==(o)
|
168
|
+
return true if self.equal?(o)
|
169
|
+
self.class == o.class &&
|
170
|
+
created == o.created &&
|
171
|
+
description == o.description &&
|
172
|
+
id == o.id &&
|
173
|
+
monitor_definition == o.monitor_definition &&
|
174
|
+
tags == o.tags &&
|
175
|
+
template_variables == o.template_variables &&
|
176
|
+
title == o.title &&
|
177
|
+
version == o.version &&
|
178
|
+
additional_properties == o.additional_properties
|
179
|
+
end
|
180
|
+
|
181
|
+
# Calculates hash code according to all attributes.
|
182
|
+
# @return [Integer] Hash code
|
183
|
+
# @!visibility private
|
184
|
+
def hash
|
185
|
+
[created, description, id, monitor_definition, tags, template_variables, title, version, additional_properties].hash
|
186
|
+
end
|
187
|
+
end
|
188
|
+
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: datadog_api_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.38.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Datadog, Inc.
|
@@ -520,6 +520,10 @@ files:
|
|
520
520
|
- examples/v2/action-connection/CreateActionConnection.rb
|
521
521
|
- examples/v2/action-connection/DeleteActionConnection.rb
|
522
522
|
- examples/v2/action-connection/GetActionConnection.rb
|
523
|
+
- examples/v2/action-connection/GetAppKeyRegistration.rb
|
524
|
+
- examples/v2/action-connection/ListAppKeyRegistrations.rb
|
525
|
+
- examples/v2/action-connection/RegisterAppKey.rb
|
526
|
+
- examples/v2/action-connection/UnregisterAppKey.rb
|
523
527
|
- examples/v2/action-connection/UpdateActionConnection.rb
|
524
528
|
- examples/v2/agentless-scanning/CreateAwsOnDemandTask.rb
|
525
529
|
- examples/v2/agentless-scanning/CreateAwsScanOptions.rb
|
@@ -872,14 +876,21 @@ files:
|
|
872
876
|
- examples/v2/microsoft-teams-integration/UpdateWorkflowsWebhookHandle_163189594.rb
|
873
877
|
- examples/v2/monitors/CreateMonitorConfigPolicy.rb
|
874
878
|
- examples/v2/monitors/CreateMonitorNotificationRule.rb
|
879
|
+
- examples/v2/monitors/CreateMonitorUserTemplate.rb
|
875
880
|
- examples/v2/monitors/DeleteMonitorConfigPolicy.rb
|
876
881
|
- examples/v2/monitors/DeleteMonitorNotificationRule.rb
|
882
|
+
- examples/v2/monitors/DeleteMonitorUserTemplate.rb
|
877
883
|
- examples/v2/monitors/GetMonitorConfigPolicy.rb
|
878
884
|
- examples/v2/monitors/GetMonitorNotificationRule.rb
|
879
885
|
- examples/v2/monitors/GetMonitorNotificationRules.rb
|
886
|
+
- examples/v2/monitors/GetMonitorUserTemplate.rb
|
880
887
|
- examples/v2/monitors/ListMonitorConfigPolicies.rb
|
888
|
+
- examples/v2/monitors/ListMonitorUserTemplates.rb
|
881
889
|
- examples/v2/monitors/UpdateMonitorConfigPolicy.rb
|
882
890
|
- examples/v2/monitors/UpdateMonitorNotificationRule.rb
|
891
|
+
- examples/v2/monitors/UpdateMonitorUserTemplate.rb
|
892
|
+
- examples/v2/monitors/ValidateExistingMonitorUserTemplate.rb
|
893
|
+
- examples/v2/monitors/ValidateMonitorUserTemplate.rb
|
883
894
|
- examples/v2/network-device-monitoring/GetDevice.rb
|
884
895
|
- examples/v2/network-device-monitoring/GetInterfaces.rb
|
885
896
|
- examples/v2/network-device-monitoring/ListDeviceUserTags.rb
|
@@ -1892,6 +1903,7 @@ files:
|
|
1892
1903
|
- lib/datadog_api_client/v1/models/synthetics_test_request_body_type.rb
|
1893
1904
|
- lib/datadog_api_client/v1/models/synthetics_test_request_certificate.rb
|
1894
1905
|
- lib/datadog_api_client/v1/models/synthetics_test_request_certificate_item.rb
|
1906
|
+
- lib/datadog_api_client/v1/models/synthetics_test_request_dns_server_port.rb
|
1895
1907
|
- lib/datadog_api_client/v1/models/synthetics_test_request_port.rb
|
1896
1908
|
- lib/datadog_api_client/v1/models/synthetics_test_request_proxy.rb
|
1897
1909
|
- lib/datadog_api_client/v1/models/synthetics_test_restriction_policy_binding.rb
|
@@ -2209,6 +2221,11 @@ files:
|
|
2209
2221
|
- lib/datadog_api_client/v2/models/active_billing_dimensions_type.rb
|
2210
2222
|
- lib/datadog_api_client/v2/models/add_member_team_request.rb
|
2211
2223
|
- lib/datadog_api_client/v2/models/advisory.rb
|
2224
|
+
- lib/datadog_api_client/v2/models/alert_event_custom_attributes.rb
|
2225
|
+
- lib/datadog_api_client/v2/models/alert_event_custom_attributes_links_items.rb
|
2226
|
+
- lib/datadog_api_client/v2/models/alert_event_custom_attributes_links_items_category.rb
|
2227
|
+
- lib/datadog_api_client/v2/models/alert_event_custom_attributes_priority.rb
|
2228
|
+
- lib/datadog_api_client/v2/models/alert_event_custom_attributes_status.rb
|
2212
2229
|
- lib/datadog_api_client/v2/models/annotation.rb
|
2213
2230
|
- lib/datadog_api_client/v2/models/annotation_display.rb
|
2214
2231
|
- lib/datadog_api_client/v2/models/annotation_display_bounds.rb
|
@@ -2236,6 +2253,8 @@ files:
|
|
2236
2253
|
- lib/datadog_api_client/v2/models/app_builder_event_type.rb
|
2237
2254
|
- lib/datadog_api_client/v2/models/app_definition_type.rb
|
2238
2255
|
- lib/datadog_api_client/v2/models/app_deployment_type.rb
|
2256
|
+
- lib/datadog_api_client/v2/models/app_key_registration_data.rb
|
2257
|
+
- lib/datadog_api_client/v2/models/app_key_registration_data_type.rb
|
2239
2258
|
- lib/datadog_api_client/v2/models/app_meta.rb
|
2240
2259
|
- lib/datadog_api_client/v2/models/app_relationship.rb
|
2241
2260
|
- lib/datadog_api_client/v2/models/app_trigger_wrapper.rb
|
@@ -3031,8 +3050,10 @@ files:
|
|
3031
3050
|
- lib/datadog_api_client/v2/models/event_create_response_attributes_attributes.rb
|
3032
3051
|
- lib/datadog_api_client/v2/models/event_create_response_attributes_attributes_evt.rb
|
3033
3052
|
- lib/datadog_api_client/v2/models/event_create_response_payload.rb
|
3053
|
+
- lib/datadog_api_client/v2/models/event_create_response_payload_links.rb
|
3034
3054
|
- lib/datadog_api_client/v2/models/event_payload.rb
|
3035
3055
|
- lib/datadog_api_client/v2/models/event_payload_attributes.rb
|
3056
|
+
- lib/datadog_api_client/v2/models/event_payload_integration_id.rb
|
3036
3057
|
- lib/datadog_api_client/v2/models/event_priority.rb
|
3037
3058
|
- lib/datadog_api_client/v2/models/event_response.rb
|
3038
3059
|
- lib/datadog_api_client/v2/models/event_response_attributes.rb
|
@@ -3108,6 +3129,7 @@ files:
|
|
3108
3129
|
- lib/datadog_api_client/v2/models/gcpsts_service_account_update_request_data.rb
|
3109
3130
|
- lib/datadog_api_client/v2/models/gcpsts_service_accounts_response.rb
|
3110
3131
|
- lib/datadog_api_client/v2/models/get_action_connection_response.rb
|
3132
|
+
- lib/datadog_api_client/v2/models/get_app_key_registration_response.rb
|
3111
3133
|
- lib/datadog_api_client/v2/models/get_app_response.rb
|
3112
3134
|
- lib/datadog_api_client/v2/models/get_app_response_data.rb
|
3113
3135
|
- lib/datadog_api_client/v2/models/get_app_response_data_attributes.rb
|
@@ -3344,6 +3366,8 @@ files:
|
|
3344
3366
|
- lib/datadog_api_client/v2/models/list_apis_response_data_attributes.rb
|
3345
3367
|
- lib/datadog_api_client/v2/models/list_apis_response_meta.rb
|
3346
3368
|
- lib/datadog_api_client/v2/models/list_apis_response_meta_pagination.rb
|
3369
|
+
- lib/datadog_api_client/v2/models/list_app_key_registrations_response.rb
|
3370
|
+
- lib/datadog_api_client/v2/models/list_app_key_registrations_response_meta.rb
|
3347
3371
|
- lib/datadog_api_client/v2/models/list_application_keys_response.rb
|
3348
3372
|
- lib/datadog_api_client/v2/models/list_apps_response.rb
|
3349
3373
|
- lib/datadog_api_client/v2/models/list_apps_response_data_items.rb
|
@@ -3615,6 +3639,20 @@ files:
|
|
3615
3639
|
- lib/datadog_api_client/v2/models/monitor_trigger.rb
|
3616
3640
|
- lib/datadog_api_client/v2/models/monitor_trigger_wrapper.rb
|
3617
3641
|
- lib/datadog_api_client/v2/models/monitor_type.rb
|
3642
|
+
- lib/datadog_api_client/v2/models/monitor_user_template.rb
|
3643
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_create_data.rb
|
3644
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_create_request.rb
|
3645
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_create_response.rb
|
3646
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_list_response.rb
|
3647
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_request_attributes.rb
|
3648
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_resource_type.rb
|
3649
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_response.rb
|
3650
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_response_attributes.rb
|
3651
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_response_data.rb
|
3652
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_response_data_with_versions.rb
|
3653
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_template_variables_items.rb
|
3654
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_update_data.rb
|
3655
|
+
- lib/datadog_api_client/v2/models/monitor_user_template_update_request.rb
|
3618
3656
|
- lib/datadog_api_client/v2/models/monthly_cost_attribution_attributes.rb
|
3619
3657
|
- lib/datadog_api_client/v2/models/monthly_cost_attribution_body.rb
|
3620
3658
|
- lib/datadog_api_client/v2/models/monthly_cost_attribution_meta.rb
|
@@ -3924,6 +3962,7 @@ files:
|
|
3924
3962
|
- lib/datadog_api_client/v2/models/query_sort_order.rb
|
3925
3963
|
- lib/datadog_api_client/v2/models/readiness_gate.rb
|
3926
3964
|
- lib/datadog_api_client/v2/models/readiness_gate_threshold_type.rb
|
3965
|
+
- lib/datadog_api_client/v2/models/register_app_key_response.rb
|
3927
3966
|
- lib/datadog_api_client/v2/models/relation_attributes.rb
|
3928
3967
|
- lib/datadog_api_client/v2/models/relation_entity.rb
|
3929
3968
|
- lib/datadog_api_client/v2/models/relation_include_type.rb
|
@@ -4437,6 +4476,7 @@ files:
|
|
4437
4476
|
- lib/datadog_api_client/v2/models/shift_data_relationships_user_data_type.rb
|
4438
4477
|
- lib/datadog_api_client/v2/models/shift_data_type.rb
|
4439
4478
|
- lib/datadog_api_client/v2/models/shift_included.rb
|
4479
|
+
- lib/datadog_api_client/v2/models/simple_monitor_user_template.rb
|
4440
4480
|
- lib/datadog_api_client/v2/models/single_aggregated_connection_response_array.rb
|
4441
4481
|
- lib/datadog_api_client/v2/models/single_aggregated_connection_response_data.rb
|
4442
4482
|
- lib/datadog_api_client/v2/models/single_aggregated_connection_response_data_attributes.rb
|