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
|
@@ -3,24 +3,25 @@
|
|
|
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 Rollout
|
|
18
|
-
attr_accessor :
|
|
17
|
+
attr_accessor :bucket_by
|
|
19
18
|
|
|
19
|
+
attr_accessor :variations
|
|
20
20
|
|
|
21
21
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
22
22
|
def self.attribute_map
|
|
23
23
|
{
|
|
24
|
+
:'bucket_by' => :'bucketBy',
|
|
24
25
|
:'variations' => :'variations'
|
|
25
26
|
}
|
|
26
27
|
end
|
|
@@ -28,6 +29,7 @@ module LaunchDarklyApi
|
|
|
28
29
|
# Attribute type mapping.
|
|
29
30
|
def self.swagger_types
|
|
30
31
|
{
|
|
32
|
+
:'bucket_by' => :'String',
|
|
31
33
|
:'variations' => :'Array<WeightedVariation>'
|
|
32
34
|
}
|
|
33
35
|
end
|
|
@@ -38,27 +40,30 @@ module LaunchDarklyApi
|
|
|
38
40
|
return unless attributes.is_a?(Hash)
|
|
39
41
|
|
|
40
42
|
# convert string to symbol for hash key
|
|
41
|
-
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 }
|
|
44
|
+
|
|
45
|
+
if attributes.has_key?(:'bucketBy')
|
|
46
|
+
self.bucket_by = attributes[:'bucketBy']
|
|
47
|
+
end
|
|
42
48
|
|
|
43
49
|
if attributes.has_key?(:'variations')
|
|
44
50
|
if (value = attributes[:'variations']).is_a?(Array)
|
|
45
51
|
self.variations = value
|
|
46
52
|
end
|
|
47
53
|
end
|
|
48
|
-
|
|
49
54
|
end
|
|
50
55
|
|
|
51
56
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
52
57
|
# @return Array for valid properties with the reasons
|
|
53
58
|
def list_invalid_properties
|
|
54
59
|
invalid_properties = Array.new
|
|
55
|
-
|
|
60
|
+
invalid_properties
|
|
56
61
|
end
|
|
57
62
|
|
|
58
63
|
# Check to see if the all the properties in the model are valid
|
|
59
64
|
# @return true if the model is valid
|
|
60
65
|
def valid?
|
|
61
|
-
|
|
66
|
+
true
|
|
62
67
|
end
|
|
63
68
|
|
|
64
69
|
# Checks equality by comparing each attribute.
|
|
@@ -66,6 +71,7 @@ module LaunchDarklyApi
|
|
|
66
71
|
def ==(o)
|
|
67
72
|
return true if self.equal?(o)
|
|
68
73
|
self.class == o.class &&
|
|
74
|
+
bucket_by == o.bucket_by &&
|
|
69
75
|
variations == o.variations
|
|
70
76
|
end
|
|
71
77
|
|
|
@@ -78,7 +84,7 @@ module LaunchDarklyApi
|
|
|
78
84
|
# Calculates hash code according to all attributes.
|
|
79
85
|
# @return [Fixnum] Hash code
|
|
80
86
|
def hash
|
|
81
|
-
[variations].hash
|
|
87
|
+
[bucket_by, variations].hash
|
|
82
88
|
end
|
|
83
89
|
|
|
84
90
|
# Builds the object from hash
|
|
@@ -91,7 +97,7 @@ module LaunchDarklyApi
|
|
|
91
97
|
# check to ensure the input is an array given that the the attribute
|
|
92
98
|
# is documented as an array but the input is not
|
|
93
99
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
94
|
-
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) })
|
|
95
101
|
end
|
|
96
102
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
97
103
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -173,7 +179,7 @@ module LaunchDarklyApi
|
|
|
173
179
|
# @return [Hash] Returns the value in the form of hash
|
|
174
180
|
def _to_hash(value)
|
|
175
181
|
if value.is_a?(Array)
|
|
176
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
182
|
+
value.compact.map { |v| _to_hash(v) }
|
|
177
183
|
elsif value.is_a?(Hash)
|
|
178
184
|
{}.tap do |hash|
|
|
179
185
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -184,7 +190,5 @@ module LaunchDarklyApi
|
|
|
184
190
|
value
|
|
185
191
|
end
|
|
186
192
|
end
|
|
187
|
-
|
|
188
193
|
end
|
|
189
|
-
|
|
190
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 Rule
|
|
18
17
|
attr_accessor :_id
|
|
19
18
|
|
|
@@ -23,7 +22,6 @@ module LaunchDarklyApi
|
|
|
23
22
|
|
|
24
23
|
attr_accessor :clauses
|
|
25
24
|
|
|
26
|
-
|
|
27
25
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
28
26
|
def self.attribute_map
|
|
29
27
|
{
|
|
@@ -50,7 +48,7 @@ module LaunchDarklyApi
|
|
|
50
48
|
return unless attributes.is_a?(Hash)
|
|
51
49
|
|
|
52
50
|
# convert string to symbol for hash key
|
|
53
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
51
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
54
52
|
|
|
55
53
|
if attributes.has_key?(:'_id')
|
|
56
54
|
self._id = attributes[:'_id']
|
|
@@ -69,20 +67,19 @@ module LaunchDarklyApi
|
|
|
69
67
|
self.clauses = value
|
|
70
68
|
end
|
|
71
69
|
end
|
|
72
|
-
|
|
73
70
|
end
|
|
74
71
|
|
|
75
72
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
76
73
|
# @return Array for valid properties with the reasons
|
|
77
74
|
def list_invalid_properties
|
|
78
75
|
invalid_properties = Array.new
|
|
79
|
-
|
|
76
|
+
invalid_properties
|
|
80
77
|
end
|
|
81
78
|
|
|
82
79
|
# Check to see if the all the properties in the model are valid
|
|
83
80
|
# @return true if the model is valid
|
|
84
81
|
def valid?
|
|
85
|
-
|
|
82
|
+
true
|
|
86
83
|
end
|
|
87
84
|
|
|
88
85
|
# Checks equality by comparing each attribute.
|
|
@@ -118,7 +115,7 @@ module LaunchDarklyApi
|
|
|
118
115
|
# check to ensure the input is an array given that the the attribute
|
|
119
116
|
# is documented as an array but the input is not
|
|
120
117
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
121
|
-
self.send("#{key}=", attributes[self.class.attribute_map[key]].map{ |v| _deserialize($1, v) }
|
|
118
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
122
119
|
end
|
|
123
120
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
124
121
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -200,7 +197,7 @@ module LaunchDarklyApi
|
|
|
200
197
|
# @return [Hash] Returns the value in the form of hash
|
|
201
198
|
def _to_hash(value)
|
|
202
199
|
if value.is_a?(Array)
|
|
203
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
200
|
+
value.compact.map { |v| _to_hash(v) }
|
|
204
201
|
elsif value.is_a?(Hash)
|
|
205
202
|
{}.tap do |hash|
|
|
206
203
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -211,7 +208,5 @@ module LaunchDarklyApi
|
|
|
211
208
|
value
|
|
212
209
|
end
|
|
213
210
|
end
|
|
214
|
-
|
|
215
211
|
end
|
|
216
|
-
|
|
217
212
|
end
|
|
@@ -3,27 +3,26 @@
|
|
|
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 Statement
|
|
18
17
|
attr_accessor :resources
|
|
19
18
|
|
|
20
19
|
# Targeted resource will be those resources NOT in this list. The \"resources`\" field must be empty to use this field.
|
|
21
|
-
attr_accessor :
|
|
20
|
+
attr_accessor :not_resources
|
|
22
21
|
|
|
23
22
|
attr_accessor :actions
|
|
24
23
|
|
|
25
24
|
# Targeted actions will be those actions NOT in this list. The \"actions\" field must be empty to use this field.
|
|
26
|
-
attr_accessor :
|
|
25
|
+
attr_accessor :not_actions
|
|
27
26
|
|
|
28
27
|
attr_accessor :effect
|
|
29
28
|
|
|
@@ -53,9 +52,9 @@ module LaunchDarklyApi
|
|
|
53
52
|
def self.attribute_map
|
|
54
53
|
{
|
|
55
54
|
:'resources' => :'resources',
|
|
56
|
-
:'
|
|
55
|
+
:'not_resources' => :'notResources',
|
|
57
56
|
:'actions' => :'actions',
|
|
58
|
-
:'
|
|
57
|
+
:'not_actions' => :'notActions',
|
|
59
58
|
:'effect' => :'effect'
|
|
60
59
|
}
|
|
61
60
|
end
|
|
@@ -63,10 +62,10 @@ module LaunchDarklyApi
|
|
|
63
62
|
# Attribute type mapping.
|
|
64
63
|
def self.swagger_types
|
|
65
64
|
{
|
|
66
|
-
:'resources' => :'
|
|
67
|
-
:'
|
|
68
|
-
:'actions' => :'
|
|
69
|
-
:'
|
|
65
|
+
:'resources' => :'Array<String>',
|
|
66
|
+
:'not_resources' => :'Array<String>',
|
|
67
|
+
:'actions' => :'Array<String>',
|
|
68
|
+
:'not_actions' => :'Array<String>',
|
|
70
69
|
:'effect' => :'String'
|
|
71
70
|
}
|
|
72
71
|
end
|
|
@@ -77,51 +76,58 @@ module LaunchDarklyApi
|
|
|
77
76
|
return unless attributes.is_a?(Hash)
|
|
78
77
|
|
|
79
78
|
# convert string to symbol for hash key
|
|
80
|
-
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 }
|
|
81
80
|
|
|
82
81
|
if attributes.has_key?(:'resources')
|
|
83
|
-
|
|
82
|
+
if (value = attributes[:'resources']).is_a?(Array)
|
|
83
|
+
self.resources = value
|
|
84
|
+
end
|
|
84
85
|
end
|
|
85
86
|
|
|
86
|
-
if attributes.has_key?(:'
|
|
87
|
-
|
|
87
|
+
if attributes.has_key?(:'notResources')
|
|
88
|
+
if (value = attributes[:'notResources']).is_a?(Array)
|
|
89
|
+
self.not_resources = value
|
|
90
|
+
end
|
|
88
91
|
end
|
|
89
92
|
|
|
90
93
|
if attributes.has_key?(:'actions')
|
|
91
|
-
|
|
94
|
+
if (value = attributes[:'actions']).is_a?(Array)
|
|
95
|
+
self.actions = value
|
|
96
|
+
end
|
|
92
97
|
end
|
|
93
98
|
|
|
94
|
-
if attributes.has_key?(:'
|
|
95
|
-
|
|
99
|
+
if attributes.has_key?(:'notActions')
|
|
100
|
+
if (value = attributes[:'notActions']).is_a?(Array)
|
|
101
|
+
self.not_actions = value
|
|
102
|
+
end
|
|
96
103
|
end
|
|
97
104
|
|
|
98
105
|
if attributes.has_key?(:'effect')
|
|
99
106
|
self.effect = attributes[:'effect']
|
|
100
107
|
end
|
|
101
|
-
|
|
102
108
|
end
|
|
103
109
|
|
|
104
110
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
105
111
|
# @return Array for valid properties with the reasons
|
|
106
112
|
def list_invalid_properties
|
|
107
113
|
invalid_properties = Array.new
|
|
108
|
-
|
|
114
|
+
invalid_properties
|
|
109
115
|
end
|
|
110
116
|
|
|
111
117
|
# Check to see if the all the properties in the model are valid
|
|
112
118
|
# @return true if the model is valid
|
|
113
119
|
def valid?
|
|
114
|
-
effect_validator = EnumAttributeValidator.new('String', [
|
|
120
|
+
effect_validator = EnumAttributeValidator.new('String', ['allow', 'deny'])
|
|
115
121
|
return false unless effect_validator.valid?(@effect)
|
|
116
|
-
|
|
122
|
+
true
|
|
117
123
|
end
|
|
118
124
|
|
|
119
125
|
# Custom attribute writer method checking allowed values (enum).
|
|
120
126
|
# @param [Object] effect Object to be assigned
|
|
121
127
|
def effect=(effect)
|
|
122
|
-
validator = EnumAttributeValidator.new('String', [
|
|
128
|
+
validator = EnumAttributeValidator.new('String', ['allow', 'deny'])
|
|
123
129
|
unless validator.valid?(effect)
|
|
124
|
-
fail ArgumentError,
|
|
130
|
+
fail ArgumentError, 'invalid value for "effect", must be one of #{validator.allowable_values}.'
|
|
125
131
|
end
|
|
126
132
|
@effect = effect
|
|
127
133
|
end
|
|
@@ -132,9 +138,9 @@ module LaunchDarklyApi
|
|
|
132
138
|
return true if self.equal?(o)
|
|
133
139
|
self.class == o.class &&
|
|
134
140
|
resources == o.resources &&
|
|
135
|
-
|
|
141
|
+
not_resources == o.not_resources &&
|
|
136
142
|
actions == o.actions &&
|
|
137
|
-
|
|
143
|
+
not_actions == o.not_actions &&
|
|
138
144
|
effect == o.effect
|
|
139
145
|
end
|
|
140
146
|
|
|
@@ -147,7 +153,7 @@ module LaunchDarklyApi
|
|
|
147
153
|
# Calculates hash code according to all attributes.
|
|
148
154
|
# @return [Fixnum] Hash code
|
|
149
155
|
def hash
|
|
150
|
-
[resources,
|
|
156
|
+
[resources, not_resources, actions, not_actions, effect].hash
|
|
151
157
|
end
|
|
152
158
|
|
|
153
159
|
# Builds the object from hash
|
|
@@ -160,7 +166,7 @@ module LaunchDarklyApi
|
|
|
160
166
|
# check to ensure the input is an array given that the the attribute
|
|
161
167
|
# is documented as an array but the input is not
|
|
162
168
|
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
163
|
-
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) })
|
|
164
170
|
end
|
|
165
171
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
166
172
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -242,7 +248,7 @@ module LaunchDarklyApi
|
|
|
242
248
|
# @return [Hash] Returns the value in the form of hash
|
|
243
249
|
def _to_hash(value)
|
|
244
250
|
if value.is_a?(Array)
|
|
245
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
251
|
+
value.compact.map { |v| _to_hash(v) }
|
|
246
252
|
elsif value.is_a?(Hash)
|
|
247
253
|
{}.tap do |hash|
|
|
248
254
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -253,7 +259,5 @@ module LaunchDarklyApi
|
|
|
253
259
|
value
|
|
254
260
|
end
|
|
255
261
|
end
|
|
256
|
-
|
|
257
262
|
end
|
|
258
|
-
|
|
259
263
|
end
|
|
@@ -3,19 +3,17 @@
|
|
|
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 Statements
|
|
18
|
-
|
|
19
17
|
# Attribute mapping from ruby-style variable name to JSON key.
|
|
20
18
|
def self.attribute_map
|
|
21
19
|
{
|
|
@@ -34,21 +32,20 @@ module LaunchDarklyApi
|
|
|
34
32
|
return unless attributes.is_a?(Hash)
|
|
35
33
|
|
|
36
34
|
# convert string to symbol for hash key
|
|
37
|
-
attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}
|
|
38
|
-
|
|
35
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
39
36
|
end
|
|
40
37
|
|
|
41
38
|
# Show invalid properties with the reasons. Usually used together with valid?
|
|
42
39
|
# @return Array for valid properties with the reasons
|
|
43
40
|
def list_invalid_properties
|
|
44
41
|
invalid_properties = Array.new
|
|
45
|
-
|
|
42
|
+
invalid_properties
|
|
46
43
|
end
|
|
47
44
|
|
|
48
45
|
# Check to see if the all the properties in the model are valid
|
|
49
46
|
# @return true if the model is valid
|
|
50
47
|
def valid?
|
|
51
|
-
|
|
48
|
+
true
|
|
52
49
|
end
|
|
53
50
|
|
|
54
51
|
# Checks equality by comparing each attribute.
|
|
@@ -80,7 +77,7 @@ module LaunchDarklyApi
|
|
|
80
77
|
# check to ensure the input is an array given that the the attribute
|
|
81
78
|
# is documented as an array but the input is not
|
|
82
79
|
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) }
|
|
80
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
84
81
|
end
|
|
85
82
|
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
86
83
|
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
@@ -162,7 +159,7 @@ module LaunchDarklyApi
|
|
|
162
159
|
# @return [Hash] Returns the value in the form of hash
|
|
163
160
|
def _to_hash(value)
|
|
164
161
|
if value.is_a?(Array)
|
|
165
|
-
value.compact.map{ |v| _to_hash(v) }
|
|
162
|
+
value.compact.map { |v| _to_hash(v) }
|
|
166
163
|
elsif value.is_a?(Hash)
|
|
167
164
|
{}.tap do |hash|
|
|
168
165
|
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
@@ -173,7 +170,5 @@ module LaunchDarklyApi
|
|
|
173
170
|
value
|
|
174
171
|
end
|
|
175
172
|
end
|
|
176
|
-
|
|
177
173
|
end
|
|
178
|
-
|
|
179
174
|
end
|
|
@@ -0,0 +1,205 @@
|
|
|
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 Stream
|
|
17
|
+
attr_accessor :_links
|
|
18
|
+
|
|
19
|
+
attr_accessor :metadata
|
|
20
|
+
|
|
21
|
+
attr_accessor :series
|
|
22
|
+
|
|
23
|
+
# Attribute mapping from ruby-style variable name to JSON key.
|
|
24
|
+
def self.attribute_map
|
|
25
|
+
{
|
|
26
|
+
:'_links' => :'_links',
|
|
27
|
+
:'metadata' => :'metadata',
|
|
28
|
+
:'series' => :'series'
|
|
29
|
+
}
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
# Attribute type mapping.
|
|
33
|
+
def self.swagger_types
|
|
34
|
+
{
|
|
35
|
+
:'_links' => :'StreamUsageLinks',
|
|
36
|
+
:'metadata' => :'Array<StreamUsageMetadata>',
|
|
37
|
+
:'series' => :'Array<StreamUsageSeries>'
|
|
38
|
+
}
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
# Initializes the object
|
|
42
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
43
|
+
def initialize(attributes = {})
|
|
44
|
+
return unless attributes.is_a?(Hash)
|
|
45
|
+
|
|
46
|
+
# convert string to symbol for hash key
|
|
47
|
+
attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }
|
|
48
|
+
|
|
49
|
+
if attributes.has_key?(:'_links')
|
|
50
|
+
self._links = attributes[:'_links']
|
|
51
|
+
end
|
|
52
|
+
|
|
53
|
+
if attributes.has_key?(:'metadata')
|
|
54
|
+
if (value = attributes[:'metadata']).is_a?(Array)
|
|
55
|
+
self.metadata = value
|
|
56
|
+
end
|
|
57
|
+
end
|
|
58
|
+
|
|
59
|
+
if attributes.has_key?(:'series')
|
|
60
|
+
if (value = attributes[:'series']).is_a?(Array)
|
|
61
|
+
self.series = value
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
end
|
|
65
|
+
|
|
66
|
+
# Show invalid properties with the reasons. Usually used together with valid?
|
|
67
|
+
# @return Array for valid properties with the reasons
|
|
68
|
+
def list_invalid_properties
|
|
69
|
+
invalid_properties = Array.new
|
|
70
|
+
invalid_properties
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
# Check to see if the all the properties in the model are valid
|
|
74
|
+
# @return true if the model is valid
|
|
75
|
+
def valid?
|
|
76
|
+
true
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
# Checks equality by comparing each attribute.
|
|
80
|
+
# @param [Object] Object to be compared
|
|
81
|
+
def ==(o)
|
|
82
|
+
return true if self.equal?(o)
|
|
83
|
+
self.class == o.class &&
|
|
84
|
+
_links == o._links &&
|
|
85
|
+
metadata == o.metadata &&
|
|
86
|
+
series == o.series
|
|
87
|
+
end
|
|
88
|
+
|
|
89
|
+
# @see the `==` method
|
|
90
|
+
# @param [Object] Object to be compared
|
|
91
|
+
def eql?(o)
|
|
92
|
+
self == o
|
|
93
|
+
end
|
|
94
|
+
|
|
95
|
+
# Calculates hash code according to all attributes.
|
|
96
|
+
# @return [Fixnum] Hash code
|
|
97
|
+
def hash
|
|
98
|
+
[_links, metadata, series].hash
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
# Builds the object from hash
|
|
102
|
+
# @param [Hash] attributes Model attributes in the form of hash
|
|
103
|
+
# @return [Object] Returns the model itself
|
|
104
|
+
def build_from_hash(attributes)
|
|
105
|
+
return nil unless attributes.is_a?(Hash)
|
|
106
|
+
self.class.swagger_types.each_pair do |key, type|
|
|
107
|
+
if type =~ /\AArray<(.*)>/i
|
|
108
|
+
# check to ensure the input is an array given that the the attribute
|
|
109
|
+
# is documented as an array but the input is not
|
|
110
|
+
if attributes[self.class.attribute_map[key]].is_a?(Array)
|
|
111
|
+
self.send("#{key}=", attributes[self.class.attribute_map[key]].map { |v| _deserialize($1, v) })
|
|
112
|
+
end
|
|
113
|
+
elsif !attributes[self.class.attribute_map[key]].nil?
|
|
114
|
+
self.send("#{key}=", _deserialize(type, attributes[self.class.attribute_map[key]]))
|
|
115
|
+
end # or else data not found in attributes(hash), not an issue as the data can be optional
|
|
116
|
+
end
|
|
117
|
+
|
|
118
|
+
self
|
|
119
|
+
end
|
|
120
|
+
|
|
121
|
+
# Deserializes the data based on type
|
|
122
|
+
# @param string type Data type
|
|
123
|
+
# @param string value Value to be deserialized
|
|
124
|
+
# @return [Object] Deserialized data
|
|
125
|
+
def _deserialize(type, value)
|
|
126
|
+
case type.to_sym
|
|
127
|
+
when :DateTime
|
|
128
|
+
DateTime.parse(value)
|
|
129
|
+
when :Date
|
|
130
|
+
Date.parse(value)
|
|
131
|
+
when :String
|
|
132
|
+
value.to_s
|
|
133
|
+
when :Integer
|
|
134
|
+
value.to_i
|
|
135
|
+
when :Float
|
|
136
|
+
value.to_f
|
|
137
|
+
when :BOOLEAN
|
|
138
|
+
if value.to_s =~ /\A(true|t|yes|y|1)\z/i
|
|
139
|
+
true
|
|
140
|
+
else
|
|
141
|
+
false
|
|
142
|
+
end
|
|
143
|
+
when :Object
|
|
144
|
+
# generic object (usually a Hash), return directly
|
|
145
|
+
value
|
|
146
|
+
when /\AArray<(?<inner_type>.+)>\z/
|
|
147
|
+
inner_type = Regexp.last_match[:inner_type]
|
|
148
|
+
value.map { |v| _deserialize(inner_type, v) }
|
|
149
|
+
when /\AHash<(?<k_type>.+?), (?<v_type>.+)>\z/
|
|
150
|
+
k_type = Regexp.last_match[:k_type]
|
|
151
|
+
v_type = Regexp.last_match[:v_type]
|
|
152
|
+
{}.tap do |hash|
|
|
153
|
+
value.each do |k, v|
|
|
154
|
+
hash[_deserialize(k_type, k)] = _deserialize(v_type, v)
|
|
155
|
+
end
|
|
156
|
+
end
|
|
157
|
+
else # model
|
|
158
|
+
temp_model = LaunchDarklyApi.const_get(type).new
|
|
159
|
+
temp_model.build_from_hash(value)
|
|
160
|
+
end
|
|
161
|
+
end
|
|
162
|
+
|
|
163
|
+
# Returns the string representation of the object
|
|
164
|
+
# @return [String] String presentation of the object
|
|
165
|
+
def to_s
|
|
166
|
+
to_hash.to_s
|
|
167
|
+
end
|
|
168
|
+
|
|
169
|
+
# to_body is an alias to to_hash (backward compatibility)
|
|
170
|
+
# @return [Hash] Returns the object in the form of hash
|
|
171
|
+
def to_body
|
|
172
|
+
to_hash
|
|
173
|
+
end
|
|
174
|
+
|
|
175
|
+
# Returns the object in the form of hash
|
|
176
|
+
# @return [Hash] Returns the object in the form of hash
|
|
177
|
+
def to_hash
|
|
178
|
+
hash = {}
|
|
179
|
+
self.class.attribute_map.each_pair do |attr, param|
|
|
180
|
+
value = self.send(attr)
|
|
181
|
+
next if value.nil?
|
|
182
|
+
hash[param] = _to_hash(value)
|
|
183
|
+
end
|
|
184
|
+
hash
|
|
185
|
+
end
|
|
186
|
+
|
|
187
|
+
# Outputs non-array value in the form of hash
|
|
188
|
+
# For object, use to_hash. Otherwise, just return the value
|
|
189
|
+
# @param [Object] value Any valid value
|
|
190
|
+
# @return [Hash] Returns the value in the form of hash
|
|
191
|
+
def _to_hash(value)
|
|
192
|
+
if value.is_a?(Array)
|
|
193
|
+
value.compact.map { |v| _to_hash(v) }
|
|
194
|
+
elsif value.is_a?(Hash)
|
|
195
|
+
{}.tap do |hash|
|
|
196
|
+
value.each { |k, v| hash[k] = _to_hash(v) }
|
|
197
|
+
end
|
|
198
|
+
elsif value.respond_to? :to_hash
|
|
199
|
+
value.to_hash
|
|
200
|
+
else
|
|
201
|
+
value
|
|
202
|
+
end
|
|
203
|
+
end
|
|
204
|
+
end
|
|
205
|
+
end
|