agilicus 1.304.0__py3-none-any.whl → 1.304.1__py3-none-any.whl

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.
Files changed (30) hide show
  1. agilicus/agilicus_api/api/application_services_api.py +165 -0
  2. agilicus/agilicus_api/api/launchers_api.py +33 -0
  3. agilicus/agilicus_api/api_client.py +1 -1
  4. agilicus/agilicus_api/configuration.py +1 -1
  5. agilicus/agilicus_api/docs/ApplicationServicesApi.md +45 -5
  6. agilicus/agilicus_api/docs/LaunchersApi.md +9 -1
  7. agilicus/agilicus_api/docs/ListDatabaseResourcesResponse.md +1 -0
  8. agilicus/agilicus_api/docs/ListDesktopResourcesResponse.md +1 -0
  9. agilicus/agilicus_api/docs/ListFileShareServicesResponse.md +1 -0
  10. agilicus/agilicus_api/docs/ListLaunchersResponse.md +1 -0
  11. agilicus/agilicus_api/docs/ListSSHResourcesResponse.md +1 -0
  12. agilicus/agilicus_api/docs/ListServiceForwardersResponse.md +1 -0
  13. agilicus/agilicus_api/model/list_database_resources_response.py +14 -0
  14. agilicus/agilicus_api/model/list_desktop_resources_response.py +14 -0
  15. agilicus/agilicus_api/model/list_file_share_services_response.py +14 -0
  16. agilicus/agilicus_api/model/list_launchers_response.py +14 -0
  17. agilicus/agilicus_api/model/list_service_forwarders_response.py +14 -0
  18. agilicus/agilicus_api/model/list_ssh_resources_response.py +14 -0
  19. agilicus/agilicus_api/test/test_list_database_resources_response.py +2 -0
  20. agilicus/agilicus_api/test/test_list_desktop_resources_response.py +2 -0
  21. agilicus/agilicus_api/test/test_list_file_share_services_response.py +2 -0
  22. agilicus/agilicus_api/test/test_list_launchers_response.py +2 -0
  23. agilicus/agilicus_api/test/test_list_service_forwarders_response.py +2 -0
  24. agilicus/agilicus_api/test/test_list_ssh_resources_response.py +2 -0
  25. agilicus/agilicus_api_README.md +1 -1
  26. {agilicus-1.304.0.dist-info → agilicus-1.304.1.dist-info}/METADATA +1 -1
  27. {agilicus-1.304.0.dist-info → agilicus-1.304.1.dist-info}/RECORD +30 -30
  28. {agilicus-1.304.0.dist-info → agilicus-1.304.1.dist-info}/LICENSE.txt +0 -0
  29. {agilicus-1.304.0.dist-info → agilicus-1.304.1.dist-info}/WHEEL +0 -0
  30. {agilicus-1.304.0.dist-info → agilicus-1.304.1.dist-info}/entry_points.txt +0 -0
@@ -3394,6 +3394,10 @@ class ApplicationServicesApi(object):
3394
3394
  resource_id (str): The id of the resource to query for. [optional]
3395
3395
  page_at_id (str): Pagination based query with the id as the key. To get the initial entries supply an empty string. On subsequent requests, supply the `page_at_id` field from the list response. . [optional]
3396
3396
  name_slug (str): The slug of the resource to query for. [optional]
3397
+ page_on ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
3398
+ page_at_key ([str, none_type]): The values defining the item in a collection immediately preceeding the page to fetch. The meaning of the entries is defined in page_on. For example, if page_on is `[\"name\", \"created\"]`, and page_at_key is `[\"hello\", \"2025-05-01T10:20:30\"]` then the page to fetch will return all items whose name is greater than \"hello\", or whose name is \"hello\", but whose date is greater than \"2025-05-01T10:20:30\", up to a limit of `limit`. A value of `null` represents the first page. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
3399
+ page_sort ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
3400
+ search_direction (str): Direction which the search should go starting from the email_nullable_query parameter. . [optional] if omitted the server will use the default value of "forwards"
3397
3401
  _return_http_data_only (bool): response data without head status
3398
3402
  code and headers. Default is True.
3399
3403
  _preload_content (bool): if False, the urllib3.HTTPResponse object
@@ -3463,11 +3467,16 @@ class ApplicationServicesApi(object):
3463
3467
  'resource_id',
3464
3468
  'page_at_id',
3465
3469
  'name_slug',
3470
+ 'page_on',
3471
+ 'page_at_key',
3472
+ 'page_sort',
3473
+ 'search_direction',
3466
3474
  ],
3467
3475
  'required': [],
3468
3476
  'nullable': [
3469
3477
  ],
3470
3478
  'enum': [
3479
+ 'search_direction',
3471
3480
  ],
3472
3481
  'validation': [
3473
3482
  'name',
@@ -3489,6 +3498,11 @@ class ApplicationServicesApi(object):
3489
3498
  },
3490
3499
  },
3491
3500
  'allowed_values': {
3501
+ ('search_direction',): {
3502
+
3503
+ "BACKWARDS": "backwards",
3504
+ "FORWARDS": "forwards"
3505
+ },
3492
3506
  },
3493
3507
  'openapi_types': {
3494
3508
  'org_id':
@@ -3509,6 +3523,14 @@ class ApplicationServicesApi(object):
3509
3523
  (str,),
3510
3524
  'name_slug':
3511
3525
  (str,),
3526
+ 'page_on':
3527
+ ([str],),
3528
+ 'page_at_key':
3529
+ ([str, none_type],),
3530
+ 'page_sort':
3531
+ ([str],),
3532
+ 'search_direction':
3533
+ (str,),
3512
3534
  },
3513
3535
  'attribute_map': {
3514
3536
  'org_id': 'org_id',
@@ -3520,6 +3542,10 @@ class ApplicationServicesApi(object):
3520
3542
  'resource_id': 'resource_id',
3521
3543
  'page_at_id': 'page_at_id',
3522
3544
  'name_slug': 'name_slug',
3545
+ 'page_on': 'page_on',
3546
+ 'page_at_key': 'page_at_key',
3547
+ 'page_sort': 'page_sort',
3548
+ 'search_direction': 'search_direction',
3523
3549
  },
3524
3550
  'location_map': {
3525
3551
  'org_id': 'query',
@@ -3531,9 +3557,16 @@ class ApplicationServicesApi(object):
3531
3557
  'resource_id': 'query',
3532
3558
  'page_at_id': 'query',
3533
3559
  'name_slug': 'query',
3560
+ 'page_on': 'query',
3561
+ 'page_at_key': 'query',
3562
+ 'page_sort': 'query',
3563
+ 'search_direction': 'query',
3534
3564
  },
3535
3565
  'collection_format_map': {
3536
3566
  'org_ids': 'multi',
3567
+ 'page_on': 'multi',
3568
+ 'page_at_key': 'multi',
3569
+ 'page_sort': 'multi',
3537
3570
  }
3538
3571
  },
3539
3572
  headers_map={
@@ -3572,6 +3605,10 @@ class ApplicationServicesApi(object):
3572
3605
  name_slug (str): The slug of the resource to query for. [optional]
3573
3606
  desktop_type (str): The type of desktop search for.. [optional]
3574
3607
  has_remote_app (bool): Only return desktops with configured remote apps. [optional]
3608
+ page_on ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
3609
+ page_at_key ([str, none_type]): The values defining the item in a collection immediately preceeding the page to fetch. The meaning of the entries is defined in page_on. For example, if page_on is `[\"name\", \"created\"]`, and page_at_key is `[\"hello\", \"2025-05-01T10:20:30\"]` then the page to fetch will return all items whose name is greater than \"hello\", or whose name is \"hello\", but whose date is greater than \"2025-05-01T10:20:30\", up to a limit of `limit`. A value of `null` represents the first page. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
3610
+ page_sort ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
3611
+ search_direction (str): Direction which the search should go starting from the email_nullable_query parameter. . [optional] if omitted the server will use the default value of "forwards"
3575
3612
  _return_http_data_only (bool): response data without head status
3576
3613
  code and headers. Default is True.
3577
3614
  _preload_content (bool): if False, the urllib3.HTTPResponse object
@@ -3643,12 +3680,17 @@ class ApplicationServicesApi(object):
3643
3680
  'name_slug',
3644
3681
  'desktop_type',
3645
3682
  'has_remote_app',
3683
+ 'page_on',
3684
+ 'page_at_key',
3685
+ 'page_sort',
3686
+ 'search_direction',
3646
3687
  ],
3647
3688
  'required': [],
3648
3689
  'nullable': [
3649
3690
  ],
3650
3691
  'enum': [
3651
3692
  'desktop_type',
3693
+ 'search_direction',
3652
3694
  ],
3653
3695
  'validation': [
3654
3696
  'name',
@@ -3675,6 +3717,11 @@ class ApplicationServicesApi(object):
3675
3717
  "RDP": "rdp",
3676
3718
  "VNC": "vnc"
3677
3719
  },
3720
+ ('search_direction',): {
3721
+
3722
+ "BACKWARDS": "backwards",
3723
+ "FORWARDS": "forwards"
3724
+ },
3678
3725
  },
3679
3726
  'openapi_types': {
3680
3727
  'org_id':
@@ -3699,6 +3746,14 @@ class ApplicationServicesApi(object):
3699
3746
  (str,),
3700
3747
  'has_remote_app':
3701
3748
  (bool,),
3749
+ 'page_on':
3750
+ ([str],),
3751
+ 'page_at_key':
3752
+ ([str, none_type],),
3753
+ 'page_sort':
3754
+ ([str],),
3755
+ 'search_direction':
3756
+ (str,),
3702
3757
  },
3703
3758
  'attribute_map': {
3704
3759
  'org_id': 'org_id',
@@ -3712,6 +3767,10 @@ class ApplicationServicesApi(object):
3712
3767
  'name_slug': 'name_slug',
3713
3768
  'desktop_type': 'desktop_type',
3714
3769
  'has_remote_app': 'has_remote_app',
3770
+ 'page_on': 'page_on',
3771
+ 'page_at_key': 'page_at_key',
3772
+ 'page_sort': 'page_sort',
3773
+ 'search_direction': 'search_direction',
3715
3774
  },
3716
3775
  'location_map': {
3717
3776
  'org_id': 'query',
@@ -3725,9 +3784,16 @@ class ApplicationServicesApi(object):
3725
3784
  'name_slug': 'query',
3726
3785
  'desktop_type': 'query',
3727
3786
  'has_remote_app': 'query',
3787
+ 'page_on': 'query',
3788
+ 'page_at_key': 'query',
3789
+ 'page_sort': 'query',
3790
+ 'search_direction': 'query',
3728
3791
  },
3729
3792
  'collection_format_map': {
3730
3793
  'org_ids': 'multi',
3794
+ 'page_on': 'multi',
3795
+ 'page_at_key': 'multi',
3796
+ 'page_sort': 'multi',
3731
3797
  }
3732
3798
  },
3733
3799
  headers_map={
@@ -3763,6 +3829,10 @@ class ApplicationServicesApi(object):
3763
3829
  org_ids ([str]): The list of org ids to search for. Each org will be searched for independently.. [optional]
3764
3830
  resource_id (str): The id of the resource to query for. [optional]
3765
3831
  page_at_id (str): Pagination based query with the id as the key. To get the initial entries supply an empty string. On subsequent requests, supply the `page_at_id` field from the list response. . [optional]
3832
+ page_on ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
3833
+ page_at_key ([str, none_type]): The values defining the item in a collection immediately preceeding the page to fetch. The meaning of the entries is defined in page_on. For example, if page_on is `[\"name\", \"created\"]`, and page_at_key is `[\"hello\", \"2025-05-01T10:20:30\"]` then the page to fetch will return all items whose name is greater than \"hello\", or whose name is \"hello\", but whose date is greater than \"2025-05-01T10:20:30\", up to a limit of `limit`. A value of `null` represents the first page. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
3834
+ page_sort ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
3835
+ search_direction (str): Direction which the search should go starting from the email_nullable_query parameter. . [optional] if omitted the server will use the default value of "forwards"
3766
3836
  _return_http_data_only (bool): response data without head status
3767
3837
  code and headers. Default is True.
3768
3838
  _preload_content (bool): if False, the urllib3.HTTPResponse object
@@ -3831,11 +3901,16 @@ class ApplicationServicesApi(object):
3831
3901
  'org_ids',
3832
3902
  'resource_id',
3833
3903
  'page_at_id',
3904
+ 'page_on',
3905
+ 'page_at_key',
3906
+ 'page_sort',
3907
+ 'search_direction',
3834
3908
  ],
3835
3909
  'required': [],
3836
3910
  'nullable': [
3837
3911
  ],
3838
3912
  'enum': [
3913
+ 'search_direction',
3839
3914
  ],
3840
3915
  'validation': [
3841
3916
  'limit',
@@ -3850,6 +3925,11 @@ class ApplicationServicesApi(object):
3850
3925
  },
3851
3926
  },
3852
3927
  'allowed_values': {
3928
+ ('search_direction',): {
3929
+
3930
+ "BACKWARDS": "backwards",
3931
+ "FORWARDS": "forwards"
3932
+ },
3853
3933
  },
3854
3934
  'openapi_types': {
3855
3935
  'org_id':
@@ -3868,6 +3948,14 @@ class ApplicationServicesApi(object):
3868
3948
  (str,),
3869
3949
  'page_at_id':
3870
3950
  (str,),
3951
+ 'page_on':
3952
+ ([str],),
3953
+ 'page_at_key':
3954
+ ([str, none_type],),
3955
+ 'page_sort':
3956
+ ([str],),
3957
+ 'search_direction':
3958
+ (str,),
3871
3959
  },
3872
3960
  'attribute_map': {
3873
3961
  'org_id': 'org_id',
@@ -3878,6 +3966,10 @@ class ApplicationServicesApi(object):
3878
3966
  'org_ids': 'org_ids',
3879
3967
  'resource_id': 'resource_id',
3880
3968
  'page_at_id': 'page_at_id',
3969
+ 'page_on': 'page_on',
3970
+ 'page_at_key': 'page_at_key',
3971
+ 'page_sort': 'page_sort',
3972
+ 'search_direction': 'search_direction',
3881
3973
  },
3882
3974
  'location_map': {
3883
3975
  'org_id': 'query',
@@ -3888,9 +3980,16 @@ class ApplicationServicesApi(object):
3888
3980
  'org_ids': 'query',
3889
3981
  'resource_id': 'query',
3890
3982
  'page_at_id': 'query',
3983
+ 'page_on': 'query',
3984
+ 'page_at_key': 'query',
3985
+ 'page_sort': 'query',
3986
+ 'search_direction': 'query',
3891
3987
  },
3892
3988
  'collection_format_map': {
3893
3989
  'org_ids': 'multi',
3990
+ 'page_on': 'multi',
3991
+ 'page_at_key': 'multi',
3992
+ 'page_sort': 'multi',
3894
3993
  }
3895
3994
  },
3896
3995
  headers_map={
@@ -3926,6 +4025,10 @@ class ApplicationServicesApi(object):
3926
4025
  updated_since (datetime): query since updated. [optional]
3927
4026
  limit (int): limit the number of rows in the response. [optional] if omitted the server will use the default value of 500
3928
4027
  org_ids ([str]): The list of org ids to search for. Each org will be searched for independently.. [optional]
4028
+ page_on ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
4029
+ page_at_key ([str, none_type]): The values defining the item in a collection immediately preceeding the page to fetch. The meaning of the entries is defined in page_on. For example, if page_on is `[\"name\", \"created\"]`, and page_at_key is `[\"hello\", \"2025-05-01T10:20:30\"]` then the page to fetch will return all items whose name is greater than \"hello\", or whose name is \"hello\", but whose date is greater than \"2025-05-01T10:20:30\", up to a limit of `limit`. A value of `null` represents the first page. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
4030
+ page_sort ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
4031
+ search_direction (str): Direction which the search should go starting from the email_nullable_query parameter. . [optional] if omitted the server will use the default value of "forwards"
3929
4032
  _return_http_data_only (bool): response data without head status
3930
4033
  code and headers. Default is True.
3931
4034
  _preload_content (bool): if False, the urllib3.HTTPResponse object
@@ -3994,11 +4097,16 @@ class ApplicationServicesApi(object):
3994
4097
  'updated_since',
3995
4098
  'limit',
3996
4099
  'org_ids',
4100
+ 'page_on',
4101
+ 'page_at_key',
4102
+ 'page_sort',
4103
+ 'search_direction',
3997
4104
  ],
3998
4105
  'required': [],
3999
4106
  'nullable': [
4000
4107
  ],
4001
4108
  'enum': [
4109
+ 'search_direction',
4002
4110
  ],
4003
4111
  'validation': [
4004
4112
  'app_service_id',
@@ -4020,6 +4128,11 @@ class ApplicationServicesApi(object):
4020
4128
  },
4021
4129
  },
4022
4130
  'allowed_values': {
4131
+ ('search_direction',): {
4132
+
4133
+ "BACKWARDS": "backwards",
4134
+ "FORWARDS": "forwards"
4135
+ },
4023
4136
  },
4024
4137
  'openapi_types': {
4025
4138
  'org_id':
@@ -4038,6 +4151,14 @@ class ApplicationServicesApi(object):
4038
4151
  (int,),
4039
4152
  'org_ids':
4040
4153
  ([str],),
4154
+ 'page_on':
4155
+ ([str],),
4156
+ 'page_at_key':
4157
+ ([str, none_type],),
4158
+ 'page_sort':
4159
+ ([str],),
4160
+ 'search_direction':
4161
+ (str,),
4041
4162
  },
4042
4163
  'attribute_map': {
4043
4164
  'org_id': 'org_id',
@@ -4048,6 +4169,10 @@ class ApplicationServicesApi(object):
4048
4169
  'updated_since': 'updated_since',
4049
4170
  'limit': 'limit',
4050
4171
  'org_ids': 'org_ids',
4172
+ 'page_on': 'page_on',
4173
+ 'page_at_key': 'page_at_key',
4174
+ 'page_sort': 'page_sort',
4175
+ 'search_direction': 'search_direction',
4051
4176
  },
4052
4177
  'location_map': {
4053
4178
  'org_id': 'query',
@@ -4058,9 +4183,16 @@ class ApplicationServicesApi(object):
4058
4183
  'updated_since': 'query',
4059
4184
  'limit': 'query',
4060
4185
  'org_ids': 'query',
4186
+ 'page_on': 'query',
4187
+ 'page_at_key': 'query',
4188
+ 'page_sort': 'query',
4189
+ 'search_direction': 'query',
4061
4190
  },
4062
4191
  'collection_format_map': {
4063
4192
  'org_ids': 'multi',
4193
+ 'page_on': 'multi',
4194
+ 'page_at_key': 'multi',
4195
+ 'page_sort': 'multi',
4064
4196
  }
4065
4197
  },
4066
4198
  headers_map={
@@ -4097,6 +4229,10 @@ class ApplicationServicesApi(object):
4097
4229
  resource_id (str): The id of the resource to query for. [optional]
4098
4230
  page_at_id (str): Pagination based query with the id as the key. To get the initial entries supply an empty string. On subsequent requests, supply the `page_at_id` field from the list response. . [optional]
4099
4231
  name_slug (str): The slug of the resource to query for. [optional]
4232
+ page_on ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
4233
+ page_at_key ([str, none_type]): The values defining the item in a collection immediately preceeding the page to fetch. The meaning of the entries is defined in page_on. For example, if page_on is `[\"name\", \"created\"]`, and page_at_key is `[\"hello\", \"2025-05-01T10:20:30\"]` then the page to fetch will return all items whose name is greater than \"hello\", or whose name is \"hello\", but whose date is greater than \"2025-05-01T10:20:30\", up to a limit of `limit`. A value of `null` represents the first page. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
4234
+ page_sort ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
4235
+ search_direction (str): Direction which the search should go starting from the email_nullable_query parameter. . [optional] if omitted the server will use the default value of "forwards"
4100
4236
  _return_http_data_only (bool): response data without head status
4101
4237
  code and headers. Default is True.
4102
4238
  _preload_content (bool): if False, the urllib3.HTTPResponse object
@@ -4166,11 +4302,16 @@ class ApplicationServicesApi(object):
4166
4302
  'resource_id',
4167
4303
  'page_at_id',
4168
4304
  'name_slug',
4305
+ 'page_on',
4306
+ 'page_at_key',
4307
+ 'page_sort',
4308
+ 'search_direction',
4169
4309
  ],
4170
4310
  'required': [],
4171
4311
  'nullable': [
4172
4312
  ],
4173
4313
  'enum': [
4314
+ 'search_direction',
4174
4315
  ],
4175
4316
  'validation': [
4176
4317
  'name',
@@ -4192,6 +4333,11 @@ class ApplicationServicesApi(object):
4192
4333
  },
4193
4334
  },
4194
4335
  'allowed_values': {
4336
+ ('search_direction',): {
4337
+
4338
+ "BACKWARDS": "backwards",
4339
+ "FORWARDS": "forwards"
4340
+ },
4195
4341
  },
4196
4342
  'openapi_types': {
4197
4343
  'org_id':
@@ -4212,6 +4358,14 @@ class ApplicationServicesApi(object):
4212
4358
  (str,),
4213
4359
  'name_slug':
4214
4360
  (str,),
4361
+ 'page_on':
4362
+ ([str],),
4363
+ 'page_at_key':
4364
+ ([str, none_type],),
4365
+ 'page_sort':
4366
+ ([str],),
4367
+ 'search_direction':
4368
+ (str,),
4215
4369
  },
4216
4370
  'attribute_map': {
4217
4371
  'org_id': 'org_id',
@@ -4223,6 +4377,10 @@ class ApplicationServicesApi(object):
4223
4377
  'resource_id': 'resource_id',
4224
4378
  'page_at_id': 'page_at_id',
4225
4379
  'name_slug': 'name_slug',
4380
+ 'page_on': 'page_on',
4381
+ 'page_at_key': 'page_at_key',
4382
+ 'page_sort': 'page_sort',
4383
+ 'search_direction': 'search_direction',
4226
4384
  },
4227
4385
  'location_map': {
4228
4386
  'org_id': 'query',
@@ -4234,9 +4392,16 @@ class ApplicationServicesApi(object):
4234
4392
  'resource_id': 'query',
4235
4393
  'page_at_id': 'query',
4236
4394
  'name_slug': 'query',
4395
+ 'page_on': 'query',
4396
+ 'page_at_key': 'query',
4397
+ 'page_sort': 'query',
4398
+ 'search_direction': 'query',
4237
4399
  },
4238
4400
  'collection_format_map': {
4239
4401
  'org_ids': 'multi',
4402
+ 'page_on': 'multi',
4403
+ 'page_at_key': 'multi',
4404
+ 'page_sort': 'multi',
4240
4405
  }
4241
4406
  },
4242
4407
  headers_map={
@@ -451,6 +451,10 @@ class LaunchersApi(object):
451
451
  org_ids ([str]): The list of org ids to search for. Each org will be searched for independently.. [optional]
452
452
  resource_id (str): The id of the resource to query for. [optional]
453
453
  page_at_id (str): Pagination based query with the id as the key. To get the initial entries supply an empty string. On subsequent requests, supply the `page_at_id` field from the list response. . [optional]
454
+ page_on ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
455
+ page_at_key ([str, none_type]): The values defining the item in a collection immediately preceeding the page to fetch. The meaning of the entries is defined in page_on. For example, if page_on is `[\"name\", \"created\"]`, and page_at_key is `[\"hello\", \"2025-05-01T10:20:30\"]` then the page to fetch will return all items whose name is greater than \"hello\", or whose name is \"hello\", but whose date is greater than \"2025-05-01T10:20:30\", up to a limit of `limit`. A value of `null` represents the first page. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
456
+ page_sort ([str]): A list of fields to page on and sort by, in order. Results will be sorted in order of the first item in the list, followed by second and so on. The page to retrieve is defined in page_at_key, whose entries correspond to the previous page's values for the respective keys. The results are sorted according to the optional page_sort whose entries define, respectively, whether to sort ascending or descending by the given field. . [optional]
457
+ search_direction (str): Direction which the search should go starting from the email_nullable_query parameter. . [optional] if omitted the server will use the default value of "forwards"
454
458
  _return_http_data_only (bool): response data without head status
455
459
  code and headers. Default is True.
456
460
  _preload_content (bool): if False, the urllib3.HTTPResponse object
@@ -517,11 +521,16 @@ class LaunchersApi(object):
517
521
  'org_ids',
518
522
  'resource_id',
519
523
  'page_at_id',
524
+ 'page_on',
525
+ 'page_at_key',
526
+ 'page_sort',
527
+ 'search_direction',
520
528
  ],
521
529
  'required': [],
522
530
  'nullable': [
523
531
  ],
524
532
  'enum': [
533
+ 'search_direction',
525
534
  ],
526
535
  'validation': [
527
536
  'limit',
@@ -536,6 +545,11 @@ class LaunchersApi(object):
536
545
  },
537
546
  },
538
547
  'allowed_values': {
548
+ ('search_direction',): {
549
+
550
+ "BACKWARDS": "backwards",
551
+ "FORWARDS": "forwards"
552
+ },
539
553
  },
540
554
  'openapi_types': {
541
555
  'limit':
@@ -550,6 +564,14 @@ class LaunchersApi(object):
550
564
  (str,),
551
565
  'page_at_id':
552
566
  (str,),
567
+ 'page_on':
568
+ ([str],),
569
+ 'page_at_key':
570
+ ([str, none_type],),
571
+ 'page_sort':
572
+ ([str],),
573
+ 'search_direction':
574
+ (str,),
553
575
  },
554
576
  'attribute_map': {
555
577
  'limit': 'limit',
@@ -558,6 +580,10 @@ class LaunchersApi(object):
558
580
  'org_ids': 'org_ids',
559
581
  'resource_id': 'resource_id',
560
582
  'page_at_id': 'page_at_id',
583
+ 'page_on': 'page_on',
584
+ 'page_at_key': 'page_at_key',
585
+ 'page_sort': 'page_sort',
586
+ 'search_direction': 'search_direction',
561
587
  },
562
588
  'location_map': {
563
589
  'limit': 'query',
@@ -566,9 +592,16 @@ class LaunchersApi(object):
566
592
  'org_ids': 'query',
567
593
  'resource_id': 'query',
568
594
  'page_at_id': 'query',
595
+ 'page_on': 'query',
596
+ 'page_at_key': 'query',
597
+ 'page_sort': 'query',
598
+ 'search_direction': 'query',
569
599
  },
570
600
  'collection_format_map': {
571
601
  'org_ids': 'multi',
602
+ 'page_on': 'multi',
603
+ 'page_at_key': 'multi',
604
+ 'page_sort': 'multi',
572
605
  }
573
606
  },
574
607
  headers_map={
@@ -77,7 +77,7 @@ class ApiClient(object):
77
77
  self.default_headers[header_name] = header_value
78
78
  self.cookie = cookie
79
79
  # Set default User-Agent.
80
- self.user_agent = 'OpenAPI-Generator/1.304.0/python'
80
+ self.user_agent = 'OpenAPI-Generator/1.304.1/python'
81
81
 
82
82
  def __enter__(self):
83
83
  return self
@@ -387,7 +387,7 @@ class Configuration(object):
387
387
  "OS: {env}\n"\
388
388
  "Python Version: {pyversion}\n"\
389
389
  "Version of the API: 2025.10.23\n"\
390
- "SDK Package Version: 1.304.0".\
390
+ "SDK Package Version: 1.304.1".\
391
391
  format(env=sys.platform, pyversion=sys.version)
392
392
 
393
393
  def get_host_settings(self):