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,192 @@
|
|
|
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 EvaluationUsageError
|
|
17
|
+
attr_accessor :code
|
|
18
|
+
|
|
19
|
+
attr_accessor :message
|
|
20
|
+
|
|
21
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
22
|
+
def self.attribute_map
|
|
23
|
+
{
|
|
24
|
+
:'code' => :'code',
|
|
25
|
+
:'message' => :'message'
|
|
26
|
+
}
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
# Attribute type mapping.
|
|
30
|
+
def self.swagger_types
|
|
31
|
+
{
|
|
32
|
+
:'code' => :'String',
|
|
33
|
+
:'message' => :'String'
|
|
34
|
+
}
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
# Initializes the object
|
|
38
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
39
|
+
def initialize(attributes = {})
|
|
40
|
+
return unless attributes.is_a?(Hash)
|
|
41
|
+
|
|
42
|
+
# convert string to symbol for hash key
|
|
43
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
44
|
+
|
|
45
|
+
if attributes.has_key?(:'code')
|
|
46
|
+
self.code = attributes[:'code']
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
if attributes.has_key?(:'message')
|
|
50
|
+
self.message = attributes[:'message']
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
55
|
+
# @return Array for valid properties with the reasons
|
|
56
|
+
def list_invalid_properties
|
|
57
|
+
invalid_properties = Array.new
|
|
58
|
+
invalid_properties
|
|
59
|
+
end
|
|
60
|
+
|
|
61
|
+
# Check to see if the all the properties in the model are valid
|
|
62
|
+
# @return true if the model is valid
|
|
63
|
+
def valid?
|
|
64
|
+
true
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
# Checks equality by comparing each attribute.
|
|
68
|
+
# @param [Object] Object to be compared
|
|
69
|
+
def ==(o)
|
|
70
|
+
return true if self.equal?(o)
|
|
71
|
+
self.class == o.class &&
|
|
72
|
+
code == o.code &&
|
|
73
|
+
message == o.message
|
|
74
|
+
end
|
|
75
|
+
|
|
76
|
+
# @see the `==` method
|
|
77
|
+
# @param [Object] Object to be compared
|
|
78
|
+
def eql?(o)
|
|
79
|
+
self == o
|
|
80
|
+
end
|
|
81
|
+
|
|
82
|
+
# Calculates hash code according to all attributes.
|
|
83
|
+
# @return [Fixnum] Hash code
|
|
84
|
+
def hash
|
|
85
|
+
[code, message].hash
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
# Builds the object from hash
|
|
89
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
90
|
+
# @return [Object] Returns the model itself
|
|
91
|
+
def build_from_hash(attributes)
|
|
92
|
+
return nil unless attributes.is_a?(Hash)
|
|
93
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
94
|
+
if type =~ /\AArray<(.*)>/i
|
|
95
|
+
# check to ensure the input is an array given that the the attribute
|
|
96
|
+
# is documented as an array but the input is not
|
|
97
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
98
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
99
|
+
end
|
|
100
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
101
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
102
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
103
|
+
end
|
|
104
|
+
|
|
105
|
+
self
|
|
106
|
+
end
|
|
107
|
+
|
|
108
|
+
# Deserializes the data based on type
|
|
109
|
+
# @param string type Data type
|
|
110
|
+
# @param string value Value to be deserialized
|
|
111
|
+
# @return [Object] Deserialized data
|
|
112
|
+
def _deserialize(type, value)
|
|
113
|
+
case type.to_sym
|
|
114
|
+
when :DateTime
|
|
115
|
+
DateTime.parse(value)
|
|
116
|
+
when :Date
|
|
117
|
+
Date.parse(value)
|
|
118
|
+
when :String
|
|
119
|
+
value.to_s
|
|
120
|
+
when :Integer
|
|
121
|
+
value.to_i
|
|
122
|
+
when :Float
|
|
123
|
+
value.to_f
|
|
124
|
+
when :BOOLEAN
|
|
125
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
126
|
+
true
|
|
127
|
+
else
|
|
128
|
+
false
|
|
129
|
+
end
|
|
130
|
+
when :Object
|
|
131
|
+
# generic object (usually a Hash), return directly
|
|
132
|
+
value
|
|
133
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
134
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
135
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
136
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
137
|
+
k_type = Regexp.last_match[:k_type]
|
|
138
|
+
v_type = Regexp.last_match[:v_type]
|
|
139
|
+
{}.tap do |hash|
|
|
140
|
+
value.each do |k, v|
|
|
141
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
142
|
+
end
|
|
143
|
+
end
|
|
144
|
+
else # model
|
|
145
|
+
temp_model = LaunchDarklyApi.const_get(type).new
|
|
146
|
+
temp_model.build_from_hash(value)
|
|
147
|
+
end
|
|
148
|
+
end
|
|
149
|
+
|
|
150
|
+
# Returns the string representation of the object
|
|
151
|
+
# @return [String] String presentation of the object
|
|
152
|
+
def to_s
|
|
153
|
+
to_hash.to_s
|
|
154
|
+
end
|
|
155
|
+
|
|
156
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
157
|
+
# @return [Hash] Returns the object in the form of hash
|
|
158
|
+
def to_body
|
|
159
|
+
to_hash
|
|
160
|
+
end
|
|
161
|
+
|
|
162
|
+
# Returns the object in the form of hash
|
|
163
|
+
# @return [Hash] Returns the object in the form of hash
|
|
164
|
+
def to_hash
|
|
165
|
+
hash = {}
|
|
166
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
167
|
+
value = self.send(attr)
|
|
168
|
+
next if value.nil?
|
|
169
|
+
hash[param] = _to_hash(value)
|
|
170
|
+
end
|
|
171
|
+
hash
|
|
172
|
+
end
|
|
173
|
+
|
|
174
|
+
# Outputs non-array value in the form of hash
|
|
175
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
176
|
+
# @param [Object] value Any valid value
|
|
177
|
+
# @return [Hash] Returns the value in the form of hash
|
|
178
|
+
def _to_hash(value)
|
|
179
|
+
if value.is_a?(Array)
|
|
180
|
+
value.compact.map { |v| _to_hash(v) }
|
|
181
|
+
elsif value.is_a?(Hash)
|
|
182
|
+
{}.tap do |hash|
|
|
183
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
184
|
+
end
|
|
185
|
+
elsif value.respond_to? :to_hash
|
|
186
|
+
value.to_hash
|
|
187
|
+
else
|
|
188
|
+
value
|
|
189
|
+
end
|
|
190
|
+
end
|
|
191
|
+
end
|
|
192
|
+
end
|
|
@@ -3,28 +3,30 @@
|
|
|
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 Events
|
|
17
|
+
attr_accessor :links
|
|
18
18
|
|
|
19
19
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
20
20
|
def self.attribute_map
|
|
21
21
|
{
|
|
22
|
+
:'links' => :'links'
|
|
22
23
|
}
|
|
23
24
|
end
|
|
24
25
|
|
|
25
26
|
# Attribute type mapping.
|
|
26
27
|
def self.swagger_types
|
|
27
28
|
{
|
|
29
|
+
:'links' => :'UsageLinks'
|
|
28
30
|
}
|
|
29
31
|
end
|
|
30
32
|
|
|
@@ -34,28 +36,32 @@ module LaunchDarklyApi
|
|
|
34
36
|
return unless attributes.is_a?(Hash)
|
|
35
37
|
|
|
36
38
|
# convert string to symbol for hash key
|
|
37
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
39
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
38
40
|
|
|
41
|
+
if attributes.has_key?(:'links')
|
|
42
|
+
self.links = attributes[:'links']
|
|
43
|
+
end
|
|
39
44
|
end
|
|
40
45
|
|
|
41
46
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
42
47
|
# @return Array for valid properties with the reasons
|
|
43
48
|
def list_invalid_properties
|
|
44
49
|
invalid_properties = Array.new
|
|
45
|
-
|
|
50
|
+
invalid_properties
|
|
46
51
|
end
|
|
47
52
|
|
|
48
53
|
# Check to see if the all the properties in the model are valid
|
|
49
54
|
# @return true if the model is valid
|
|
50
55
|
def valid?
|
|
51
|
-
|
|
56
|
+
true
|
|
52
57
|
end
|
|
53
58
|
|
|
54
59
|
# Checks equality by comparing each attribute.
|
|
55
60
|
# @param [Object] Object to be compared
|
|
56
61
|
def ==(o)
|
|
57
62
|
return true if self.equal?(o)
|
|
58
|
-
self.class == o.class
|
|
63
|
+
self.class == o.class &&
|
|
64
|
+
links == o.links
|
|
59
65
|
end
|
|
60
66
|
|
|
61
67
|
# @see the `==` method
|
|
@@ -67,7 +73,7 @@ module LaunchDarklyApi
|
|
|
67
73
|
# Calculates hash code according to all attributes.
|
|
68
74
|
# @return [Fixnum] Hash code
|
|
69
75
|
def hash
|
|
70
|
-
[].hash
|
|
76
|
+
[links].hash
|
|
71
77
|
end
|
|
72
78
|
|
|
73
79
|
# Builds the object from hash
|
|
@@ -80,7 +86,7 @@ module LaunchDarklyApi
|
|
|
80
86
|
# check to ensure the input is an array given that the the attribute
|
|
81
87
|
# is documented as an array but the input is not
|
|
82
88
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
83
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
89
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
84
90
|
end
|
|
85
91
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
86
92
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -162,7 +168,7 @@ module LaunchDarklyApi
|
|
|
162
168
|
# @return [Hash] Returns the value in the form of hash
|
|
163
169
|
def _to_hash(value)
|
|
164
170
|
if value.is_a?(Array)
|
|
165
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
171
|
+
value.compact.map { |v| _to_hash(v) }
|
|
166
172
|
elsif value.is_a?(Hash)
|
|
167
173
|
{}.tap do |hash|
|
|
168
174
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -173,7 +179,5 @@ module LaunchDarklyApi
|
|
|
173
179
|
value
|
|
174
180
|
end
|
|
175
181
|
end
|
|
176
|
-
|
|
177
182
|
end
|
|
178
|
-
|
|
179
183
|
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 Fallthrough
|
|
18
17
|
attr_accessor :variation
|
|
19
18
|
|
|
20
19
|
attr_accessor :rollout
|
|
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?(:'variation')
|
|
48
46
|
self.variation = attributes[:'variation']
|
|
@@ -51,20 +49,19 @@ module LaunchDarklyApi
|
|
|
51
49
|
if attributes.has_key?(:'rollout')
|
|
52
50
|
self.rollout = attributes[:'rollout']
|
|
53
51
|
end
|
|
54
|
-
|
|
55
52
|
end
|
|
56
53
|
|
|
57
54
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
58
55
|
# @return Array for valid properties with the reasons
|
|
59
56
|
def list_invalid_properties
|
|
60
57
|
invalid_properties = Array.new
|
|
61
|
-
|
|
58
|
+
invalid_properties
|
|
62
59
|
end
|
|
63
60
|
|
|
64
61
|
# Check to see if the all the properties in the model are valid
|
|
65
62
|
# @return true if the model is valid
|
|
66
63
|
def valid?
|
|
67
|
-
|
|
64
|
+
true
|
|
68
65
|
end
|
|
69
66
|
|
|
70
67
|
# Checks equality by comparing each attribute.
|
|
@@ -98,7 +95,7 @@ module LaunchDarklyApi
|
|
|
98
95
|
# check to ensure the input is an array given that the the attribute
|
|
99
96
|
# is documented as an array but the input is not
|
|
100
97
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
101
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
98
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
102
99
|
end
|
|
103
100
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
104
101
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -180,7 +177,7 @@ module LaunchDarklyApi
|
|
|
180
177
|
# @return [Hash] Returns the value in the form of hash
|
|
181
178
|
def _to_hash(value)
|
|
182
179
|
if value.is_a?(Array)
|
|
183
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
180
|
+
value.compact.map { |v| _to_hash(v) }
|
|
184
181
|
elsif value.is_a?(Hash)
|
|
185
182
|
{}.tap do |hash|
|
|
186
183
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -191,7 +188,5 @@ module LaunchDarklyApi
|
|
|
191
188
|
value
|
|
192
189
|
end
|
|
193
190
|
end
|
|
194
|
-
|
|
195
191
|
end
|
|
196
|
-
|
|
197
192
|
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 FeatureFlag
|
|
18
17
|
attr_accessor :key
|
|
19
18
|
|
|
@@ -43,8 +42,12 @@ module LaunchDarklyApi
|
|
|
43
42
|
# The variations for this feature flag.
|
|
44
43
|
attr_accessor :variations
|
|
45
44
|
|
|
45
|
+
# An array goals from all environments associated with this feature flag
|
|
46
|
+
attr_accessor :goal_ids
|
|
47
|
+
|
|
46
48
|
attr_accessor :_version
|
|
47
49
|
|
|
50
|
+
# A mapping of keys to CustomProperty entries.
|
|
48
51
|
attr_accessor :custom_properties
|
|
49
52
|
|
|
50
53
|
attr_accessor :_links
|
|
@@ -53,6 +56,11 @@ module LaunchDarklyApi
|
|
|
53
56
|
|
|
54
57
|
attr_accessor :environments
|
|
55
58
|
|
|
59
|
+
# A unix epoch time in milliseconds specifying the archived time of this flag.
|
|
60
|
+
attr_accessor :archived_date
|
|
61
|
+
|
|
62
|
+
# Whether or not this flag is archived.
|
|
63
|
+
attr_accessor :archived
|
|
56
64
|
|
|
57
65
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
58
66
|
def self.attribute_map
|
|
@@ -67,11 +75,14 @@ module LaunchDarklyApi
|
|
|
67
75
|
:'maintainer_id' => :'maintainerId',
|
|
68
76
|
:'tags' => :'tags',
|
|
69
77
|
:'variations' => :'variations',
|
|
78
|
+
:'goal_ids' => :'goalIds',
|
|
70
79
|
:'_version' => :'_version',
|
|
71
80
|
:'custom_properties' => :'customProperties',
|
|
72
81
|
:'_links' => :'_links',
|
|
73
82
|
:'_maintainer' => :'_maintainer',
|
|
74
|
-
:'environments' => :'environments'
|
|
83
|
+
:'environments' => :'environments',
|
|
84
|
+
:'archived_date' => :'archivedDate',
|
|
85
|
+
:'archived' => :'archived'
|
|
75
86
|
}
|
|
76
87
|
end
|
|
77
88
|
|
|
@@ -88,11 +99,14 @@ module LaunchDarklyApi
|
|
|
88
99
|
:'maintainer_id' => :'String',
|
|
89
100
|
:'tags' => :'Array<String>',
|
|
90
101
|
:'variations' => :'Array<Variation>',
|
|
102
|
+
:'goal_ids' => :'Array<String>',
|
|
91
103
|
:'_version' => :'Integer',
|
|
92
|
-
:'custom_properties' => :'
|
|
104
|
+
:'custom_properties' => :'Hash<String, CustomProperty>',
|
|
93
105
|
:'_links' => :'Links',
|
|
94
106
|
:'_maintainer' => :'Member',
|
|
95
|
-
:'environments' => :'Hash<String, FeatureFlagConfig>'
|
|
107
|
+
:'environments' => :'Hash<String, FeatureFlagConfig>',
|
|
108
|
+
:'archived_date' => :'Float',
|
|
109
|
+
:'archived' => :'BOOLEAN'
|
|
96
110
|
}
|
|
97
111
|
end
|
|
98
112
|
|
|
@@ -102,7 +116,7 @@ module LaunchDarklyApi
|
|
|
102
116
|
return unless attributes.is_a?(Hash)
|
|
103
117
|
|
|
104
118
|
# convert string to symbol for hash key
|
|
105
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
119
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
106
120
|
|
|
107
121
|
if attributes.has_key?(:'key')
|
|
108
122
|
self.key = attributes[:'key']
|
|
@@ -148,12 +162,20 @@ module LaunchDarklyApi
|
|
|
148
162
|
end
|
|
149
163
|
end
|
|
150
164
|
|
|
165
|
+
if attributes.has_key?(:'goalIds')
|
|
166
|
+
if (value = attributes[:'goalIds']).is_a?(Array)
|
|
167
|
+
self.goal_ids = value
|
|
168
|
+
end
|
|
169
|
+
end
|
|
170
|
+
|
|
151
171
|
if attributes.has_key?(:'_version')
|
|
152
172
|
self._version = attributes[:'_version']
|
|
153
173
|
end
|
|
154
174
|
|
|
155
175
|
if attributes.has_key?(:'customProperties')
|
|
156
|
-
|
|
176
|
+
if (value = attributes[:'customProperties']).is_a?(Hash)
|
|
177
|
+
self.custom_properties = value
|
|
178
|
+
end
|
|
157
179
|
end
|
|
158
180
|
|
|
159
181
|
if attributes.has_key?(:'_links')
|
|
@@ -170,19 +192,26 @@ module LaunchDarklyApi
|
|
|
170
192
|
end
|
|
171
193
|
end
|
|
172
194
|
|
|
195
|
+
if attributes.has_key?(:'archivedDate')
|
|
196
|
+
self.archived_date = attributes[:'archivedDate']
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
if attributes.has_key?(:'archived')
|
|
200
|
+
self.archived = attributes[:'archived']
|
|
201
|
+
end
|
|
173
202
|
end
|
|
174
203
|
|
|
175
204
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
176
205
|
# @return Array for valid properties with the reasons
|
|
177
206
|
def list_invalid_properties
|
|
178
207
|
invalid_properties = Array.new
|
|
179
|
-
|
|
208
|
+
invalid_properties
|
|
180
209
|
end
|
|
181
210
|
|
|
182
211
|
# Check to see if the all the properties in the model are valid
|
|
183
212
|
# @return true if the model is valid
|
|
184
213
|
def valid?
|
|
185
|
-
|
|
214
|
+
true
|
|
186
215
|
end
|
|
187
216
|
|
|
188
217
|
# Checks equality by comparing each attribute.
|
|
@@ -200,11 +229,14 @@ module LaunchDarklyApi
|
|
|
200
229
|
maintainer_id == o.maintainer_id &&
|
|
201
230
|
tags == o.tags &&
|
|
202
231
|
variations == o.variations &&
|
|
232
|
+
goal_ids == o.goal_ids &&
|
|
203
233
|
_version == o._version &&
|
|
204
234
|
custom_properties == o.custom_properties &&
|
|
205
235
|
_links == o._links &&
|
|
206
236
|
_maintainer == o._maintainer &&
|
|
207
|
-
environments == o.environments
|
|
237
|
+
environments == o.environments &&
|
|
238
|
+
archived_date == o.archived_date &&
|
|
239
|
+
archived == o.archived
|
|
208
240
|
end
|
|
209
241
|
|
|
210
242
|
# @see the `==` method
|
|
@@ -216,7 +248,7 @@ module LaunchDarklyApi
|
|
|
216
248
|
# Calculates hash code according to all attributes.
|
|
217
249
|
# @return [Fixnum] Hash code
|
|
218
250
|
def hash
|
|
219
|
-
[key, name, description, kind, creation_date, include_in_snippet, temporary, maintainer_id, tags, variations, _version, custom_properties, _links, _maintainer, environments].hash
|
|
251
|
+
[key, name, description, kind, creation_date, include_in_snippet, temporary, maintainer_id, tags, variations, goal_ids, _version, custom_properties, _links, _maintainer, environments, archived_date, archived].hash
|
|
220
252
|
end
|
|
221
253
|
|
|
222
254
|
# Builds the object from hash
|
|
@@ -229,7 +261,7 @@ module LaunchDarklyApi
|
|
|
229
261
|
# check to ensure the input is an array given that the the attribute
|
|
230
262
|
# is documented as an array but the input is not
|
|
231
263
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
232
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
264
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
233
265
|
end
|
|
234
266
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
235
267
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -311,7 +343,7 @@ module LaunchDarklyApi
|
|
|
311
343
|
# @return [Hash] Returns the value in the form of hash
|
|
312
344
|
def _to_hash(value)
|
|
313
345
|
if value.is_a?(Array)
|
|
314
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
346
|
+
value.compact.map { |v| _to_hash(v) }
|
|
315
347
|
elsif value.is_a?(Hash)
|
|
316
348
|
{}.tap do |hash|
|
|
317
349
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -322,7 +354,5 @@ module LaunchDarklyApi
|
|
|
322
354
|
value
|
|
323
355
|
end
|
|
324
356
|
end
|
|
325
|
-
|
|
326
357
|
end
|
|
327
|
-
|
|
328
358
|
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 FeatureFlagBody
|
|
18
17
|
# A human-friendly name for the feature flag. Remember to note if this flag is intended to be temporary or permanent.
|
|
19
18
|
attr_accessor :name
|
|
@@ -36,7 +35,6 @@ module LaunchDarklyApi
|
|
|
36
35
|
# Whether or not this flag should be made available to the client-side JavaScript SDK.
|
|
37
36
|
attr_accessor :include_in_snippet
|
|
38
37
|
|
|
39
|
-
|
|
40
38
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
41
39
|
def self.attribute_map
|
|
42
40
|
{
|
|
@@ -69,7 +67,7 @@ module LaunchDarklyApi
|
|
|
69
67
|
return unless attributes.is_a?(Hash)
|
|
70
68
|
|
|
71
69
|
# convert string to symbol for hash key
|
|
72
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
70
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
73
71
|
|
|
74
72
|
if attributes.has_key?(:'name')
|
|
75
73
|
self.name = attributes[:'name']
|
|
@@ -102,7 +100,6 @@ module LaunchDarklyApi
|
|
|
102
100
|
if attributes.has_key?(:'includeInSnippet')
|
|
103
101
|
self.include_in_snippet = attributes[:'includeInSnippet']
|
|
104
102
|
end
|
|
105
|
-
|
|
106
103
|
end
|
|
107
104
|
|
|
108
105
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
@@ -110,18 +107,18 @@ module LaunchDarklyApi
|
|
|
110
107
|
def list_invalid_properties
|
|
111
108
|
invalid_properties = Array.new
|
|
112
109
|
if @name.nil?
|
|
113
|
-
invalid_properties.push(
|
|
110
|
+
invalid_properties.push('invalid value for "name", name cannot be nil.')
|
|
114
111
|
end
|
|
115
112
|
|
|
116
113
|
if @key.nil?
|
|
117
|
-
invalid_properties.push(
|
|
114
|
+
invalid_properties.push('invalid value for "key", key cannot be nil.')
|
|
118
115
|
end
|
|
119
116
|
|
|
120
117
|
if @variations.nil?
|
|
121
|
-
invalid_properties.push(
|
|
118
|
+
invalid_properties.push('invalid value for "variations", variations cannot be nil.')
|
|
122
119
|
end
|
|
123
120
|
|
|
124
|
-
|
|
121
|
+
invalid_properties
|
|
125
122
|
end
|
|
126
123
|
|
|
127
124
|
# Check to see if the all the properties in the model are valid
|
|
@@ -130,7 +127,7 @@ module LaunchDarklyApi
|
|
|
130
127
|
return false if @name.nil?
|
|
131
128
|
return false if @key.nil?
|
|
132
129
|
return false if @variations.nil?
|
|
133
|
-
|
|
130
|
+
true
|
|
134
131
|
end
|
|
135
132
|
|
|
136
133
|
# Checks equality by comparing each attribute.
|
|
@@ -169,7 +166,7 @@ module LaunchDarklyApi
|
|
|
169
166
|
# check to ensure the input is an array given that the the attribute
|
|
170
167
|
# is documented as an array but the input is not
|
|
171
168
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
172
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
169
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
173
170
|
end
|
|
174
171
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
175
172
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -251,7 +248,7 @@ module LaunchDarklyApi
|
|
|
251
248
|
# @return [Hash] Returns the value in the form of hash
|
|
252
249
|
def _to_hash(value)
|
|
253
250
|
if value.is_a?(Array)
|
|
254
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
251
|
+
value.compact.map { |v| _to_hash(v) }
|
|
255
252
|
elsif value.is_a?(Hash)
|
|
256
253
|
{}.tap do |hash|
|
|
257
254
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -262,7 +259,5 @@ module LaunchDarklyApi
|
|
|
262
259
|
value
|
|
263
260
|
end
|
|
264
261
|
end
|
|
265
|
-
|
|
266
262
|
end
|
|
267
|
-
|
|
268
263
|
end
|