datadog_api_client 2.47.0 → 2.48.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/.generator/schemas/v1/openapi.yaml +96 -5
- data/.generator/schemas/v2/openapi.yaml +2453 -707
- data/CHANGELOG.md +20 -0
- data/examples/v2/incidents/CreateIncidentAttachment.rb +22 -0
- data/examples/v2/incidents/DeleteIncidentAttachment.rb +8 -0
- data/examples/v2/incidents/ListIncidentAttachments.rb +1 -1
- data/examples/v2/incidents/UpdateIncidentAttachment.rb +20 -0
- data/examples/v2/on-call/CreateUserNotificationRule.rb +29 -0
- data/examples/v2/on-call/DeleteUserNotificationRule.rb +11 -0
- data/examples/v2/on-call/GetUserNotificationRule.rb +14 -0
- data/examples/v2/on-call/ListUserNotificationRules.rb +11 -0
- data/examples/v2/on-call/UpdateUserNotificationRule.rb +36 -0
- data/examples/v2/product-analytics/SubmitProductAnalyticsEvent.rb +24 -0
- data/examples/v2/security-monitoring/CreateSecurityMonitoringRule_2323193894.rb +48 -0
- data/examples/v2/synthetics/PatchGlobalVariable.rb +19 -0
- data/examples/v2/teams/CreateTeamNotificationRule.rb +23 -0
- data/examples/v2/teams/DeleteTeamConnections.rb +0 -3
- data/examples/v2/teams/DeleteTeamNotificationRule.rb +11 -0
- data/examples/v2/teams/GetTeamNotificationRule.rb +11 -0
- data/examples/v2/teams/GetTeamNotificationRules.rb +8 -0
- data/examples/v2/teams/GetTeamSync.rb +0 -3
- data/examples/v2/teams/ListTeamConnections.rb +0 -3
- data/examples/v2/teams/ListTeamConnections_2418873869.rb +0 -3
- data/examples/v2/teams/SyncTeams.rb +0 -3
- data/examples/v2/teams/SyncTeams_3215592344.rb +0 -3
- data/examples/v2/teams/UpdateTeamNotificationRule.rb +27 -0
- data/lib/datadog_api_client/configuration.rb +55 -6
- data/lib/datadog_api_client/inflector.rb +92 -20
- data/lib/datadog_api_client/v1/api/synthetics_api.rb +3 -3
- data/lib/datadog_api_client/v1/api/usage_metering_api.rb +6 -4
- data/lib/datadog_api_client/v1/models/hourly_usage_attribution_usage_type.rb +3 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_supported_metrics.rb +6 -0
- data/lib/datadog_api_client/v1/models/monthly_usage_attribution_values.rb +61 -1
- data/lib/datadog_api_client/v1/models/synthetics_list_tests_response.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_details.rb +1 -1
- data/lib/datadog_api_client/v1/models/synthetics_test_details_without_steps.rb +221 -0
- data/lib/datadog_api_client/v2/api/dora_metrics_api.rb +8 -8
- data/lib/datadog_api_client/v2/api/incidents_api.rb +188 -36
- data/lib/datadog_api_client/v2/api/on_call_api.rb +360 -0
- data/lib/datadog_api_client/v2/api/product_analytics_api.rb +121 -0
- data/lib/datadog_api_client/v2/api/software_catalog_api.rb +4 -0
- data/lib/datadog_api_client/v2/api/synthetics_api.rb +79 -0
- data/lib/datadog_api_client/v2/api/teams_api.rb +339 -30
- data/lib/datadog_api_client/v2/models/attachment.rb +117 -0
- data/lib/datadog_api_client/v2/models/{incident_attachments_response.rb → attachment_array.rb} +7 -7
- data/lib/datadog_api_client/v2/models/{incident_attachment_data.rb → attachment_data.rb} +8 -8
- data/lib/datadog_api_client/v2/models/attachment_data_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/attachment_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_attachment_type.rb → attachment_data_attributes_attachment_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/{incident_attachment_relationships.rb → attachment_data_relationships.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_request.rb → attachment_data_relationships_last_modified_by_user.rb} +6 -11
- data/lib/datadog_api_client/v2/models/attachment_data_relationships_last_modified_by_user_data.rb +144 -0
- data/lib/datadog_api_client/v2/models/{incident_attachments_response_included_item.rb → attachment_included.rb} +3 -3
- data/lib/datadog_api_client/v2/models/case_create_attributes.rb +11 -1
- data/lib/datadog_api_client/v2/models/{dora_fetch_response.rb → create_attachment_request.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_data.rb → create_attachment_request_data.rb} +6 -6
- data/lib/datadog_api_client/v2/models/create_attachment_request_data_attributes.rb +115 -0
- data/lib/datadog_api_client/v2/models/create_attachment_request_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/create_on_call_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/create_on_call_notification_rule_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/custom_attribute_type.rb +1 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_fetch_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_object.rb +125 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_object_attributes.rb +225 -0
- data/lib/datadog_api_client/v2/models/dora_deployment_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/dora_deployments_list_response.rb +107 -0
- data/lib/datadog_api_client/v2/models/dora_failure_fetch_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/dora_failure_request_attributes.rb +1 -1
- data/lib/datadog_api_client/v2/models/{dora_list_response.rb → dora_failures_list_response.rb} +5 -5
- data/lib/datadog_api_client/v2/models/{dora_event.rb → dora_incident_object.rb} +8 -8
- data/lib/datadog_api_client/v2/models/dora_incident_object_attributes.rb +225 -0
- data/lib/datadog_api_client/v2/models/global_variable_data.rb +125 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_request_data_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/global_variable_json_patch_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/global_variable_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attachment_type.rb → global_variable_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/incident_response_included_item.rb +1 -1
- data/lib/datadog_api_client/v2/models/{incident_attachments_postmortem_attributes_attachment_object.rb → json_patch_operation.rb} +40 -30
- data/lib/datadog_api_client/v2/models/json_patch_operation_op.rb +31 -0
- data/lib/datadog_api_client/v2/models/list_on_call_notification_rules_response.rb +119 -0
- data/lib/datadog_api_client/v2/models/observability_pipeline_add_env_vars_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_add_fields_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_config_processor_group.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_custom_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_datadog_tags_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_dedupe_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_enrichment_table_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_filter_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_generate_metrics_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_ocsf_mapper_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_parse_grok_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_parse_json_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_quota_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_reduce_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_remove_fields_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_rename_fields_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_sample_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_sensitive_data_scanner_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/observability_pipeline_throttle_processor.rb +11 -1
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_response.rb → on_call_notification_rule.rb} +8 -11
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_category.rb +27 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship.rb +123 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_channel_relationship_data.rb +115 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_update_attributes.rb → on_call_notification_rule_channel_settings.rb} +3 -4
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_relationships.rb +105 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_request_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/on_call_notification_rule_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_attributes.rb → on_call_notification_rules_included.rb} +3 -4
- data/lib/datadog_api_client/v2/models/on_call_phone_notification_rule_method.rb +27 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attributes_attachment_object.rb → on_call_phone_notification_rule_settings.rb} +30 -30
- data/lib/datadog_api_client/v2/models/patch_attachment_request.rb +105 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data.rb +143 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes.rb +105 -0
- data/lib/datadog_api_client/v2/models/patch_attachment_request_data_attributes_attachment.rb +115 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_error.rb +125 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_errors.rb +107 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item.rb +195 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_account.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_application.rb +124 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_event.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_session.rb +123 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_type.rb +26 -0
- data/lib/datadog_api_client/v2/models/product_analytics_server_side_event_item_usr.rb +123 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options.rb +155 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_bucket_duration.rb +32 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_detection_tolerance.rb +31 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_anomaly_detection_options_learning_duration.rb +32 -0
- data/lib/datadog_api_client/v2/models/security_monitoring_rule_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/synthetics_global_variable.rb +248 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_attributes.rb +107 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_options.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_postmortem_attributes.rb → synthetics_global_variable_parse_test_options.rb} +44 -35
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_parse_test_options_type.rb +29 -0
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_parser_type.rb +29 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_link_attributes.rb → synthetics_global_variable_totp_parameters.rb} +38 -40
- data/lib/datadog_api_client/v2/models/synthetics_global_variable_value.rb +126 -0
- data/lib/datadog_api_client/v2/models/synthetics_variable_parser.rb +133 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule.rb +154 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes.rb +135 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_email.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_ms_teams.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_pagerduty.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_attributes_slack.rb +115 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/team_notification_rule_response.rb +105 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_postmortem_attachment_type.rb → team_notification_rule_type.rb} +3 -3
- data/lib/datadog_api_client/v2/models/team_notification_rules_response.rb +117 -0
- data/lib/datadog_api_client/v2/models/team_notification_rules_response_meta.rb +105 -0
- data/lib/datadog_api_client/v2/models/team_notification_rules_response_meta_page.rb +184 -0
- data/lib/datadog_api_client/v2/models/threat_hunting_job_options.rb +11 -1
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request.rb +123 -0
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_attributes.rb +125 -0
- data/lib/datadog_api_client/v2/models/update_on_call_notification_rule_request_data.rb +153 -0
- data/lib/datadog_api_client/v2/models/user140420082644000.rb +143 -0
- data/lib/datadog_api_client/v2/models/{incident_attachment_related_object.rb → user_type.rb} +2 -2
- data/lib/datadog_api_client/version.rb +1 -1
- metadata +109 -24
- data/examples/v2/incidents/ListIncidentAttachments_2457735435.rb +0 -11
- data/examples/v2/incidents/UpdateIncidentAttachments.rb +0 -38
- data/examples/v2/incidents/UpdateIncidentAttachments_3881702075.rb +0 -26
|
@@ -17,18 +17,15 @@ require 'date'
|
|
|
17
17
|
require 'time'
|
|
18
18
|
|
|
19
19
|
module DatadogAPIClient::V2
|
|
20
|
-
#
|
|
21
|
-
class
|
|
20
|
+
# Parameters for the TOTP/MFA variable
|
|
21
|
+
class SyntheticsGlobalVariableTOTPParameters
|
|
22
22
|
include BaseGenericModel
|
|
23
23
|
|
|
24
|
-
#
|
|
25
|
-
attr_reader :
|
|
24
|
+
# Number of digits for the OTP code.
|
|
25
|
+
attr_reader :digits
|
|
26
26
|
|
|
27
|
-
#
|
|
28
|
-
attr_reader :
|
|
29
|
-
|
|
30
|
-
# Timestamp when the incident attachment link was last modified.
|
|
31
|
-
attr_accessor :modified
|
|
27
|
+
# Interval for which to refresh the token (in seconds).
|
|
28
|
+
attr_reader :refresh_interval
|
|
32
29
|
|
|
33
30
|
attr_accessor :additional_properties
|
|
34
31
|
|
|
@@ -36,9 +33,8 @@ module DatadogAPIClient::V2
|
|
|
36
33
|
# @!visibility private
|
|
37
34
|
def self.attribute_map
|
|
38
35
|
{
|
|
39
|
-
:'
|
|
40
|
-
:'
|
|
41
|
-
:'modified' => :'modified'
|
|
36
|
+
:'digits' => :'digits',
|
|
37
|
+
:'refresh_interval' => :'refresh_interval'
|
|
42
38
|
}
|
|
43
39
|
end
|
|
44
40
|
|
|
@@ -46,9 +42,8 @@ module DatadogAPIClient::V2
|
|
|
46
42
|
# @!visibility private
|
|
47
43
|
def self.openapi_types
|
|
48
44
|
{
|
|
49
|
-
:'
|
|
50
|
-
:'
|
|
51
|
-
:'modified' => :'Time'
|
|
45
|
+
:'digits' => :'Integer',
|
|
46
|
+
:'refresh_interval' => :'Integer'
|
|
52
47
|
}
|
|
53
48
|
end
|
|
54
49
|
|
|
@@ -57,7 +52,7 @@ module DatadogAPIClient::V2
|
|
|
57
52
|
# @!visibility private
|
|
58
53
|
def initialize(attributes = {})
|
|
59
54
|
if (!attributes.is_a?(Hash))
|
|
60
|
-
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::
|
|
55
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SyntheticsGlobalVariableTOTPParameters` initialize method"
|
|
61
56
|
end
|
|
62
57
|
|
|
63
58
|
self.additional_properties = {}
|
|
@@ -70,16 +65,12 @@ module DatadogAPIClient::V2
|
|
|
70
65
|
end
|
|
71
66
|
}
|
|
72
67
|
|
|
73
|
-
if attributes.key?(:'
|
|
74
|
-
self.
|
|
75
|
-
end
|
|
76
|
-
|
|
77
|
-
if attributes.key?(:'attachment_type')
|
|
78
|
-
self.attachment_type = attributes[:'attachment_type']
|
|
68
|
+
if attributes.key?(:'digits')
|
|
69
|
+
self.digits = attributes[:'digits']
|
|
79
70
|
end
|
|
80
71
|
|
|
81
|
-
if attributes.key?(:'
|
|
82
|
-
self.
|
|
72
|
+
if attributes.key?(:'refresh_interval')
|
|
73
|
+
self.refresh_interval = attributes[:'refresh_interval']
|
|
83
74
|
end
|
|
84
75
|
end
|
|
85
76
|
|
|
@@ -87,29 +78,37 @@ module DatadogAPIClient::V2
|
|
|
87
78
|
# @return true if the model is valid
|
|
88
79
|
# @!visibility private
|
|
89
80
|
def valid?
|
|
90
|
-
return false if
|
|
91
|
-
return false if
|
|
81
|
+
return false if !@digits.nil? && @digits > 10
|
|
82
|
+
return false if !@digits.nil? && @digits < 4
|
|
83
|
+
return false if !@refresh_interval.nil? && @refresh_interval > 999
|
|
84
|
+
return false if !@refresh_interval.nil? && @refresh_interval < 0
|
|
92
85
|
true
|
|
93
86
|
end
|
|
94
87
|
|
|
95
88
|
# Custom attribute writer method with validation
|
|
96
|
-
# @param
|
|
89
|
+
# @param digits [Object] Object to be assigned
|
|
97
90
|
# @!visibility private
|
|
98
|
-
def
|
|
99
|
-
if
|
|
100
|
-
fail ArgumentError, 'invalid value for "
|
|
91
|
+
def digits=(digits)
|
|
92
|
+
if !digits.nil? && digits > 10
|
|
93
|
+
fail ArgumentError, 'invalid value for "digits", must be smaller than or equal to 10.'
|
|
101
94
|
end
|
|
102
|
-
|
|
95
|
+
if !digits.nil? && digits < 4
|
|
96
|
+
fail ArgumentError, 'invalid value for "digits", must be greater than or equal to 4.'
|
|
97
|
+
end
|
|
98
|
+
@digits = digits
|
|
103
99
|
end
|
|
104
100
|
|
|
105
101
|
# Custom attribute writer method with validation
|
|
106
|
-
# @param
|
|
102
|
+
# @param refresh_interval [Object] Object to be assigned
|
|
107
103
|
# @!visibility private
|
|
108
|
-
def
|
|
109
|
-
if
|
|
110
|
-
fail ArgumentError, 'invalid value for "
|
|
104
|
+
def refresh_interval=(refresh_interval)
|
|
105
|
+
if !refresh_interval.nil? && refresh_interval > 999
|
|
106
|
+
fail ArgumentError, 'invalid value for "refresh_interval", must be smaller than or equal to 999.'
|
|
107
|
+
end
|
|
108
|
+
if !refresh_interval.nil? && refresh_interval < 0
|
|
109
|
+
fail ArgumentError, 'invalid value for "refresh_interval", must be greater than or equal to 0.'
|
|
111
110
|
end
|
|
112
|
-
@
|
|
111
|
+
@refresh_interval = refresh_interval
|
|
113
112
|
end
|
|
114
113
|
|
|
115
114
|
# Returns the object in the form of hash, with additionalProperties support.
|
|
@@ -138,9 +137,8 @@ module DatadogAPIClient::V2
|
|
|
138
137
|
def ==(o)
|
|
139
138
|
return true if self.equal?(o)
|
|
140
139
|
self.class == o.class &&
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
modified == o.modified &&
|
|
140
|
+
digits == o.digits &&
|
|
141
|
+
refresh_interval == o.refresh_interval &&
|
|
144
142
|
additional_properties == o.additional_properties
|
|
145
143
|
end
|
|
146
144
|
|
|
@@ -148,7 +146,7 @@ module DatadogAPIClient::V2
|
|
|
148
146
|
# @return [Integer] Hash code
|
|
149
147
|
# @!visibility private
|
|
150
148
|
def hash
|
|
151
|
-
[
|
|
149
|
+
[digits, refresh_interval, additional_properties].hash
|
|
152
150
|
end
|
|
153
151
|
end
|
|
154
152
|
end
|
|
@@ -0,0 +1,126 @@
|
|
|
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
|
+
# Value of the global variable.
|
|
21
|
+
class SyntheticsGlobalVariableValue
|
|
22
|
+
include BaseGenericModel
|
|
23
|
+
|
|
24
|
+
# Options for the Global Variable for MFA.
|
|
25
|
+
attr_accessor :options
|
|
26
|
+
|
|
27
|
+
# Determines if the value of the variable is hidden.
|
|
28
|
+
attr_accessor :secure
|
|
29
|
+
|
|
30
|
+
# Value of the global variable. When reading a global variable,
|
|
31
|
+
# the value will not be present if the variable is hidden with the `secure` property.
|
|
32
|
+
attr_accessor :value
|
|
33
|
+
|
|
34
|
+
attr_accessor :additional_properties
|
|
35
|
+
|
|
36
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
37
|
+
# @!visibility private
|
|
38
|
+
def self.attribute_map
|
|
39
|
+
{
|
|
40
|
+
:'options' => :'options',
|
|
41
|
+
:'secure' => :'secure',
|
|
42
|
+
:'value' => :'value'
|
|
43
|
+
}
|
|
44
|
+
end
|
|
45
|
+
|
|
46
|
+
# Attribute type mapping.
|
|
47
|
+
# @!visibility private
|
|
48
|
+
def self.openapi_types
|
|
49
|
+
{
|
|
50
|
+
:'options' => :'SyntheticsGlobalVariableOptions',
|
|
51
|
+
:'secure' => :'Boolean',
|
|
52
|
+
:'value' => :'String'
|
|
53
|
+
}
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
# Initializes the object
|
|
57
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
58
|
+
# @!visibility private
|
|
59
|
+
def initialize(attributes = {})
|
|
60
|
+
if (!attributes.is_a?(Hash))
|
|
61
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SyntheticsGlobalVariableValue` initialize method"
|
|
62
|
+
end
|
|
63
|
+
|
|
64
|
+
self.additional_properties = {}
|
|
65
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
66
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
67
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
68
|
+
self.additional_properties[k.to_sym] = v
|
|
69
|
+
else
|
|
70
|
+
h[k.to_sym] = v
|
|
71
|
+
end
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
if attributes.key?(:'options')
|
|
75
|
+
self.options = attributes[:'options']
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
if attributes.key?(:'secure')
|
|
79
|
+
self.secure = attributes[:'secure']
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
if attributes.key?(:'value')
|
|
83
|
+
self.value = attributes[:'value']
|
|
84
|
+
end
|
|
85
|
+
end
|
|
86
|
+
|
|
87
|
+
# Returns the object in the form of hash, with additionalProperties support.
|
|
88
|
+
# @return [Hash] Returns the object in the form of hash
|
|
89
|
+
# @!visibility private
|
|
90
|
+
def to_hash
|
|
91
|
+
hash = {}
|
|
92
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
93
|
+
value = self.send(attr)
|
|
94
|
+
if value.nil?
|
|
95
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
96
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
97
|
+
end
|
|
98
|
+
|
|
99
|
+
hash[param] = _to_hash(value)
|
|
100
|
+
end
|
|
101
|
+
self.additional_properties.each_pair do |attr, value|
|
|
102
|
+
hash[attr] = value
|
|
103
|
+
end
|
|
104
|
+
hash
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
# Checks equality by comparing each attribute.
|
|
108
|
+
# @param o [Object] Object to be compared
|
|
109
|
+
# @!visibility private
|
|
110
|
+
def ==(o)
|
|
111
|
+
return true if self.equal?(o)
|
|
112
|
+
self.class == o.class &&
|
|
113
|
+
options == o.options &&
|
|
114
|
+
secure == o.secure &&
|
|
115
|
+
value == o.value &&
|
|
116
|
+
additional_properties == o.additional_properties
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
# Calculates hash code according to all attributes.
|
|
120
|
+
# @return [Integer] Hash code
|
|
121
|
+
# @!visibility private
|
|
122
|
+
def hash
|
|
123
|
+
[options, secure, value, additional_properties].hash
|
|
124
|
+
end
|
|
125
|
+
end
|
|
126
|
+
end
|
|
@@ -0,0 +1,133 @@
|
|
|
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
|
+
# Details of the parser to use for the global variable.
|
|
21
|
+
class SyntheticsVariableParser
|
|
22
|
+
include BaseGenericModel
|
|
23
|
+
|
|
24
|
+
# Type of parser for a Synthetic global variable from a synthetics test.
|
|
25
|
+
attr_reader :type
|
|
26
|
+
|
|
27
|
+
# Regex or JSON path used for the parser. Not used with type `raw`.
|
|
28
|
+
attr_accessor :value
|
|
29
|
+
|
|
30
|
+
attr_accessor :additional_properties
|
|
31
|
+
|
|
32
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
33
|
+
# @!visibility private
|
|
34
|
+
def self.attribute_map
|
|
35
|
+
{
|
|
36
|
+
:'type' => :'type',
|
|
37
|
+
:'value' => :'value'
|
|
38
|
+
}
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# Attribute type mapping.
|
|
42
|
+
# @!visibility private
|
|
43
|
+
def self.openapi_types
|
|
44
|
+
{
|
|
45
|
+
:'type' => :'SyntheticsGlobalVariableParserType',
|
|
46
|
+
:'value' => :'String'
|
|
47
|
+
}
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
# Initializes the object
|
|
51
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
52
|
+
# @!visibility private
|
|
53
|
+
def initialize(attributes = {})
|
|
54
|
+
if (!attributes.is_a?(Hash))
|
|
55
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::SyntheticsVariableParser` initialize method"
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
self.additional_properties = {}
|
|
59
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
60
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
61
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
62
|
+
self.additional_properties[k.to_sym] = v
|
|
63
|
+
else
|
|
64
|
+
h[k.to_sym] = v
|
|
65
|
+
end
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
if attributes.key?(:'type')
|
|
69
|
+
self.type = attributes[:'type']
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
if attributes.key?(:'value')
|
|
73
|
+
self.value = attributes[:'value']
|
|
74
|
+
end
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
# Check to see if the all the properties in the model are valid
|
|
78
|
+
# @return true if the model is valid
|
|
79
|
+
# @!visibility private
|
|
80
|
+
def valid?
|
|
81
|
+
return false if @type.nil?
|
|
82
|
+
true
|
|
83
|
+
end
|
|
84
|
+
|
|
85
|
+
# Custom attribute writer method with validation
|
|
86
|
+
# @param type [Object] Object to be assigned
|
|
87
|
+
# @!visibility private
|
|
88
|
+
def type=(type)
|
|
89
|
+
if type.nil?
|
|
90
|
+
fail ArgumentError, 'invalid value for "type", type cannot be nil.'
|
|
91
|
+
end
|
|
92
|
+
@type = type
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Returns the object in the form of hash, with additionalProperties support.
|
|
96
|
+
# @return [Hash] Returns the object in the form of hash
|
|
97
|
+
# @!visibility private
|
|
98
|
+
def to_hash
|
|
99
|
+
hash = {}
|
|
100
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
101
|
+
value = self.send(attr)
|
|
102
|
+
if value.nil?
|
|
103
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
104
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
hash[param] = _to_hash(value)
|
|
108
|
+
end
|
|
109
|
+
self.additional_properties.each_pair do |attr, value|
|
|
110
|
+
hash[attr] = value
|
|
111
|
+
end
|
|
112
|
+
hash
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Checks equality by comparing each attribute.
|
|
116
|
+
# @param o [Object] Object to be compared
|
|
117
|
+
# @!visibility private
|
|
118
|
+
def ==(o)
|
|
119
|
+
return true if self.equal?(o)
|
|
120
|
+
self.class == o.class &&
|
|
121
|
+
type == o.type &&
|
|
122
|
+
value == o.value &&
|
|
123
|
+
additional_properties == o.additional_properties
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
# Calculates hash code according to all attributes.
|
|
127
|
+
# @return [Integer] Hash code
|
|
128
|
+
# @!visibility private
|
|
129
|
+
def hash
|
|
130
|
+
[type, value, additional_properties].hash
|
|
131
|
+
end
|
|
132
|
+
end
|
|
133
|
+
end
|
|
@@ -0,0 +1,154 @@
|
|
|
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
|
+
# Team notification rule
|
|
21
|
+
class TeamNotificationRule
|
|
22
|
+
include BaseGenericModel
|
|
23
|
+
|
|
24
|
+
# Team notification rule attributes
|
|
25
|
+
attr_reader :attributes
|
|
26
|
+
|
|
27
|
+
# The identifier of the team notification rule
|
|
28
|
+
attr_accessor :id
|
|
29
|
+
|
|
30
|
+
# Team notification rule type
|
|
31
|
+
attr_reader :type
|
|
32
|
+
|
|
33
|
+
attr_accessor :additional_properties
|
|
34
|
+
|
|
35
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
36
|
+
# @!visibility private
|
|
37
|
+
def self.attribute_map
|
|
38
|
+
{
|
|
39
|
+
:'attributes' => :'attributes',
|
|
40
|
+
:'id' => :'id',
|
|
41
|
+
:'type' => :'type'
|
|
42
|
+
}
|
|
43
|
+
end
|
|
44
|
+
|
|
45
|
+
# Attribute type mapping.
|
|
46
|
+
# @!visibility private
|
|
47
|
+
def self.openapi_types
|
|
48
|
+
{
|
|
49
|
+
:'attributes' => :'TeamNotificationRuleAttributes',
|
|
50
|
+
:'id' => :'String',
|
|
51
|
+
:'type' => :'TeamNotificationRuleType'
|
|
52
|
+
}
|
|
53
|
+
end
|
|
54
|
+
|
|
55
|
+
# Initializes the object
|
|
56
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
57
|
+
# @!visibility private
|
|
58
|
+
def initialize(attributes = {})
|
|
59
|
+
if (!attributes.is_a?(Hash))
|
|
60
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::TeamNotificationRule` initialize method"
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
self.additional_properties = {}
|
|
64
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
65
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
66
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
67
|
+
self.additional_properties[k.to_sym] = v
|
|
68
|
+
else
|
|
69
|
+
h[k.to_sym] = v
|
|
70
|
+
end
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
if attributes.key?(:'attributes')
|
|
74
|
+
self.attributes = attributes[:'attributes']
|
|
75
|
+
end
|
|
76
|
+
|
|
77
|
+
if attributes.key?(:'id')
|
|
78
|
+
self.id = attributes[:'id']
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
if attributes.key?(:'type')
|
|
82
|
+
self.type = attributes[:'type']
|
|
83
|
+
end
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
# Check to see if the all the properties in the model are valid
|
|
87
|
+
# @return true if the model is valid
|
|
88
|
+
# @!visibility private
|
|
89
|
+
def valid?
|
|
90
|
+
return false if @attributes.nil?
|
|
91
|
+
return false if @type.nil?
|
|
92
|
+
true
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Custom attribute writer method with validation
|
|
96
|
+
# @param attributes [Object] Object to be assigned
|
|
97
|
+
# @!visibility private
|
|
98
|
+
def attributes=(attributes)
|
|
99
|
+
if attributes.nil?
|
|
100
|
+
fail ArgumentError, 'invalid value for "attributes", attributes cannot be nil.'
|
|
101
|
+
end
|
|
102
|
+
@attributes = attributes
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
# Custom attribute writer method with validation
|
|
106
|
+
# @param type [Object] Object to be assigned
|
|
107
|
+
# @!visibility private
|
|
108
|
+
def type=(type)
|
|
109
|
+
if type.nil?
|
|
110
|
+
fail ArgumentError, 'invalid value for "type", type cannot be nil.'
|
|
111
|
+
end
|
|
112
|
+
@type = type
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Returns the object in the form of hash, with additionalProperties support.
|
|
116
|
+
# @return [Hash] Returns the object in the form of hash
|
|
117
|
+
# @!visibility private
|
|
118
|
+
def to_hash
|
|
119
|
+
hash = {}
|
|
120
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
121
|
+
value = self.send(attr)
|
|
122
|
+
if value.nil?
|
|
123
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
124
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
125
|
+
end
|
|
126
|
+
|
|
127
|
+
hash[param] = _to_hash(value)
|
|
128
|
+
end
|
|
129
|
+
self.additional_properties.each_pair do |attr, value|
|
|
130
|
+
hash[attr] = value
|
|
131
|
+
end
|
|
132
|
+
hash
|
|
133
|
+
end
|
|
134
|
+
|
|
135
|
+
# Checks equality by comparing each attribute.
|
|
136
|
+
# @param o [Object] Object to be compared
|
|
137
|
+
# @!visibility private
|
|
138
|
+
def ==(o)
|
|
139
|
+
return true if self.equal?(o)
|
|
140
|
+
self.class == o.class &&
|
|
141
|
+
attributes == o.attributes &&
|
|
142
|
+
id == o.id &&
|
|
143
|
+
type == o.type &&
|
|
144
|
+
additional_properties == o.additional_properties
|
|
145
|
+
end
|
|
146
|
+
|
|
147
|
+
# Calculates hash code according to all attributes.
|
|
148
|
+
# @return [Integer] Hash code
|
|
149
|
+
# @!visibility private
|
|
150
|
+
def hash
|
|
151
|
+
[attributes, id, type, additional_properties].hash
|
|
152
|
+
end
|
|
153
|
+
end
|
|
154
|
+
end
|
|
@@ -0,0 +1,135 @@
|
|
|
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
|
+
# Team notification rule attributes
|
|
21
|
+
class TeamNotificationRuleAttributes
|
|
22
|
+
include BaseGenericModel
|
|
23
|
+
|
|
24
|
+
# Email notification settings for the team
|
|
25
|
+
attr_accessor :email
|
|
26
|
+
|
|
27
|
+
# MS Teams notification settings for the team
|
|
28
|
+
attr_accessor :ms_teams
|
|
29
|
+
|
|
30
|
+
# PagerDuty notification settings for the team
|
|
31
|
+
attr_accessor :pagerduty
|
|
32
|
+
|
|
33
|
+
# Slack notification settings for the team
|
|
34
|
+
attr_accessor :slack
|
|
35
|
+
|
|
36
|
+
attr_accessor :additional_properties
|
|
37
|
+
|
|
38
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
39
|
+
# @!visibility private
|
|
40
|
+
def self.attribute_map
|
|
41
|
+
{
|
|
42
|
+
:'email' => :'email',
|
|
43
|
+
:'ms_teams' => :'ms_teams',
|
|
44
|
+
:'pagerduty' => :'pagerduty',
|
|
45
|
+
:'slack' => :'slack'
|
|
46
|
+
}
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
# Attribute type mapping.
|
|
50
|
+
# @!visibility private
|
|
51
|
+
def self.openapi_types
|
|
52
|
+
{
|
|
53
|
+
:'email' => :'TeamNotificationRuleAttributesEmail',
|
|
54
|
+
:'ms_teams' => :'TeamNotificationRuleAttributesMsTeams',
|
|
55
|
+
:'pagerduty' => :'TeamNotificationRuleAttributesPagerduty',
|
|
56
|
+
:'slack' => :'TeamNotificationRuleAttributesSlack'
|
|
57
|
+
}
|
|
58
|
+
end
|
|
59
|
+
|
|
60
|
+
# Initializes the object
|
|
61
|
+
# @param attributes [Hash] Model attributes in the form of hash
|
|
62
|
+
# @!visibility private
|
|
63
|
+
def initialize(attributes = {})
|
|
64
|
+
if (!attributes.is_a?(Hash))
|
|
65
|
+
fail ArgumentError, "The input argument (attributes) must be a hash in `DatadogAPIClient::V2::TeamNotificationRuleAttributes` initialize method"
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
self.additional_properties = {}
|
|
69
|
+
# check to see if the attribute exists and convert string to symbol for hash key
|
|
70
|
+
attributes = attributes.each_with_object({}) { |(k, v), h|
|
|
71
|
+
if (!self.class.attribute_map.key?(k.to_sym))
|
|
72
|
+
self.additional_properties[k.to_sym] = v
|
|
73
|
+
else
|
|
74
|
+
h[k.to_sym] = v
|
|
75
|
+
end
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
if attributes.key?(:'email')
|
|
79
|
+
self.email = attributes[:'email']
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
if attributes.key?(:'ms_teams')
|
|
83
|
+
self.ms_teams = attributes[:'ms_teams']
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
if attributes.key?(:'pagerduty')
|
|
87
|
+
self.pagerduty = attributes[:'pagerduty']
|
|
88
|
+
end
|
|
89
|
+
|
|
90
|
+
if attributes.key?(:'slack')
|
|
91
|
+
self.slack = attributes[:'slack']
|
|
92
|
+
end
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Returns the object in the form of hash, with additionalProperties support.
|
|
96
|
+
# @return [Hash] Returns the object in the form of hash
|
|
97
|
+
# @!visibility private
|
|
98
|
+
def to_hash
|
|
99
|
+
hash = {}
|
|
100
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
101
|
+
value = self.send(attr)
|
|
102
|
+
if value.nil?
|
|
103
|
+
is_nullable = self.class.openapi_nullable.include?(attr)
|
|
104
|
+
next if !is_nullable || (is_nullable && !instance_variable_defined?(:"@#{attr}"))
|
|
105
|
+
end
|
|
106
|
+
|
|
107
|
+
hash[param] = _to_hash(value)
|
|
108
|
+
end
|
|
109
|
+
self.additional_properties.each_pair do |attr, value|
|
|
110
|
+
hash[attr] = value
|
|
111
|
+
end
|
|
112
|
+
hash
|
|
113
|
+
end
|
|
114
|
+
|
|
115
|
+
# Checks equality by comparing each attribute.
|
|
116
|
+
# @param o [Object] Object to be compared
|
|
117
|
+
# @!visibility private
|
|
118
|
+
def ==(o)
|
|
119
|
+
return true if self.equal?(o)
|
|
120
|
+
self.class == o.class &&
|
|
121
|
+
email == o.email &&
|
|
122
|
+
ms_teams == o.ms_teams &&
|
|
123
|
+
pagerduty == o.pagerduty &&
|
|
124
|
+
slack == o.slack &&
|
|
125
|
+
additional_properties == o.additional_properties
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
# Calculates hash code according to all attributes.
|
|
129
|
+
# @return [Integer] Hash code
|
|
130
|
+
# @!visibility private
|
|
131
|
+
def hash
|
|
132
|
+
[email, ms_teams, pagerduty, slack, additional_properties].hash
|
|
133
|
+
end
|
|
134
|
+
end
|
|
135
|
+
end
|