launchdarkly_api 2.0.10 → 2.0.27
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 +5 -5
- data/README.md +153 -151
- data/docs/AuditLogApi.md +7 -7
- data/docs/{Action.md → CopyActions.md} +1 -1
- data/docs/CustomProperty.md +1 -1
- data/docs/CustomRole.md +1 -1
- data/docs/CustomRoleBody.md +1 -1
- data/docs/CustomRoles.md +1 -1
- data/docs/CustomRolesApi.md +7 -6
- data/docs/CustomerMetricsApi.md +511 -0
- data/docs/DataExportDestinationsApi.md +293 -0
- data/docs/Destination.md +14 -0
- data/docs/DestinationAmazonKinesis.md +10 -0
- data/docs/DestinationBody.md +11 -0
- data/docs/DestinationGooglePubSub.md +9 -0
- data/docs/DestinationMParticle.md +11 -0
- data/docs/{CustomRoleKeyOrId.md → DestinationSegment.md} +2 -1
- data/docs/Destinations.md +9 -0
- data/docs/Environment.md +2 -0
- data/docs/EnvironmentPost.md +5 -0
- data/docs/EnvironmentsApi.md +11 -10
- data/docs/EvaluationUsageError.md +9 -0
- data/docs/Events.md +8 -0
- data/docs/FeatureFlag.md +4 -1
- data/docs/FeatureFlagConfig.md +0 -1
- data/docs/FeatureFlagCopyBody.md +12 -0
- data/docs/FeatureFlagCopyObject.md +9 -0
- data/docs/FeatureFlagStatus.md +1 -1
- data/docs/FeatureFlagStatusAcrossEnvironments.md +10 -0
- data/docs/FeatureFlagStatusForQueriedEnvironment.md +10 -0
- data/docs/FeatureFlagsApi.md +136 -17
- data/docs/MAU.md +10 -0
- data/docs/{Actions.md → MAUMetadata.md} +1 -1
- data/docs/MAUbyCategory.md +10 -0
- data/docs/Member.md +2 -0
- data/docs/Members.md +1 -1
- data/docs/MembersBody.md +1 -1
- data/docs/Policy.md +4 -2
- data/docs/ProjectBody.md +2 -0
- data/docs/ProjectsApi.md +7 -6
- data/docs/Rollout.md +1 -0
- data/docs/Statement.md +4 -4
- data/docs/Stream.md +10 -0
- data/docs/StreamBySDK.md +10 -0
- data/docs/StreamBySDKLinks.md +9 -0
- data/docs/StreamBySDKLinksMetadata.md +10 -0
- data/docs/StreamLinks.md +10 -0
- data/docs/StreamSDKVersion.md +9 -0
- data/docs/StreamSDKVersionData.md +9 -0
- data/docs/StreamUsageError.md +9 -0
- data/docs/StreamUsageLinks.md +10 -0
- data/docs/StreamUsageMetadata.md +10 -0
- data/docs/StreamUsageSeries.md +9 -0
- data/docs/Streams.md +8 -0
- data/docs/TeamMembersApi.md +7 -6
- data/docs/Usage.md +9 -0
- data/docs/{CustomProperties.md → UsageError.md} +2 -1
- data/docs/UsageLinks.md +10 -0
- data/docs/UserSegmentsApi.md +18 -17
- data/docs/UserSettingsApi.md +11 -11
- data/docs/UsersApi.md +15 -15
- data/docs/Webhook.md +1 -0
- data/docs/WebhookBody.md +2 -0
- data/docs/WebhooksApi.md +7 -6
- data/launchdarkly_api.gemspec +5 -6
- data/lib/launchdarkly_api/api/audit_log_api.rb +13 -19
- data/lib/launchdarkly_api/api/custom_roles_api.rb +23 -37
- data/lib/launchdarkly_api/api/customer_metrics_api.rb +519 -0
- data/lib/launchdarkly_api/api/data_export_destinations_api.rb +330 -0
- data/lib/launchdarkly_api/api/environments_api.rb +20 -31
- data/lib/launchdarkly_api/api/feature_flags_api.rb +150 -43
- data/lib/launchdarkly_api/api/projects_api.rb +23 -37
- data/lib/launchdarkly_api/api/root_api.rb +6 -9
- data/lib/launchdarkly_api/api/team_members_api.rb +23 -37
- data/lib/launchdarkly_api/api/user_segments_api.rb +23 -37
- data/lib/launchdarkly_api/api/user_settings_api.rb +12 -21
- data/lib/launchdarkly_api/api/users_api.rb +17 -29
- data/lib/launchdarkly_api/api/webhooks_api.rb +23 -37
- data/lib/launchdarkly_api/api_client.rb +10 -10
- data/lib/launchdarkly_api/api_error.rb +2 -2
- data/lib/launchdarkly_api/configuration.rb +3 -3
- data/lib/launchdarkly_api/models/audit_log_entries.rb +7 -12
- data/lib/launchdarkly_api/models/audit_log_entry.rb +7 -12
- data/lib/launchdarkly_api/models/audit_log_entry_target.rb +7 -12
- data/lib/launchdarkly_api/models/clause.rb +7 -12
- data/lib/launchdarkly_api/models/copy_actions.rb +34 -0
- data/lib/launchdarkly_api/models/custom_property.rb +13 -14
- data/lib/launchdarkly_api/models/custom_property_values.rb +7 -11
- data/lib/launchdarkly_api/models/custom_role.rb +9 -13
- data/lib/launchdarkly_api/models/custom_role_body.rb +12 -16
- data/lib/launchdarkly_api/models/custom_roles.rb +11 -14
- data/lib/launchdarkly_api/models/destination.rb +276 -0
- data/lib/launchdarkly_api/models/destination_amazon_kinesis.rb +201 -0
- data/lib/launchdarkly_api/models/destination_body.rb +263 -0
- data/lib/launchdarkly_api/models/destination_google_pub_sub.rb +192 -0
- data/lib/launchdarkly_api/models/destination_m_particle.rb +210 -0
- data/lib/launchdarkly_api/models/destination_segment.rb +183 -0
- data/lib/launchdarkly_api/models/destinations.rb +194 -0
- data/lib/launchdarkly_api/models/environment.rb +29 -14
- data/lib/launchdarkly_api/models/environment_post.rb +64 -17
- data/lib/launchdarkly_api/models/evaluation_usage_error.rb +192 -0
- data/lib/launchdarkly_api/models/{action.rb → events.rb} +17 -13
- data/lib/launchdarkly_api/models/fallthrough.rb +7 -12
- data/lib/launchdarkly_api/models/feature_flag.rb +46 -16
- data/lib/launchdarkly_api/models/feature_flag_body.rb +10 -15
- data/lib/launchdarkly_api/models/feature_flag_config.rb +8 -24
- data/lib/launchdarkly_api/models/feature_flag_copy_body.rb +226 -0
- data/lib/launchdarkly_api/models/feature_flag_copy_object.rb +199 -0
- data/lib/launchdarkly_api/models/feature_flag_status.rb +22 -26
- data/lib/launchdarkly_api/models/feature_flag_status_across_environments.rb +203 -0
- data/lib/launchdarkly_api/models/feature_flag_status_for_queried_environment.rb +236 -0
- data/lib/launchdarkly_api/models/feature_flag_statuses.rb +7 -12
- data/lib/launchdarkly_api/models/feature_flags.rb +7 -12
- data/lib/launchdarkly_api/models/id.rb +7 -11
- data/lib/launchdarkly_api/models/link.rb +7 -12
- data/lib/launchdarkly_api/models/links.rb +7 -12
- data/lib/launchdarkly_api/models/ma_uby_category.rb +205 -0
- data/lib/launchdarkly_api/models/mau.rb +205 -0
- data/lib/launchdarkly_api/models/{actions.rb → mau_metadata.rb} +8 -13
- data/lib/launchdarkly_api/models/member.rb +26 -13
- data/lib/launchdarkly_api/models/members.rb +11 -14
- data/lib/launchdarkly_api/models/members_body.rb +9 -14
- data/lib/launchdarkly_api/models/patch_comment.rb +7 -12
- data/lib/launchdarkly_api/models/patch_operation.rb +10 -15
- data/lib/launchdarkly_api/models/policy.rb +40 -17
- data/lib/launchdarkly_api/models/prerequisite.rb +7 -12
- data/lib/launchdarkly_api/models/project.rb +7 -12
- data/lib/launchdarkly_api/models/project_body.rb +30 -15
- data/lib/launchdarkly_api/models/projects.rb +7 -12
- data/lib/launchdarkly_api/models/role.rb +7 -8
- data/lib/launchdarkly_api/models/rollout.rb +17 -13
- data/lib/launchdarkly_api/models/rule.rb +7 -12
- data/lib/launchdarkly_api/models/statement.rb +35 -31
- data/lib/launchdarkly_api/models/statements.rb +7 -12
- data/lib/launchdarkly_api/models/stream.rb +205 -0
- data/lib/launchdarkly_api/models/stream_by_sdk.rb +205 -0
- data/lib/launchdarkly_api/models/stream_by_sdk_links.rb +192 -0
- data/lib/launchdarkly_api/models/{resources.rb → stream_by_sdk_links_metadata.rb} +34 -12
- data/lib/launchdarkly_api/models/stream_links.rb +204 -0
- data/lib/launchdarkly_api/models/stream_sdk_version.rb +194 -0
- data/lib/launchdarkly_api/models/stream_sdk_version_data.rb +194 -0
- data/lib/launchdarkly_api/models/stream_usage_error.rb +192 -0
- data/lib/launchdarkly_api/models/stream_usage_links.rb +204 -0
- data/lib/launchdarkly_api/models/stream_usage_metadata.rb +203 -0
- data/lib/launchdarkly_api/models/stream_usage_series.rb +194 -0
- data/lib/launchdarkly_api/models/{custom_properties.rb → streams.rb} +17 -13
- data/lib/launchdarkly_api/models/target.rb +7 -12
- data/lib/launchdarkly_api/models/usage.rb +194 -0
- data/lib/launchdarkly_api/models/{custom_role_key_or_id.rb → usage_error.rb} +17 -13
- data/lib/launchdarkly_api/models/usage_links.rb +204 -0
- data/lib/launchdarkly_api/models/user.rb +7 -12
- data/lib/launchdarkly_api/models/user_flag_setting.rb +7 -12
- data/lib/launchdarkly_api/models/user_flag_settings.rb +7 -12
- data/lib/launchdarkly_api/models/user_record.rb +7 -12
- data/lib/launchdarkly_api/models/user_segment.rb +10 -15
- data/lib/launchdarkly_api/models/user_segment_body.rb +9 -14
- data/lib/launchdarkly_api/models/user_segment_rule.rb +7 -12
- data/lib/launchdarkly_api/models/user_segments.rb +7 -12
- data/lib/launchdarkly_api/models/user_settings_body.rb +7 -12
- data/lib/launchdarkly_api/models/users.rb +7 -12
- data/lib/launchdarkly_api/models/variation.rb +8 -13
- data/lib/launchdarkly_api/models/webhook.rb +17 -13
- data/lib/launchdarkly_api/models/webhook_body.rb +33 -17
- data/lib/launchdarkly_api/models/webhooks.rb +7 -12
- data/lib/launchdarkly_api/models/weighted_variation.rb +7 -12
- data/lib/launchdarkly_api/version.rb +3 -3
- data/lib/launchdarkly_api.rb +36 -8
- data/openapi.yml +1004 -115
- data/spec/api/audit_log_api_spec.rb +6 -8
- data/spec/api/custom_roles_api_spec.rb +8 -13
- data/spec/api/customer_metrics_api_spec.rb +141 -0
- data/spec/api/data_export_destinations_api_spec.rb +98 -0
- data/spec/api/environments_api_spec.rb +7 -11
- data/spec/api/feature_flags_api_spec.rb +36 -16
- data/spec/api/projects_api_spec.rb +8 -13
- data/spec/api/root_api_spec.rb +3 -4
- data/spec/api/team_members_api_spec.rb +8 -13
- data/spec/api/user_segments_api_spec.rb +8 -13
- data/spec/api/user_settings_api_spec.rb +5 -8
- data/spec/api/users_api_spec.rb +7 -11
- data/spec/api/webhooks_api_spec.rb +8 -13
- data/spec/api_client_spec.rb +36 -36
- data/spec/configuration_spec.rb +10 -10
- data/spec/models/audit_log_entries_spec.rb +4 -5
- data/spec/models/audit_log_entry_spec.rb +14 -15
- data/spec/models/audit_log_entry_target_spec.rb +5 -6
- data/spec/models/clause_spec.rb +6 -7
- data/spec/models/{action_spec.rb → copy_actions_spec.rb} +8 -9
- data/spec/models/custom_property_spec.rb +4 -5
- data/spec/models/custom_property_values_spec.rb +2 -3
- data/spec/models/custom_role_body_spec.rb +6 -7
- data/spec/models/custom_role_spec.rb +8 -9
- data/spec/models/custom_roles_spec.rb +4 -5
- data/spec/models/destination_amazon_kinesis_spec.rb +53 -0
- data/spec/models/destination_body_spec.rb +63 -0
- data/spec/models/destination_google_pub_sub_spec.rb +47 -0
- data/spec/models/destination_m_particle_spec.rb +59 -0
- data/spec/models/destination_segment_spec.rb +41 -0
- data/spec/models/destination_spec.rb +81 -0
- data/spec/models/destinations_spec.rb +47 -0
- data/spec/models/environment_post_spec.rb +36 -7
- data/spec/models/environment_spec.rb +25 -14
- data/spec/models/evaluation_usage_error_spec.rb +47 -0
- data/spec/models/events_spec.rb +41 -0
- data/spec/models/fallthrough_spec.rb +4 -5
- data/spec/models/feature_flag_body_spec.rb +9 -10
- data/spec/models/feature_flag_config_spec.rb +14 -21
- data/spec/models/feature_flag_copy_body_spec.rb +65 -0
- data/spec/models/feature_flag_copy_object_spec.rb +47 -0
- data/spec/models/feature_flag_spec.rb +35 -18
- data/spec/models/feature_flag_status_across_environments_spec.rb +53 -0
- data/spec/models/feature_flag_status_for_queried_environment_spec.rb +57 -0
- data/spec/models/feature_flag_status_spec.rb +14 -15
- data/spec/models/feature_flag_statuses_spec.rb +4 -5
- data/spec/models/feature_flags_spec.rb +4 -5
- data/spec/models/id_spec.rb +2 -3
- data/spec/models/link_spec.rb +4 -5
- data/spec/models/links_spec.rb +4 -5
- data/spec/models/ma_uby_category_spec.rb +53 -0
- data/spec/models/{actions_spec.rb → mau_metadata_spec.rb} +8 -9
- data/spec/models/mau_spec.rb +53 -0
- data/spec/models/member_spec.rb +21 -10
- data/spec/models/members_body_spec.rb +8 -9
- data/spec/models/members_spec.rb +4 -5
- data/spec/models/patch_comment_spec.rb +4 -5
- data/spec/models/patch_operation_spec.rb +5 -6
- data/spec/models/policy_spec.rb +17 -6
- data/spec/models/prerequisite_spec.rb +4 -5
- data/spec/models/project_body_spec.rb +17 -6
- data/spec/models/project_spec.rb +8 -9
- data/spec/models/projects_spec.rb +4 -5
- data/spec/models/role_spec.rb +2 -3
- data/spec/models/rollout_spec.rb +9 -4
- data/spec/models/rule_spec.rb +6 -7
- data/spec/models/statement_spec.rb +13 -14
- data/spec/models/statements_spec.rb +2 -3
- data/spec/models/stream_by_sdk_links_metadata_spec.rb +53 -0
- data/spec/models/stream_by_sdk_links_spec.rb +47 -0
- data/spec/models/stream_by_sdk_spec.rb +53 -0
- data/spec/models/stream_links_spec.rb +53 -0
- data/spec/models/stream_sdk_version_data_spec.rb +47 -0
- data/spec/models/stream_sdk_version_spec.rb +47 -0
- data/spec/models/stream_spec.rb +53 -0
- data/spec/models/stream_usage_error_spec.rb +47 -0
- data/spec/models/stream_usage_links_spec.rb +53 -0
- data/spec/models/stream_usage_metadata_spec.rb +53 -0
- data/spec/models/stream_usage_series_spec.rb +47 -0
- data/spec/models/streams_spec.rb +41 -0
- data/spec/models/target_spec.rb +4 -5
- data/spec/models/usage_error_spec.rb +41 -0
- data/spec/models/usage_links_spec.rb +53 -0
- data/spec/models/usage_spec.rb +47 -0
- data/spec/models/user_flag_setting_spec.rb +5 -6
- data/spec/models/user_flag_settings_spec.rb +4 -5
- data/spec/models/user_record_spec.rb +7 -8
- data/spec/models/user_segment_body_spec.rb +6 -7
- data/spec/models/user_segment_rule_spec.rb +5 -6
- data/spec/models/user_segment_spec.rb +12 -13
- data/spec/models/user_segments_spec.rb +4 -5
- data/spec/models/user_settings_body_spec.rb +3 -4
- data/spec/models/user_spec.rb +13 -14
- data/spec/models/users_spec.rb +5 -6
- data/spec/models/variation_spec.rb +5 -6
- data/spec/models/webhook_body_spec.rb +19 -8
- data/spec/models/webhook_spec.rb +15 -10
- data/spec/models/webhooks_spec.rb +4 -5
- data/spec/models/weighted_variation_spec.rb +4 -5
- data/spec/spec_helper.rb +2 -2
- metadata +187 -74
- data/docs/Resource.md +0 -7
- data/docs/Resources.md +0 -7
- data/lib/launchdarkly_api/models/resource.rb +0 -179
- data/spec/models/custom_properties_spec.rb +0 -36
- data/spec/models/custom_role_key_or_id_spec.rb +0 -36
- data/spec/models/resource_spec.rb +0 -36
- data/spec/models/resources_spec.rb +0 -36
|
@@ -0,0 +1,204 @@
|
|
|
1
|
+
=begin
|
|
2
|
+
#LaunchDarkly REST API
|
|
3
|
+
|
|
4
|
+
#Build custom integrations with the LaunchDarkly REST API
|
|
5
|
+
|
|
6
|
+
OpenAPI spec version: 2.0.27
|
|
7
|
+
Contact: support@launchdarkly.com
|
|
8
|
+
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
+
Swagger Codegen version: 2.4.8
|
|
10
|
+
|
|
11
|
+
=end
|
|
12
|
+
|
|
13
|
+
require 'date'
|
|
14
|
+
|
|
15
|
+
module LaunchDarklyApi
|
|
16
|
+
class UsageLinks
|
|
17
|
+
attr_accessor :parent
|
|
18
|
+
|
|
19
|
+
attr_accessor :_self
|
|
20
|
+
|
|
21
|
+
# The following links that are in the response.
|
|
22
|
+
attr_accessor :subseries
|
|
23
|
+
|
|
24
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
25
|
+
def self.attribute_map
|
|
26
|
+
{
|
|
27
|
+
:'parent' => :'parent',
|
|
28
|
+
:'_self' => :'self',
|
|
29
|
+
:'subseries' => :'subseries'
|
|
30
|
+
}
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# Attribute type mapping.
|
|
34
|
+
def self.swagger_types
|
|
35
|
+
{
|
|
36
|
+
:'parent' => :'Link',
|
|
37
|
+
:'_self' => :'Link',
|
|
38
|
+
:'subseries' => :'Array<Link>'
|
|
39
|
+
}
|
|
40
|
+
end
|
|
41
|
+
|
|
42
|
+
# Initializes the object
|
|
43
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
44
|
+
def initialize(attributes = {})
|
|
45
|
+
return unless attributes.is_a?(Hash)
|
|
46
|
+
|
|
47
|
+
# convert string to symbol for hash key
|
|
48
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
49
|
+
|
|
50
|
+
if attributes.has_key?(:'parent')
|
|
51
|
+
self.parent = attributes[:'parent']
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
if attributes.has_key?(:'self')
|
|
55
|
+
self._self = attributes[:'self']
|
|
56
|
+
end
|
|
57
|
+
|
|
58
|
+
if attributes.has_key?(:'subseries')
|
|
59
|
+
if (value = attributes[:'subseries']).is_a?(Array)
|
|
60
|
+
self.subseries = value
|
|
61
|
+
end
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
66
|
+
# @return Array for valid properties with the reasons
|
|
67
|
+
def list_invalid_properties
|
|
68
|
+
invalid_properties = Array.new
|
|
69
|
+
invalid_properties
|
|
70
|
+
end
|
|
71
|
+
|
|
72
|
+
# Check to see if the all the properties in the model are valid
|
|
73
|
+
# @return true if the model is valid
|
|
74
|
+
def valid?
|
|
75
|
+
true
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
# Checks equality by comparing each attribute.
|
|
79
|
+
# @param [Object] Object to be compared
|
|
80
|
+
def ==(o)
|
|
81
|
+
return true if self.equal?(o)
|
|
82
|
+
self.class == o.class &&
|
|
83
|
+
parent == o.parent &&
|
|
84
|
+
_self == o._self &&
|
|
85
|
+
subseries == o.subseries
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# @see the `==` method
|
|
89
|
+
# @param [Object] Object to be compared
|
|
90
|
+
def eql?(o)
|
|
91
|
+
self == o
|
|
92
|
+
end
|
|
93
|
+
|
|
94
|
+
# Calculates hash code according to all attributes.
|
|
95
|
+
# @return [Fixnum] Hash code
|
|
96
|
+
def hash
|
|
97
|
+
[parent, _self, subseries].hash
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
# Builds the object from hash
|
|
101
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
102
|
+
# @return [Object] Returns the model itself
|
|
103
|
+
def build_from_hash(attributes)
|
|
104
|
+
return nil unless attributes.is_a?(Hash)
|
|
105
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
106
|
+
if type =~ /\AArray<(.*)>/i
|
|
107
|
+
# check to ensure the input is an array given that the the attribute
|
|
108
|
+
# is documented as an array but the input is not
|
|
109
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
110
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
111
|
+
end
|
|
112
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
113
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
114
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
115
|
+
end
|
|
116
|
+
|
|
117
|
+
self
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
# Deserializes the data based on type
|
|
121
|
+
# @param string type Data type
|
|
122
|
+
# @param string value Value to be deserialized
|
|
123
|
+
# @return [Object] Deserialized data
|
|
124
|
+
def _deserialize(type, value)
|
|
125
|
+
case type.to_sym
|
|
126
|
+
when :DateTime
|
|
127
|
+
DateTime.parse(value)
|
|
128
|
+
when :Date
|
|
129
|
+
Date.parse(value)
|
|
130
|
+
when :String
|
|
131
|
+
value.to_s
|
|
132
|
+
when :Integer
|
|
133
|
+
value.to_i
|
|
134
|
+
when :Float
|
|
135
|
+
value.to_f
|
|
136
|
+
when :BOOLEAN
|
|
137
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
138
|
+
true
|
|
139
|
+
else
|
|
140
|
+
false
|
|
141
|
+
end
|
|
142
|
+
when :Object
|
|
143
|
+
# generic object (usually a Hash), return directly
|
|
144
|
+
value
|
|
145
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
146
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
147
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
148
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
149
|
+
k_type = Regexp.last_match[:k_type]
|
|
150
|
+
v_type = Regexp.last_match[:v_type]
|
|
151
|
+
{}.tap do |hash|
|
|
152
|
+
value.each do |k, v|
|
|
153
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
154
|
+
end
|
|
155
|
+
end
|
|
156
|
+
else # model
|
|
157
|
+
temp_model = LaunchDarklyApi.const_get(type).new
|
|
158
|
+
temp_model.build_from_hash(value)
|
|
159
|
+
end
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# Returns the string representation of the object
|
|
163
|
+
# @return [String] String presentation of the object
|
|
164
|
+
def to_s
|
|
165
|
+
to_hash.to_s
|
|
166
|
+
end
|
|
167
|
+
|
|
168
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
169
|
+
# @return [Hash] Returns the object in the form of hash
|
|
170
|
+
def to_body
|
|
171
|
+
to_hash
|
|
172
|
+
end
|
|
173
|
+
|
|
174
|
+
# Returns the object in the form of hash
|
|
175
|
+
# @return [Hash] Returns the object in the form of hash
|
|
176
|
+
def to_hash
|
|
177
|
+
hash = {}
|
|
178
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
179
|
+
value = self.send(attr)
|
|
180
|
+
next if value.nil?
|
|
181
|
+
hash[param] = _to_hash(value)
|
|
182
|
+
end
|
|
183
|
+
hash
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
# Outputs non-array value in the form of hash
|
|
187
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
188
|
+
# @param [Object] value Any valid value
|
|
189
|
+
# @return [Hash] Returns the value in the form of hash
|
|
190
|
+
def _to_hash(value)
|
|
191
|
+
if value.is_a?(Array)
|
|
192
|
+
value.compact.map { |v| _to_hash(v) }
|
|
193
|
+
elsif value.is_a?(Hash)
|
|
194
|
+
{}.tap do |hash|
|
|
195
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
196
|
+
end
|
|
197
|
+
elsif value.respond_to? :to_hash
|
|
198
|
+
value.to_hash
|
|
199
|
+
else
|
|
200
|
+
value
|
|
201
|
+
end
|
|
202
|
+
end
|
|
203
|
+
end
|
|
204
|
+
end
|
|
@@ -3,17 +3,16 @@
|
|
|
3
3
|
|
|
4
4
|
#Build custom integrations with the LaunchDarkly REST API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.0.
|
|
6
|
+
OpenAPI spec version: 2.0.27
|
|
7
7
|
Contact: support@launchdarkly.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.8
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module LaunchDarklyApi
|
|
16
|
-
|
|
17
16
|
class User
|
|
18
17
|
attr_accessor :key
|
|
19
18
|
|
|
@@ -37,7 +36,6 @@ module LaunchDarklyApi
|
|
|
37
36
|
|
|
38
37
|
attr_accessor :custom
|
|
39
38
|
|
|
40
|
-
|
|
41
39
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
42
40
|
def self.attribute_map
|
|
43
41
|
{
|
|
@@ -78,7 +76,7 @@ module LaunchDarklyApi
|
|
|
78
76
|
return unless attributes.is_a?(Hash)
|
|
79
77
|
|
|
80
78
|
# convert string to symbol for hash key
|
|
81
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
79
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
82
80
|
|
|
83
81
|
if attributes.has_key?(:'key')
|
|
84
82
|
self.key = attributes[:'key']
|
|
@@ -123,20 +121,19 @@ module LaunchDarklyApi
|
|
|
123
121
|
if attributes.has_key?(:'custom')
|
|
124
122
|
self.custom = attributes[:'custom']
|
|
125
123
|
end
|
|
126
|
-
|
|
127
124
|
end
|
|
128
125
|
|
|
129
126
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
130
127
|
# @return Array for valid properties with the reasons
|
|
131
128
|
def list_invalid_properties
|
|
132
129
|
invalid_properties = Array.new
|
|
133
|
-
|
|
130
|
+
invalid_properties
|
|
134
131
|
end
|
|
135
132
|
|
|
136
133
|
# Check to see if the all the properties in the model are valid
|
|
137
134
|
# @return true if the model is valid
|
|
138
135
|
def valid?
|
|
139
|
-
|
|
136
|
+
true
|
|
140
137
|
end
|
|
141
138
|
|
|
142
139
|
# Checks equality by comparing each attribute.
|
|
@@ -179,7 +176,7 @@ module LaunchDarklyApi
|
|
|
179
176
|
# check to ensure the input is an array given that the the attribute
|
|
180
177
|
# is documented as an array but the input is not
|
|
181
178
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
182
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
179
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
183
180
|
end
|
|
184
181
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
185
182
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -261,7 +258,7 @@ module LaunchDarklyApi
|
|
|
261
258
|
# @return [Hash] Returns the value in the form of hash
|
|
262
259
|
def _to_hash(value)
|
|
263
260
|
if value.is_a?(Array)
|
|
264
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
261
|
+
value.compact.map { |v| _to_hash(v) }
|
|
265
262
|
elsif value.is_a?(Hash)
|
|
266
263
|
{}.tap do |hash|
|
|
267
264
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -272,7 +269,5 @@ module LaunchDarklyApi
|
|
|
272
269
|
value
|
|
273
270
|
end
|
|
274
271
|
end
|
|
275
|
-
|
|
276
272
|
end
|
|
277
|
-
|
|
278
273
|
end
|
|
@@ -3,17 +3,16 @@
|
|
|
3
3
|
|
|
4
4
|
#Build custom integrations with the LaunchDarkly REST API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.0.
|
|
6
|
+
OpenAPI spec version: 2.0.27
|
|
7
7
|
Contact: support@launchdarkly.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.8
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module LaunchDarklyApi
|
|
16
|
-
|
|
17
16
|
class UserFlagSetting
|
|
18
17
|
attr_accessor :_links
|
|
19
18
|
|
|
@@ -23,7 +22,6 @@ module LaunchDarklyApi
|
|
|
23
22
|
# The setting attribute indicates whether you've explicitly targeted this user to receive a particular variation. For example, if you have explicitly turned off a feature toggle for a user, setting will be false. A setting of null means that you haven't assigned that user to a specific variation.
|
|
24
23
|
attr_accessor :setting
|
|
25
24
|
|
|
26
|
-
|
|
27
25
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
28
26
|
def self.attribute_map
|
|
29
27
|
{
|
|
@@ -48,7 +46,7 @@ module LaunchDarklyApi
|
|
|
48
46
|
return unless attributes.is_a?(Hash)
|
|
49
47
|
|
|
50
48
|
# convert string to symbol for hash key
|
|
51
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
49
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
52
50
|
|
|
53
51
|
if attributes.has_key?(:'_links')
|
|
54
52
|
self._links = attributes[:'_links']
|
|
@@ -61,20 +59,19 @@ module LaunchDarklyApi
|
|
|
61
59
|
if attributes.has_key?(:'setting')
|
|
62
60
|
self.setting = attributes[:'setting']
|
|
63
61
|
end
|
|
64
|
-
|
|
65
62
|
end
|
|
66
63
|
|
|
67
64
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
68
65
|
# @return Array for valid properties with the reasons
|
|
69
66
|
def list_invalid_properties
|
|
70
67
|
invalid_properties = Array.new
|
|
71
|
-
|
|
68
|
+
invalid_properties
|
|
72
69
|
end
|
|
73
70
|
|
|
74
71
|
# Check to see if the all the properties in the model are valid
|
|
75
72
|
# @return true if the model is valid
|
|
76
73
|
def valid?
|
|
77
|
-
|
|
74
|
+
true
|
|
78
75
|
end
|
|
79
76
|
|
|
80
77
|
# Checks equality by comparing each attribute.
|
|
@@ -109,7 +106,7 @@ module LaunchDarklyApi
|
|
|
109
106
|
# check to ensure the input is an array given that the the attribute
|
|
110
107
|
# is documented as an array but the input is not
|
|
111
108
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
112
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
109
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
113
110
|
end
|
|
114
111
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
115
112
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -191,7 +188,7 @@ module LaunchDarklyApi
|
|
|
191
188
|
# @return [Hash] Returns the value in the form of hash
|
|
192
189
|
def _to_hash(value)
|
|
193
190
|
if value.is_a?(Array)
|
|
194
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
191
|
+
value.compact.map { |v| _to_hash(v) }
|
|
195
192
|
elsif value.is_a?(Hash)
|
|
196
193
|
{}.tap do |hash|
|
|
197
194
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -202,7 +199,5 @@ module LaunchDarklyApi
|
|
|
202
199
|
value
|
|
203
200
|
end
|
|
204
201
|
end
|
|
205
|
-
|
|
206
202
|
end
|
|
207
|
-
|
|
208
203
|
end
|
|
@@ -3,23 +3,21 @@
|
|
|
3
3
|
|
|
4
4
|
#Build custom integrations with the LaunchDarkly REST API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.0.
|
|
6
|
+
OpenAPI spec version: 2.0.27
|
|
7
7
|
Contact: support@launchdarkly.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.8
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module LaunchDarklyApi
|
|
16
|
-
|
|
17
16
|
class UserFlagSettings
|
|
18
17
|
attr_accessor :_links
|
|
19
18
|
|
|
20
19
|
attr_accessor :items
|
|
21
20
|
|
|
22
|
-
|
|
23
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
24
22
|
def self.attribute_map
|
|
25
23
|
{
|
|
@@ -42,7 +40,7 @@ module LaunchDarklyApi
|
|
|
42
40
|
return unless attributes.is_a?(Hash)
|
|
43
41
|
|
|
44
42
|
# convert string to symbol for hash key
|
|
45
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
43
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
46
44
|
|
|
47
45
|
if attributes.has_key?(:'_links')
|
|
48
46
|
self._links = attributes[:'_links']
|
|
@@ -53,20 +51,19 @@ module LaunchDarklyApi
|
|
|
53
51
|
self.items = value
|
|
54
52
|
end
|
|
55
53
|
end
|
|
56
|
-
|
|
57
54
|
end
|
|
58
55
|
|
|
59
56
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
60
57
|
# @return Array for valid properties with the reasons
|
|
61
58
|
def list_invalid_properties
|
|
62
59
|
invalid_properties = Array.new
|
|
63
|
-
|
|
60
|
+
invalid_properties
|
|
64
61
|
end
|
|
65
62
|
|
|
66
63
|
# Check to see if the all the properties in the model are valid
|
|
67
64
|
# @return true if the model is valid
|
|
68
65
|
def valid?
|
|
69
|
-
|
|
66
|
+
true
|
|
70
67
|
end
|
|
71
68
|
|
|
72
69
|
# Checks equality by comparing each attribute.
|
|
@@ -100,7 +97,7 @@ module LaunchDarklyApi
|
|
|
100
97
|
# check to ensure the input is an array given that the the attribute
|
|
101
98
|
# is documented as an array but the input is not
|
|
102
99
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
103
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
100
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
104
101
|
end
|
|
105
102
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
106
103
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -182,7 +179,7 @@ module LaunchDarklyApi
|
|
|
182
179
|
# @return [Hash] Returns the value in the form of hash
|
|
183
180
|
def _to_hash(value)
|
|
184
181
|
if value.is_a?(Array)
|
|
185
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
182
|
+
value.compact.map { |v| _to_hash(v) }
|
|
186
183
|
elsif value.is_a?(Hash)
|
|
187
184
|
{}.tap do |hash|
|
|
188
185
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -193,7 +190,5 @@ module LaunchDarklyApi
|
|
|
193
190
|
value
|
|
194
191
|
end
|
|
195
192
|
end
|
|
196
|
-
|
|
197
193
|
end
|
|
198
|
-
|
|
199
194
|
end
|
|
@@ -3,17 +3,16 @@
|
|
|
3
3
|
|
|
4
4
|
#Build custom integrations with the LaunchDarkly REST API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.0.
|
|
6
|
+
OpenAPI spec version: 2.0.27
|
|
7
7
|
Contact: support@launchdarkly.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.8
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module LaunchDarklyApi
|
|
16
|
-
|
|
17
16
|
class UserRecord
|
|
18
17
|
attr_accessor :last_ping
|
|
19
18
|
|
|
@@ -25,7 +24,6 @@ module LaunchDarklyApi
|
|
|
25
24
|
|
|
26
25
|
attr_accessor :avatar
|
|
27
26
|
|
|
28
|
-
|
|
29
27
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
30
28
|
def self.attribute_map
|
|
31
29
|
{
|
|
@@ -54,7 +52,7 @@ module LaunchDarklyApi
|
|
|
54
52
|
return unless attributes.is_a?(Hash)
|
|
55
53
|
|
|
56
54
|
# convert string to symbol for hash key
|
|
57
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
55
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
58
56
|
|
|
59
57
|
if attributes.has_key?(:'lastPing')
|
|
60
58
|
self.last_ping = attributes[:'lastPing']
|
|
@@ -75,20 +73,19 @@ module LaunchDarklyApi
|
|
|
75
73
|
if attributes.has_key?(:'avatar')
|
|
76
74
|
self.avatar = attributes[:'avatar']
|
|
77
75
|
end
|
|
78
|
-
|
|
79
76
|
end
|
|
80
77
|
|
|
81
78
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
82
79
|
# @return Array for valid properties with the reasons
|
|
83
80
|
def list_invalid_properties
|
|
84
81
|
invalid_properties = Array.new
|
|
85
|
-
|
|
82
|
+
invalid_properties
|
|
86
83
|
end
|
|
87
84
|
|
|
88
85
|
# Check to see if the all the properties in the model are valid
|
|
89
86
|
# @return true if the model is valid
|
|
90
87
|
def valid?
|
|
91
|
-
|
|
88
|
+
true
|
|
92
89
|
end
|
|
93
90
|
|
|
94
91
|
# Checks equality by comparing each attribute.
|
|
@@ -125,7 +122,7 @@ module LaunchDarklyApi
|
|
|
125
122
|
# check to ensure the input is an array given that the the attribute
|
|
126
123
|
# is documented as an array but the input is not
|
|
127
124
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
128
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
125
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
129
126
|
end
|
|
130
127
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
131
128
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -207,7 +204,7 @@ module LaunchDarklyApi
|
|
|
207
204
|
# @return [Hash] Returns the value in the form of hash
|
|
208
205
|
def _to_hash(value)
|
|
209
206
|
if value.is_a?(Array)
|
|
210
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
207
|
+
value.compact.map { |v| _to_hash(v) }
|
|
211
208
|
elsif value.is_a?(Hash)
|
|
212
209
|
{}.tap do |hash|
|
|
213
210
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -218,7 +215,5 @@ module LaunchDarklyApi
|
|
|
218
215
|
value
|
|
219
216
|
end
|
|
220
217
|
end
|
|
221
|
-
|
|
222
218
|
end
|
|
223
|
-
|
|
224
219
|
end
|
|
@@ -3,17 +3,16 @@
|
|
|
3
3
|
|
|
4
4
|
#Build custom integrations with the LaunchDarkly REST API
|
|
5
5
|
|
|
6
|
-
OpenAPI spec version: 2.0.
|
|
6
|
+
OpenAPI spec version: 2.0.27
|
|
7
7
|
Contact: support@launchdarkly.com
|
|
8
8
|
Generated by: https://github.com/swagger-api/swagger-codegen.git
|
|
9
|
-
Swagger Codegen version: 2.
|
|
9
|
+
Swagger Codegen version: 2.4.8
|
|
10
10
|
|
|
11
11
|
=end
|
|
12
12
|
|
|
13
13
|
require 'date'
|
|
14
14
|
|
|
15
15
|
module LaunchDarklyApi
|
|
16
|
-
|
|
17
16
|
class UserSegment
|
|
18
17
|
# Unique identifier for the user segment.
|
|
19
18
|
attr_accessor :key
|
|
@@ -43,7 +42,6 @@ module LaunchDarklyApi
|
|
|
43
42
|
|
|
44
43
|
attr_accessor :_links
|
|
45
44
|
|
|
46
|
-
|
|
47
45
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
48
46
|
def self.attribute_map
|
|
49
47
|
{
|
|
@@ -82,7 +80,7 @@ module LaunchDarklyApi
|
|
|
82
80
|
return unless attributes.is_a?(Hash)
|
|
83
81
|
|
|
84
82
|
# convert string to symbol for hash key
|
|
85
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
83
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
86
84
|
|
|
87
85
|
if attributes.has_key?(:'key')
|
|
88
86
|
self.key = attributes[:'key']
|
|
@@ -131,7 +129,6 @@ module LaunchDarklyApi
|
|
|
131
129
|
if attributes.has_key?(:'_links')
|
|
132
130
|
self._links = attributes[:'_links']
|
|
133
131
|
end
|
|
134
|
-
|
|
135
132
|
end
|
|
136
133
|
|
|
137
134
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -139,18 +136,18 @@ module LaunchDarklyApi
|
|
|
139
136
|
def list_invalid_properties
|
|
140
137
|
invalid_properties = Array.new
|
|
141
138
|
if @key.nil?
|
|
142
|
-
invalid_properties.push(
|
|
139
|
+
invalid_properties.push('invalid value for "key", key cannot be nil.')
|
|
143
140
|
end
|
|
144
141
|
|
|
145
142
|
if @name.nil?
|
|
146
|
-
invalid_properties.push(
|
|
143
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
147
144
|
end
|
|
148
145
|
|
|
149
146
|
if @creation_date.nil?
|
|
150
|
-
invalid_properties.push(
|
|
147
|
+
invalid_properties.push('invalid value for "creation_date", creation_date cannot be nil.')
|
|
151
148
|
end
|
|
152
149
|
|
|
153
|
-
|
|
150
|
+
invalid_properties
|
|
154
151
|
end
|
|
155
152
|
|
|
156
153
|
# Check to see if the all the properties in the model are valid
|
|
@@ -159,7 +156,7 @@ module LaunchDarklyApi
|
|
|
159
156
|
return false if @key.nil?
|
|
160
157
|
return false if @name.nil?
|
|
161
158
|
return false if @creation_date.nil?
|
|
162
|
-
|
|
159
|
+
true
|
|
163
160
|
end
|
|
164
161
|
|
|
165
162
|
# Checks equality by comparing each attribute.
|
|
@@ -201,7 +198,7 @@ module LaunchDarklyApi
|
|
|
201
198
|
# check to ensure the input is an array given that the the attribute
|
|
202
199
|
# is documented as an array but the input is not
|
|
203
200
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
204
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
201
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
205
202
|
end
|
|
206
203
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
207
204
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -283,7 +280,7 @@ module LaunchDarklyApi
|
|
|
283
280
|
# @return [Hash] Returns the value in the form of hash
|
|
284
281
|
def _to_hash(value)
|
|
285
282
|
if value.is_a?(Array)
|
|
286
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
283
|
+
value.compact.map { |v| _to_hash(v) }
|
|
287
284
|
elsif value.is_a?(Hash)
|
|
288
285
|
{}.tap do |hash|
|
|
289
286
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -294,7 +291,5 @@ module LaunchDarklyApi
|
|
|
294
291
|
value
|
|
295
292
|
end
|
|
296
293
|
end
|
|
297
|
-
|
|
298
294
|
end
|
|
299
|
-
|
|
300
295
|
end
|