svix 1.44.0 → 1.45.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/Gemfile.lock +1 -1
- data/lib/svix/api/application_api.rb +14 -14
- data/lib/svix/api/authentication_api.rb +208 -4
- data/lib/svix/api/background_tasks_api.rb +4 -4
- data/lib/svix/api/broadcast_api.rb +2 -2
- data/lib/svix/api/endpoint_api.rb +43 -43
- data/lib/svix/api/environment_api.rb +2 -2
- data/lib/svix/api/environment_settings_api.rb +2 -2
- data/lib/svix/api/event_type_api.rb +12 -12
- data/lib/svix/api/events_api.rb +4 -4
- data/lib/svix/api/inbound_api.rb +2 -2
- data/lib/svix/api/message_api.rb +57 -31
- data/lib/svix/api/message_attempt_api.rb +6 -6
- data/lib/svix/api/statistics_api.rb +10 -10
- data/lib/svix/api/transformation_template_api.rb +22 -22
- data/lib/svix/endpoint_api.rb +1 -1
- data/lib/svix/message_api.rb +1 -1
- data/lib/svix/models/application_in.rb +1 -1
- data/lib/svix/models/endpoint_in.rb +2 -2
- data/lib/svix/models/endpoint_oauth_config_in.rb +1 -1
- data/lib/svix/models/endpoint_out.rb +3 -3
- data/lib/svix/models/endpoint_update.rb +2 -2
- data/lib/svix/models/environment_settings_out.rb +12 -1
- data/lib/svix/models/message_broadcast_in.rb +2 -2
- data/lib/svix/models/message_endpoint_out.rb +3 -3
- data/lib/svix/models/message_in.rb +0 -9
- data/lib/svix/models/operational_webhook_endpoint_in.rb +1 -1
- data/lib/svix/models/operational_webhook_endpoint_out.rb +2 -2
- data/lib/svix/models/operational_webhook_endpoint_update.rb +1 -1
- data/lib/svix/models/rotate_poller_token_in.rb +280 -0
- data/lib/svix/models/transformation_http_method.rb +2 -1
- data/lib/svix/version.rb +1 -1
- metadata +3 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 17206cce33b892853adf1582a2e1624a178fc4335f397536ba882fd11a9198d0
|
4
|
+
data.tar.gz: f9acdbb48185b15902fdf7a4a3899aabee42fa02d3102e0c0b2bbf107e7cea94
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e766217ee4ee4c0c2bedd5d7a8333d60d727d601ed1f9e4a12af9e61f8937fc12d71802ee051841ebc8ba07444c36fdc32b217b5a01aec15d485fef7da07a9bd
|
7
|
+
data.tar.gz: a814d686a10ed0de22f6f84e9c88a6209f293216edb8a9c5430a937479315016e917ed78c6311877c1e0760f2d6c595e0c8acdf4b2ad3a045e5dafdf09d8b7cd
|
data/Gemfile.lock
CHANGED
@@ -21,11 +21,11 @@ module Svix
|
|
21
21
|
end
|
22
22
|
# Get App Usage Stats
|
23
23
|
# Get basic statistics for all applications.
|
24
|
-
# @param since [Time] Filter the range to data after this date
|
25
|
-
# @param _until [Time] Filter the range to data before this date
|
24
|
+
# @param since [Time] Filter the range to data after this date.
|
25
|
+
# @param _until [Time] Filter the range to data before this date.
|
26
26
|
# @param [Hash] opts the optional parameters
|
27
|
-
# @option opts [Integer] :limit Limit the number of returned items (default to 50)
|
28
|
-
# @option opts [String] :iterator The iterator to use (depends on the chosen ordering)
|
27
|
+
# @option opts [Integer] :limit Limit the number of returned items. (default to 50)
|
28
|
+
# @option opts [String] :iterator The iterator to use (depends on the chosen ordering).
|
29
29
|
# @return [ListResponseApplicationStats]
|
30
30
|
def get_app_usage_stats_api_v1_app_stats_usage_get(since, _until, opts = {})
|
31
31
|
data, _status_code, _headers = get_app_usage_stats_api_v1_app_stats_usage_get_with_http_info(since, _until, opts)
|
@@ -34,11 +34,11 @@ module Svix
|
|
34
34
|
|
35
35
|
# Get App Usage Stats
|
36
36
|
# Get basic statistics for all applications.
|
37
|
-
# @param since [Time] Filter the range to data after this date
|
38
|
-
# @param _until [Time] Filter the range to data before this date
|
37
|
+
# @param since [Time] Filter the range to data after this date.
|
38
|
+
# @param _until [Time] Filter the range to data before this date.
|
39
39
|
# @param [Hash] opts the optional parameters
|
40
|
-
# @option opts [Integer] :limit Limit the number of returned items (default to 50)
|
41
|
-
# @option opts [String] :iterator The iterator to use (depends on the chosen ordering)
|
40
|
+
# @option opts [Integer] :limit Limit the number of returned items. (default to 50)
|
41
|
+
# @option opts [String] :iterator The iterator to use (depends on the chosen ordering).
|
42
42
|
# @return [Array<(ListResponseApplicationStats, Integer, Hash)>] ListResponseApplicationStats data, response status code and response headers
|
43
43
|
def get_app_usage_stats_api_v1_app_stats_usage_get_with_http_info(since, _until, opts = {})
|
44
44
|
if @api_client.config.debugging
|
@@ -327,9 +327,9 @@ module Svix
|
|
327
327
|
end
|
328
328
|
|
329
329
|
# Get App Stats
|
330
|
-
# Get basic statistics for the application
|
331
|
-
# @param since [Time] Filter the range to data starting from this date
|
332
|
-
# @param _until [Time] Filter the range to data ending by this date
|
330
|
+
# Get basic statistics for the application.
|
331
|
+
# @param since [Time] Filter the range to data starting from this date.
|
332
|
+
# @param _until [Time] Filter the range to data ending by this date.
|
333
333
|
# @param app_id [String] The app's ID or UID
|
334
334
|
# @param [Hash] opts the optional parameters
|
335
335
|
# @return [ApplicationStats]
|
@@ -339,9 +339,9 @@ module Svix
|
|
339
339
|
end
|
340
340
|
|
341
341
|
# Get App Stats
|
342
|
-
# Get basic statistics for the application
|
343
|
-
# @param since [Time] Filter the range to data starting from this date
|
344
|
-
# @param _until [Time] Filter the range to data ending by this date
|
342
|
+
# Get basic statistics for the application.
|
343
|
+
# @param since [Time] Filter the range to data starting from this date.
|
344
|
+
# @param _until [Time] Filter the range to data ending by this date.
|
345
345
|
# @param app_id [String] The app's ID or UID
|
346
346
|
# @param [Hash] opts the optional parameters
|
347
347
|
# @return [Array<(ApplicationStats, Integer, Hash)>] ApplicationStats data, response status code and response headers
|
@@ -279,7 +279,7 @@ module Svix
|
|
279
279
|
end
|
280
280
|
|
281
281
|
# Exchange One Time Token
|
282
|
-
# This is a one time token
|
282
|
+
# This is a one time token.
|
283
283
|
# @param one_time_token_in [OneTimeTokenIn]
|
284
284
|
# @param [Hash] opts the optional parameters
|
285
285
|
# @option opts [String] :idempotency_key The request's idempotency key
|
@@ -290,7 +290,7 @@ module Svix
|
|
290
290
|
end
|
291
291
|
|
292
292
|
# Exchange One Time Token
|
293
|
-
# This is a one time token
|
293
|
+
# This is a one time token.
|
294
294
|
# @param one_time_token_in [OneTimeTokenIn]
|
295
295
|
# @param [Hash] opts the optional parameters
|
296
296
|
# @option opts [String] :idempotency_key The request's idempotency key
|
@@ -350,7 +350,7 @@ module Svix
|
|
350
350
|
end
|
351
351
|
|
352
352
|
# Expire All
|
353
|
-
# Expire all of the tokens associated with a specific
|
353
|
+
# Expire all of the tokens associated with a specific application.
|
354
354
|
# @param app_id [String] The app's ID or UID
|
355
355
|
# @param application_token_expire_in [ApplicationTokenExpireIn]
|
356
356
|
# @param [Hash] opts the optional parameters
|
@@ -362,7 +362,7 @@ module Svix
|
|
362
362
|
end
|
363
363
|
|
364
364
|
# Expire All
|
365
|
-
# Expire all of the tokens associated with a specific
|
365
|
+
# Expire all of the tokens associated with a specific application.
|
366
366
|
# @param app_id [String] The app's ID or UID
|
367
367
|
# @param application_token_expire_in [ApplicationTokenExpireIn]
|
368
368
|
# @param [Hash] opts the optional parameters
|
@@ -439,6 +439,101 @@ module Svix
|
|
439
439
|
return data, status_code, headers
|
440
440
|
end
|
441
441
|
|
442
|
+
# Get Poller Token
|
443
|
+
# Get the current auth token for the poller.
|
444
|
+
# @param app_id [String] The app's ID or UID
|
445
|
+
# @param endpoint_id [String] The ep's ID or UID
|
446
|
+
# @param [Hash] opts the optional parameters
|
447
|
+
# @return [AuthTokenOut]
|
448
|
+
def v1_authentication_get_poller_token(app_id, endpoint_id, opts = {})
|
449
|
+
data, _status_code, _headers = v1_authentication_get_poller_token_with_http_info(app_id, endpoint_id, opts)
|
450
|
+
data
|
451
|
+
end
|
452
|
+
|
453
|
+
# Get Poller Token
|
454
|
+
# Get the current auth token for the poller.
|
455
|
+
# @param app_id [String] The app's ID or UID
|
456
|
+
# @param endpoint_id [String] The ep's ID or UID
|
457
|
+
# @param [Hash] opts the optional parameters
|
458
|
+
# @return [Array<(AuthTokenOut, Integer, Hash)>] AuthTokenOut data, response status code and response headers
|
459
|
+
def v1_authentication_get_poller_token_with_http_info(app_id, endpoint_id, opts = {})
|
460
|
+
if @api_client.config.debugging
|
461
|
+
@api_client.config.logger.debug 'Calling API: AuthenticationApi.v1_authentication_get_poller_token ...'
|
462
|
+
end
|
463
|
+
# verify the required parameter 'app_id' is set
|
464
|
+
if @api_client.config.client_side_validation && app_id.nil?
|
465
|
+
fail ArgumentError, "Missing the required parameter 'app_id' when calling AuthenticationApi.v1_authentication_get_poller_token"
|
466
|
+
end
|
467
|
+
if @api_client.config.client_side_validation && app_id.to_s.length > 256
|
468
|
+
fail ArgumentError, 'invalid value for "app_id" when calling AuthenticationApi.v1_authentication_get_poller_token, the character length must be smaller than or equal to 256.'
|
469
|
+
end
|
470
|
+
|
471
|
+
if @api_client.config.client_side_validation && app_id.to_s.length < 1
|
472
|
+
fail ArgumentError, 'invalid value for "app_id" when calling AuthenticationApi.v1_authentication_get_poller_token, the character length must be great than or equal to 1.'
|
473
|
+
end
|
474
|
+
|
475
|
+
pattern = Regexp.new(/^[a-zA-Z0-9\-_.]+$/)
|
476
|
+
if @api_client.config.client_side_validation && app_id !~ pattern
|
477
|
+
fail ArgumentError, "invalid value for 'app_id' when calling AuthenticationApi.v1_authentication_get_poller_token, must conform to the pattern #{pattern}."
|
478
|
+
end
|
479
|
+
|
480
|
+
# verify the required parameter 'endpoint_id' is set
|
481
|
+
if @api_client.config.client_side_validation && endpoint_id.nil?
|
482
|
+
fail ArgumentError, "Missing the required parameter 'endpoint_id' when calling AuthenticationApi.v1_authentication_get_poller_token"
|
483
|
+
end
|
484
|
+
if @api_client.config.client_side_validation && endpoint_id.to_s.length > 256
|
485
|
+
fail ArgumentError, 'invalid value for "endpoint_id" when calling AuthenticationApi.v1_authentication_get_poller_token, the character length must be smaller than or equal to 256.'
|
486
|
+
end
|
487
|
+
|
488
|
+
if @api_client.config.client_side_validation && endpoint_id.to_s.length < 1
|
489
|
+
fail ArgumentError, 'invalid value for "endpoint_id" when calling AuthenticationApi.v1_authentication_get_poller_token, the character length must be great than or equal to 1.'
|
490
|
+
end
|
491
|
+
|
492
|
+
pattern = Regexp.new(/^[a-zA-Z0-9\-_.]+$/)
|
493
|
+
if @api_client.config.client_side_validation && endpoint_id !~ pattern
|
494
|
+
fail ArgumentError, "invalid value for 'endpoint_id' when calling AuthenticationApi.v1_authentication_get_poller_token, must conform to the pattern #{pattern}."
|
495
|
+
end
|
496
|
+
|
497
|
+
# resource path
|
498
|
+
local_var_path = '/api/v1/auth/app/{app_id}/poller/{endpoint_id}/token'.sub('{' + 'app_id' + '}', CGI.escape(app_id.to_s)).sub('{' + 'endpoint_id' + '}', CGI.escape(endpoint_id.to_s))
|
499
|
+
|
500
|
+
# query parameters
|
501
|
+
query_params = opts[:query_params] || {}
|
502
|
+
|
503
|
+
# header parameters
|
504
|
+
header_params = opts[:header_params] || {}
|
505
|
+
# HTTP header 'Accept' (if needed)
|
506
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
|
507
|
+
|
508
|
+
# form parameters
|
509
|
+
form_params = opts[:form_params] || {}
|
510
|
+
|
511
|
+
# http body (model)
|
512
|
+
post_body = opts[:debug_body]
|
513
|
+
|
514
|
+
# return_type
|
515
|
+
return_type = opts[:debug_return_type] || 'AuthTokenOut'
|
516
|
+
|
517
|
+
# auth_names
|
518
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
519
|
+
|
520
|
+
new_options = opts.merge(
|
521
|
+
:operation => :"AuthenticationApi.v1_authentication_get_poller_token",
|
522
|
+
:header_params => header_params,
|
523
|
+
:query_params => query_params,
|
524
|
+
:form_params => form_params,
|
525
|
+
:body => post_body,
|
526
|
+
:auth_names => auth_names,
|
527
|
+
:return_type => return_type
|
528
|
+
)
|
529
|
+
|
530
|
+
data, status_code, headers = @api_client.call_api(:GET, local_var_path, new_options)
|
531
|
+
if @api_client.config.debugging
|
532
|
+
@api_client.config.logger.debug "API called: AuthenticationApi#v1_authentication_get_poller_token\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
533
|
+
end
|
534
|
+
return data, status_code, headers
|
535
|
+
end
|
536
|
+
|
442
537
|
# Logout
|
443
538
|
# Logout an app token. Trying to log out other tokens will fail.
|
444
539
|
# @param [Hash] opts the optional parameters
|
@@ -498,5 +593,114 @@ module Svix
|
|
498
593
|
end
|
499
594
|
return data, status_code, headers
|
500
595
|
end
|
596
|
+
|
597
|
+
# Rotate Poller Token
|
598
|
+
# Create a new auth token that can for the poller API.
|
599
|
+
# @param app_id [String] The app's ID or UID
|
600
|
+
# @param endpoint_id [String] The ep's ID or UID
|
601
|
+
# @param rotate_poller_token_in [RotatePollerTokenIn]
|
602
|
+
# @param [Hash] opts the optional parameters
|
603
|
+
# @option opts [String] :idempotency_key The request's idempotency key
|
604
|
+
# @return [AuthTokenOut]
|
605
|
+
def v1_authentication_rotate_poller_token(app_id, endpoint_id, rotate_poller_token_in, opts = {})
|
606
|
+
data, _status_code, _headers = v1_authentication_rotate_poller_token_with_http_info(app_id, endpoint_id, rotate_poller_token_in, opts)
|
607
|
+
data
|
608
|
+
end
|
609
|
+
|
610
|
+
# Rotate Poller Token
|
611
|
+
# Create a new auth token that can for the poller API.
|
612
|
+
# @param app_id [String] The app's ID or UID
|
613
|
+
# @param endpoint_id [String] The ep's ID or UID
|
614
|
+
# @param rotate_poller_token_in [RotatePollerTokenIn]
|
615
|
+
# @param [Hash] opts the optional parameters
|
616
|
+
# @option opts [String] :idempotency_key The request's idempotency key
|
617
|
+
# @return [Array<(AuthTokenOut, Integer, Hash)>] AuthTokenOut data, response status code and response headers
|
618
|
+
def v1_authentication_rotate_poller_token_with_http_info(app_id, endpoint_id, rotate_poller_token_in, opts = {})
|
619
|
+
if @api_client.config.debugging
|
620
|
+
@api_client.config.logger.debug 'Calling API: AuthenticationApi.v1_authentication_rotate_poller_token ...'
|
621
|
+
end
|
622
|
+
# verify the required parameter 'app_id' is set
|
623
|
+
if @api_client.config.client_side_validation && app_id.nil?
|
624
|
+
fail ArgumentError, "Missing the required parameter 'app_id' when calling AuthenticationApi.v1_authentication_rotate_poller_token"
|
625
|
+
end
|
626
|
+
if @api_client.config.client_side_validation && app_id.to_s.length > 256
|
627
|
+
fail ArgumentError, 'invalid value for "app_id" when calling AuthenticationApi.v1_authentication_rotate_poller_token, the character length must be smaller than or equal to 256.'
|
628
|
+
end
|
629
|
+
|
630
|
+
if @api_client.config.client_side_validation && app_id.to_s.length < 1
|
631
|
+
fail ArgumentError, 'invalid value for "app_id" when calling AuthenticationApi.v1_authentication_rotate_poller_token, the character length must be great than or equal to 1.'
|
632
|
+
end
|
633
|
+
|
634
|
+
pattern = Regexp.new(/^[a-zA-Z0-9\-_.]+$/)
|
635
|
+
if @api_client.config.client_side_validation && app_id !~ pattern
|
636
|
+
fail ArgumentError, "invalid value for 'app_id' when calling AuthenticationApi.v1_authentication_rotate_poller_token, must conform to the pattern #{pattern}."
|
637
|
+
end
|
638
|
+
|
639
|
+
# verify the required parameter 'endpoint_id' is set
|
640
|
+
if @api_client.config.client_side_validation && endpoint_id.nil?
|
641
|
+
fail ArgumentError, "Missing the required parameter 'endpoint_id' when calling AuthenticationApi.v1_authentication_rotate_poller_token"
|
642
|
+
end
|
643
|
+
if @api_client.config.client_side_validation && endpoint_id.to_s.length > 256
|
644
|
+
fail ArgumentError, 'invalid value for "endpoint_id" when calling AuthenticationApi.v1_authentication_rotate_poller_token, the character length must be smaller than or equal to 256.'
|
645
|
+
end
|
646
|
+
|
647
|
+
if @api_client.config.client_side_validation && endpoint_id.to_s.length < 1
|
648
|
+
fail ArgumentError, 'invalid value for "endpoint_id" when calling AuthenticationApi.v1_authentication_rotate_poller_token, the character length must be great than or equal to 1.'
|
649
|
+
end
|
650
|
+
|
651
|
+
pattern = Regexp.new(/^[a-zA-Z0-9\-_.]+$/)
|
652
|
+
if @api_client.config.client_side_validation && endpoint_id !~ pattern
|
653
|
+
fail ArgumentError, "invalid value for 'endpoint_id' when calling AuthenticationApi.v1_authentication_rotate_poller_token, must conform to the pattern #{pattern}."
|
654
|
+
end
|
655
|
+
|
656
|
+
# verify the required parameter 'rotate_poller_token_in' is set
|
657
|
+
if @api_client.config.client_side_validation && rotate_poller_token_in.nil?
|
658
|
+
fail ArgumentError, "Missing the required parameter 'rotate_poller_token_in' when calling AuthenticationApi.v1_authentication_rotate_poller_token"
|
659
|
+
end
|
660
|
+
# resource path
|
661
|
+
local_var_path = '/api/v1/auth/app/{app_id}/poller/{endpoint_id}/token/rotate'.sub('{' + 'app_id' + '}', CGI.escape(app_id.to_s)).sub('{' + 'endpoint_id' + '}', CGI.escape(endpoint_id.to_s))
|
662
|
+
|
663
|
+
# query parameters
|
664
|
+
query_params = opts[:query_params] || {}
|
665
|
+
|
666
|
+
# header parameters
|
667
|
+
header_params = opts[:header_params] || {}
|
668
|
+
# HTTP header 'Accept' (if needed)
|
669
|
+
header_params['Accept'] = @api_client.select_header_accept(['application/json']) unless header_params['Accept']
|
670
|
+
# HTTP header 'Content-Type'
|
671
|
+
content_type = @api_client.select_header_content_type(['application/json'])
|
672
|
+
if !content_type.nil?
|
673
|
+
header_params['Content-Type'] = content_type
|
674
|
+
end
|
675
|
+
header_params[:'idempotency-key'] = opts[:'idempotency_key'] if !opts[:'idempotency_key'].nil?
|
676
|
+
|
677
|
+
# form parameters
|
678
|
+
form_params = opts[:form_params] || {}
|
679
|
+
|
680
|
+
# http body (model)
|
681
|
+
post_body = opts[:debug_body] || @api_client.object_to_http_body(rotate_poller_token_in)
|
682
|
+
|
683
|
+
# return_type
|
684
|
+
return_type = opts[:debug_return_type] || 'AuthTokenOut'
|
685
|
+
|
686
|
+
# auth_names
|
687
|
+
auth_names = opts[:debug_auth_names] || ['HTTPBearer']
|
688
|
+
|
689
|
+
new_options = opts.merge(
|
690
|
+
:operation => :"AuthenticationApi.v1_authentication_rotate_poller_token",
|
691
|
+
:header_params => header_params,
|
692
|
+
:query_params => query_params,
|
693
|
+
:form_params => form_params,
|
694
|
+
:body => post_body,
|
695
|
+
:auth_names => auth_names,
|
696
|
+
:return_type => return_type
|
697
|
+
)
|
698
|
+
|
699
|
+
data, status_code, headers = @api_client.call_api(:POST, local_var_path, new_options)
|
700
|
+
if @api_client.config.debugging
|
701
|
+
@api_client.config.logger.debug "API called: AuthenticationApi#v1_authentication_rotate_poller_token\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
|
702
|
+
end
|
703
|
+
return data, status_code, headers
|
704
|
+
end
|
501
705
|
end
|
502
706
|
end
|
@@ -85,8 +85,8 @@ module Svix
|
|
85
85
|
# List Background Tasks
|
86
86
|
# List background tasks executed in the past 90 days.
|
87
87
|
# @param [Hash] opts the optional parameters
|
88
|
-
# @option opts [BackgroundTaskStatus] :status Filter the response based on the status
|
89
|
-
# @option opts [BackgroundTaskType] :task Filter the response based on the type
|
88
|
+
# @option opts [BackgroundTaskStatus] :status Filter the response based on the status.
|
89
|
+
# @option opts [BackgroundTaskType] :task Filter the response based on the type.
|
90
90
|
# @option opts [Integer] :limit Limit the number of returned items
|
91
91
|
# @option opts [String] :iterator The iterator returned from a prior invocation
|
92
92
|
# @option opts [Ordering] :order The sorting order of the returned items
|
@@ -99,8 +99,8 @@ module Svix
|
|
99
99
|
# List Background Tasks
|
100
100
|
# List background tasks executed in the past 90 days.
|
101
101
|
# @param [Hash] opts the optional parameters
|
102
|
-
# @option opts [BackgroundTaskStatus] :status Filter the response based on the status
|
103
|
-
# @option opts [BackgroundTaskType] :task Filter the response based on the type
|
102
|
+
# @option opts [BackgroundTaskStatus] :status Filter the response based on the status.
|
103
|
+
# @option opts [BackgroundTaskType] :task Filter the response based on the type.
|
104
104
|
# @option opts [Integer] :limit Limit the number of returned items
|
105
105
|
# @option opts [String] :iterator The iterator returned from a prior invocation
|
106
106
|
# @option opts [Ordering] :order The sorting order of the returned items
|
@@ -20,7 +20,7 @@ module Svix
|
|
20
20
|
@api_client = api_client
|
21
21
|
end
|
22
22
|
# Create Broadcast Message
|
23
|
-
# Creates a background task to send the same message to each application in your organization
|
23
|
+
# Creates a background task to send the same message to each application in your organization.
|
24
24
|
# @param message_broadcast_in [MessageBroadcastIn]
|
25
25
|
# @param [Hash] opts the optional parameters
|
26
26
|
# @option opts [String] :idempotency_key The request's idempotency key
|
@@ -31,7 +31,7 @@ module Svix
|
|
31
31
|
end
|
32
32
|
|
33
33
|
# Create Broadcast Message
|
34
|
-
# Creates a background task to send the same message to each application in your organization
|
34
|
+
# Creates a background task to send the same message to each application in your organization.
|
35
35
|
# @param message_broadcast_in [MessageBroadcastIn]
|
36
36
|
# @param [Hash] opts the optional parameters
|
37
37
|
# @option opts [String] :idempotency_key The request's idempotency key
|