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
@@ -3243,12 +3243,16 @@ with agilicus_api.ApiClient(configuration) as api_client:
3243
3243
  resource_id = "owner" # str | The id of the resource to query for (optional)
3244
3244
  page_at_id = "foo@example.com" # 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)
3245
3245
  name_slug = "smy-application1234" # str | The slug of the resource to query for (optional)
3246
+ page_on = ["name"] # [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)
3247
+ page_at_key = ["hello"] # [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)
3248
+ page_sort = ["name"] # [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)
3249
+ search_direction = "forwards" # 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"
3246
3250
 
3247
3251
  # example passing only required values which don't have defaults set
3248
3252
  # and optional values
3249
3253
  try:
3250
3254
  # Get a subset of the DatabaseResource objects.
3251
- api_response = api_instance.list_database_resources(org_id=org_id, name=name, connector_id=connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id, name_slug=name_slug)
3255
+ api_response = api_instance.list_database_resources(org_id=org_id, name=name, connector_id=connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id, name_slug=name_slug, page_on=page_on, page_at_key=page_at_key, page_sort=page_sort, search_direction=search_direction)
3252
3256
  pprint(api_response)
3253
3257
  except agilicus_api.ApiException as e:
3254
3258
  print("Exception when calling ApplicationServicesApi->list_database_resources: %s\n" % e)
@@ -3268,6 +3272,10 @@ Name | Type | Description | Notes
3268
3272
  **resource_id** | **str**| The id of the resource to query for | [optional]
3269
3273
  **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]
3270
3274
  **name_slug** | **str**| The slug of the resource to query for | [optional]
3275
+ **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]
3276
+ **page_at_key** | [**[str, none_type]**](str, none_type.md)| 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]
3277
+ **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]
3278
+ **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"
3271
3279
 
3272
3280
  ### Return type
3273
3281
 
@@ -3337,12 +3345,16 @@ with agilicus_api.ApiClient(configuration) as api_client:
3337
3345
  name_slug = "smy-application1234" # str | The slug of the resource to query for (optional)
3338
3346
  desktop_type = "rdp" # str | The type of desktop search for. (optional)
3339
3347
  has_remote_app = True # bool | Only return desktops with configured remote apps (optional)
3348
+ page_on = ["name"] # [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)
3349
+ page_at_key = ["hello"] # [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)
3350
+ page_sort = ["name"] # [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)
3351
+ search_direction = "forwards" # 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"
3340
3352
 
3341
3353
  # example passing only required values which don't have defaults set
3342
3354
  # and optional values
3343
3355
  try:
3344
3356
  # Get a subset of the DesktopResource objects.
3345
- api_response = api_instance.list_desktop_resources(org_id=org_id, name=name, connector_id=connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id, name_slug=name_slug, desktop_type=desktop_type, has_remote_app=has_remote_app)
3357
+ api_response = api_instance.list_desktop_resources(org_id=org_id, name=name, connector_id=connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id, name_slug=name_slug, desktop_type=desktop_type, has_remote_app=has_remote_app, page_on=page_on, page_at_key=page_at_key, page_sort=page_sort, search_direction=search_direction)
3346
3358
  pprint(api_response)
3347
3359
  except agilicus_api.ApiException as e:
3348
3360
  print("Exception when calling ApplicationServicesApi->list_desktop_resources: %s\n" % e)
@@ -3364,6 +3376,10 @@ Name | Type | Description | Notes
3364
3376
  **name_slug** | **str**| The slug of the resource to query for | [optional]
3365
3377
  **desktop_type** | **str**| The type of desktop search for. | [optional]
3366
3378
  **has_remote_app** | **bool**| Only return desktops with configured remote apps | [optional]
3379
+ **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]
3380
+ **page_at_key** | [**[str, none_type]**](str, none_type.md)| 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]
3381
+ **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]
3382
+ **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"
3367
3383
 
3368
3384
  ### Return type
3369
3385
 
@@ -3430,12 +3446,16 @@ with agilicus_api.ApiClient(configuration) as api_client:
3430
3446
  org_ids = ["q20sd0dfs3llasd0af9"] # [str] | The list of org ids to search for. Each org will be searched for independently. (optional)
3431
3447
  resource_id = "owner" # str | The id of the resource to query for (optional)
3432
3448
  page_at_id = "foo@example.com" # 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)
3449
+ page_on = ["name"] # [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)
3450
+ page_at_key = ["hello"] # [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)
3451
+ page_sort = ["name"] # [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)
3452
+ search_direction = "forwards" # 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"
3433
3453
 
3434
3454
  # example passing only required values which don't have defaults set
3435
3455
  # and optional values
3436
3456
  try:
3437
3457
  # Get a subset of the FileShareServices
3438
- api_response = api_instance.list_file_share_services(org_id=org_id, name=name, connector_id=connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id)
3458
+ api_response = api_instance.list_file_share_services(org_id=org_id, name=name, connector_id=connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id, page_on=page_on, page_at_key=page_at_key, page_sort=page_sort, search_direction=search_direction)
3439
3459
  pprint(api_response)
3440
3460
  except agilicus_api.ApiException as e:
3441
3461
  print("Exception when calling ApplicationServicesApi->list_file_share_services: %s\n" % e)
@@ -3454,6 +3474,10 @@ Name | Type | Description | Notes
3454
3474
  **org_ids** | **[str]**| The list of org ids to search for. Each org will be searched for independently. | [optional]
3455
3475
  **resource_id** | **str**| The id of the resource to query for | [optional]
3456
3476
  **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]
3477
+ **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]
3478
+ **page_at_key** | [**[str, none_type]**](str, none_type.md)| 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]
3479
+ **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]
3480
+ **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"
3457
3481
 
3458
3482
  ### Return type
3459
3483
 
@@ -3520,12 +3544,16 @@ with agilicus_api.ApiClient(configuration) as api_client:
3520
3544
  updated_since = dateutil_parser('2015-07-07T15:49:51.230+02:00') # datetime | query since updated (optional)
3521
3545
  limit = 1 # int | limit the number of rows in the response (optional) if omitted the server will use the default value of 500
3522
3546
  org_ids = ["q20sd0dfs3llasd0af9"] # [str] | The list of org ids to search for. Each org will be searched for independently. (optional)
3547
+ page_on = ["name"] # [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)
3548
+ page_at_key = ["hello"] # [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)
3549
+ page_sort = ["name"] # [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)
3550
+ search_direction = "forwards" # 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"
3523
3551
 
3524
3552
  # example passing only required values which don't have defaults set
3525
3553
  # and optional values
3526
3554
  try:
3527
3555
  # Get a subset of the ServiceForwarder objects
3528
- api_response = api_instance.list_service_forwarders(org_id=org_id, name=name, app_service_id=app_service_id, connector_id=connector_id, app_service_connector_id=app_service_connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids)
3556
+ api_response = api_instance.list_service_forwarders(org_id=org_id, name=name, app_service_id=app_service_id, connector_id=connector_id, app_service_connector_id=app_service_connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids, page_on=page_on, page_at_key=page_at_key, page_sort=page_sort, search_direction=search_direction)
3529
3557
  pprint(api_response)
3530
3558
  except agilicus_api.ApiException as e:
3531
3559
  print("Exception when calling ApplicationServicesApi->list_service_forwarders: %s\n" % e)
@@ -3544,6 +3572,10 @@ Name | Type | Description | Notes
3544
3572
  **updated_since** | **datetime**| query since updated | [optional]
3545
3573
  **limit** | **int**| limit the number of rows in the response | [optional] if omitted the server will use the default value of 500
3546
3574
  **org_ids** | **[str]**| The list of org ids to search for. Each org will be searched for independently. | [optional]
3575
+ **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]
3576
+ **page_at_key** | [**[str, none_type]**](str, none_type.md)| 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]
3577
+ **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]
3578
+ **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"
3547
3579
 
3548
3580
  ### Return type
3549
3581
 
@@ -3611,12 +3643,16 @@ with agilicus_api.ApiClient(configuration) as api_client:
3611
3643
  resource_id = "owner" # str | The id of the resource to query for (optional)
3612
3644
  page_at_id = "foo@example.com" # 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)
3613
3645
  name_slug = "smy-application1234" # str | The slug of the resource to query for (optional)
3646
+ page_on = ["name"] # [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)
3647
+ page_at_key = ["hello"] # [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)
3648
+ page_sort = ["name"] # [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)
3649
+ search_direction = "forwards" # 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"
3614
3650
 
3615
3651
  # example passing only required values which don't have defaults set
3616
3652
  # and optional values
3617
3653
  try:
3618
3654
  # Get a subset of the SSHResource objects.
3619
- api_response = api_instance.list_ssh_resources(org_id=org_id, name=name, connector_id=connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id, name_slug=name_slug)
3655
+ api_response = api_instance.list_ssh_resources(org_id=org_id, name=name, connector_id=connector_id, updated_since=updated_since, limit=limit, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id, name_slug=name_slug, page_on=page_on, page_at_key=page_at_key, page_sort=page_sort, search_direction=search_direction)
3620
3656
  pprint(api_response)
3621
3657
  except agilicus_api.ApiException as e:
3622
3658
  print("Exception when calling ApplicationServicesApi->list_ssh_resources: %s\n" % e)
@@ -3636,6 +3672,10 @@ Name | Type | Description | Notes
3636
3672
  **resource_id** | **str**| The id of the resource to query for | [optional]
3637
3673
  **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]
3638
3674
  **name_slug** | **str**| The slug of the resource to query for | [optional]
3675
+ **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]
3676
+ **page_at_key** | [**[str, none_type]**](str, none_type.md)| 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]
3677
+ **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]
3678
+ **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"
3639
3679
 
3640
3680
  ### Return type
3641
3681
 
@@ -847,12 +847,16 @@ with agilicus_api.ApiClient(configuration) as api_client:
847
847
  org_ids = ["q20sd0dfs3llasd0af9"] # [str] | The list of org ids to search for. Each org will be searched for independently. (optional)
848
848
  resource_id = "owner" # str | The id of the resource to query for (optional)
849
849
  page_at_id = "foo@example.com" # 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)
850
+ page_on = ["name"] # [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)
851
+ page_at_key = ["hello"] # [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)
852
+ page_sort = ["name"] # [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)
853
+ search_direction = "forwards" # 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"
850
854
 
851
855
  # example passing only required values which don't have defaults set
852
856
  # and optional values
853
857
  try:
854
858
  # Get all launchers
855
- api_response = api_instance.list_launchers(limit=limit, org_id=org_id, expand_resource_members=expand_resource_members, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id)
859
+ api_response = api_instance.list_launchers(limit=limit, org_id=org_id, expand_resource_members=expand_resource_members, org_ids=org_ids, resource_id=resource_id, page_at_id=page_at_id, page_on=page_on, page_at_key=page_at_key, page_sort=page_sort, search_direction=search_direction)
856
860
  pprint(api_response)
857
861
  except agilicus_api.ApiException as e:
858
862
  print("Exception when calling LaunchersApi->list_launchers: %s\n" % e)
@@ -869,6 +873,10 @@ Name | Type | Description | Notes
869
873
  **org_ids** | **[str]**| The list of org ids to search for. Each org will be searched for independently. | [optional]
870
874
  **resource_id** | **str**| The id of the resource to query for | [optional]
871
875
  **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]
876
+ **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]
877
+ **page_at_key** | [**[str, none_type]**](str, none_type.md)| 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]
878
+ **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]
879
+ **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"
872
880
 
873
881
  ### Return type
874
882
 
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **limit** | **int** | The maximum number of records returned in the response. |
9
9
  **database_resources** | [**[DatabaseResource]**](DatabaseResource.md) | List of DatabaseResource objects. | [optional]
10
10
  **page_at_id** | **str** | The id to request in the pagination query to get the next page. | [optional]
11
+ **page_info** | [**PageInfo**](PageInfo.md) | | [optional]
11
12
  **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
12
13
 
13
14
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **limit** | **int** | The maximum number of records returned in the response. |
9
9
  **desktop_resources** | [**[DesktopResource]**](DesktopResource.md) | List of DesktopResource objects. | [optional]
10
10
  **page_at_id** | **str** | The id to request in the pagination query to get the next page. | [optional]
11
+ **page_info** | [**PageInfo**](PageInfo.md) | | [optional]
11
12
  **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
12
13
 
13
14
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **limit** | **int** | The maximum number of records returned in the response. |
9
9
  **file_share_services** | [**[FileShareService]**](FileShareService.md) | List of FileShareServices | [optional]
10
+ **page_info** | [**PageInfo**](PageInfo.md) | | [optional]
10
11
  **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
11
12
 
12
13
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **launchers** | [**[Launcher]**](Launcher.md) | List of Launchers | [optional]
9
9
  **limit** | **int** | The maximum number of records returned in the response. | [optional]
10
10
  **page_at_id** | **str** | The id to request in the pagination query to get the next page. | [optional]
11
+ **page_info** | [**PageInfo**](PageInfo.md) | | [optional]
11
12
  **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
12
13
 
13
14
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -8,6 +8,7 @@ Name | Type | Description | Notes
8
8
  **limit** | **int** | The maximum number of records returned in the response. |
9
9
  **ssh_resources** | [**[SSHResource]**](SSHResource.md) | List of SSHResource objects. | [optional]
10
10
  **page_at_id** | **str** | The id to request in the pagination query to get the next page. | [optional]
11
+ **page_info** | [**PageInfo**](PageInfo.md) | | [optional]
11
12
  **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
12
13
 
13
14
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -7,6 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **limit** | **int** | The maximum number of records returned in the response. |
9
9
  **service_forwarders** | [**[ServiceForwarder]**](ServiceForwarder.md) | List of ServiceForwarder | [optional]
10
+ **page_info** | [**PageInfo**](PageInfo.md) | | [optional]
10
11
  **any string name** | **bool, date, datetime, dict, float, int, list, str, none_type** | any string name can be used but the value must be the correct type | [optional]
11
12
 
12
13
  [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -32,7 +32,9 @@ from agilicus_api.exceptions import ApiAttributeError
32
32
 
33
33
  def lazy_import():
34
34
  from agilicus_api.model.database_resource import DatabaseResource
35
+ from agilicus_api.model.page_info import PageInfo
35
36
  globals()['DatabaseResource'] = DatabaseResource
37
+ globals()['PageInfo'] = PageInfo
36
38
 
37
39
 
38
40
  class ListDatabaseResourcesResponse(ModelNormal):
@@ -89,6 +91,14 @@ class ListDatabaseResourcesResponse(ModelNormal):
89
91
  def page_at_id(self, new_value):
90
92
  self.page_at_id = new_value
91
93
 
94
+ @property
95
+ def page_info(self):
96
+ return self.get("page_info")
97
+
98
+ @page_info.setter
99
+ def page_info(self, new_value):
100
+ self.page_info = new_value
101
+
92
102
  @cached_property
93
103
  def additional_properties_type():
94
104
  """
@@ -115,6 +125,7 @@ class ListDatabaseResourcesResponse(ModelNormal):
115
125
  'limit': (int,), # noqa: E501
116
126
  'database_resources': ([DatabaseResource],), # noqa: E501
117
127
  'page_at_id': (str,), # noqa: E501
128
+ 'page_info': (PageInfo,), # noqa: E501
118
129
  }
119
130
 
120
131
  @cached_property
@@ -127,6 +138,7 @@ class ListDatabaseResourcesResponse(ModelNormal):
127
138
  'limit': 'limit', # noqa: E501
128
139
  'database_resources': 'database_resources', # noqa: E501
129
140
  'page_at_id': 'page_at_id', # noqa: E501
141
+ 'page_info': 'page_info', # noqa: E501
130
142
  }
131
143
 
132
144
  read_only_vars = {
@@ -175,6 +187,7 @@ class ListDatabaseResourcesResponse(ModelNormal):
175
187
  _visited_composed_classes = (Animal,)
176
188
  database_resources ([DatabaseResource]): List of DatabaseResource objects.. [optional] # noqa: E501
177
189
  page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
190
+ page_info (PageInfo): [optional] # noqa: E501
178
191
  """
179
192
 
180
193
  _check_type = kwargs.pop('_check_type', True)
@@ -265,6 +278,7 @@ class ListDatabaseResourcesResponse(ModelNormal):
265
278
  _visited_composed_classes = (Animal,)
266
279
  database_resources ([DatabaseResource]): List of DatabaseResource objects.. [optional] # noqa: E501
267
280
  page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
281
+ page_info (PageInfo): [optional] # noqa: E501
268
282
  """
269
283
 
270
284
  _check_type = kwargs.pop('_check_type', True)
@@ -32,7 +32,9 @@ from agilicus_api.exceptions import ApiAttributeError
32
32
 
33
33
  def lazy_import():
34
34
  from agilicus_api.model.desktop_resource import DesktopResource
35
+ from agilicus_api.model.page_info import PageInfo
35
36
  globals()['DesktopResource'] = DesktopResource
37
+ globals()['PageInfo'] = PageInfo
36
38
 
37
39
 
38
40
  class ListDesktopResourcesResponse(ModelNormal):
@@ -89,6 +91,14 @@ class ListDesktopResourcesResponse(ModelNormal):
89
91
  def page_at_id(self, new_value):
90
92
  self.page_at_id = new_value
91
93
 
94
+ @property
95
+ def page_info(self):
96
+ return self.get("page_info")
97
+
98
+ @page_info.setter
99
+ def page_info(self, new_value):
100
+ self.page_info = new_value
101
+
92
102
  @cached_property
93
103
  def additional_properties_type():
94
104
  """
@@ -115,6 +125,7 @@ class ListDesktopResourcesResponse(ModelNormal):
115
125
  'limit': (int,), # noqa: E501
116
126
  'desktop_resources': ([DesktopResource],), # noqa: E501
117
127
  'page_at_id': (str,), # noqa: E501
128
+ 'page_info': (PageInfo,), # noqa: E501
118
129
  }
119
130
 
120
131
  @cached_property
@@ -127,6 +138,7 @@ class ListDesktopResourcesResponse(ModelNormal):
127
138
  'limit': 'limit', # noqa: E501
128
139
  'desktop_resources': 'desktop_resources', # noqa: E501
129
140
  'page_at_id': 'page_at_id', # noqa: E501
141
+ 'page_info': 'page_info', # noqa: E501
130
142
  }
131
143
 
132
144
  read_only_vars = {
@@ -175,6 +187,7 @@ class ListDesktopResourcesResponse(ModelNormal):
175
187
  _visited_composed_classes = (Animal,)
176
188
  desktop_resources ([DesktopResource]): List of DesktopResource objects.. [optional] # noqa: E501
177
189
  page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
190
+ page_info (PageInfo): [optional] # noqa: E501
178
191
  """
179
192
 
180
193
  _check_type = kwargs.pop('_check_type', True)
@@ -265,6 +278,7 @@ class ListDesktopResourcesResponse(ModelNormal):
265
278
  _visited_composed_classes = (Animal,)
266
279
  desktop_resources ([DesktopResource]): List of DesktopResource objects.. [optional] # noqa: E501
267
280
  page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
281
+ page_info (PageInfo): [optional] # noqa: E501
268
282
  """
269
283
 
270
284
  _check_type = kwargs.pop('_check_type', True)
@@ -32,7 +32,9 @@ from agilicus_api.exceptions import ApiAttributeError
32
32
 
33
33
  def lazy_import():
34
34
  from agilicus_api.model.file_share_service import FileShareService
35
+ from agilicus_api.model.page_info import PageInfo
35
36
  globals()['FileShareService'] = FileShareService
37
+ globals()['PageInfo'] = PageInfo
36
38
 
37
39
 
38
40
  class ListFileShareServicesResponse(ModelNormal):
@@ -81,6 +83,14 @@ class ListFileShareServicesResponse(ModelNormal):
81
83
  def limit(self, new_value):
82
84
  self.limit = new_value
83
85
 
86
+ @property
87
+ def page_info(self):
88
+ return self.get("page_info")
89
+
90
+ @page_info.setter
91
+ def page_info(self, new_value):
92
+ self.page_info = new_value
93
+
84
94
  @cached_property
85
95
  def additional_properties_type():
86
96
  """
@@ -106,6 +116,7 @@ class ListFileShareServicesResponse(ModelNormal):
106
116
  return {
107
117
  'limit': (int,), # noqa: E501
108
118
  'file_share_services': ([FileShareService],), # noqa: E501
119
+ 'page_info': (PageInfo,), # noqa: E501
109
120
  }
110
121
 
111
122
  @cached_property
@@ -117,6 +128,7 @@ class ListFileShareServicesResponse(ModelNormal):
117
128
  attribute_map = {
118
129
  'limit': 'limit', # noqa: E501
119
130
  'file_share_services': 'file_share_services', # noqa: E501
131
+ 'page_info': 'page_info', # noqa: E501
120
132
  }
121
133
 
122
134
  read_only_vars = {
@@ -164,6 +176,7 @@ class ListFileShareServicesResponse(ModelNormal):
164
176
  through its discriminator because we passed in
165
177
  _visited_composed_classes = (Animal,)
166
178
  file_share_services ([FileShareService]): List of FileShareServices. [optional] # noqa: E501
179
+ page_info (PageInfo): [optional] # noqa: E501
167
180
  """
168
181
 
169
182
  _check_type = kwargs.pop('_check_type', True)
@@ -253,6 +266,7 @@ class ListFileShareServicesResponse(ModelNormal):
253
266
  through its discriminator because we passed in
254
267
  _visited_composed_classes = (Animal,)
255
268
  file_share_services ([FileShareService]): List of FileShareServices. [optional] # noqa: E501
269
+ page_info (PageInfo): [optional] # noqa: E501
256
270
  """
257
271
 
258
272
  _check_type = kwargs.pop('_check_type', True)
@@ -32,7 +32,9 @@ from agilicus_api.exceptions import ApiAttributeError
32
32
 
33
33
  def lazy_import():
34
34
  from agilicus_api.model.launcher import Launcher
35
+ from agilicus_api.model.page_info import PageInfo
35
36
  globals()['Launcher'] = Launcher
37
+ globals()['PageInfo'] = PageInfo
36
38
 
37
39
 
38
40
  class ListLaunchersResponse(ModelNormal):
@@ -89,6 +91,14 @@ class ListLaunchersResponse(ModelNormal):
89
91
  def page_at_id(self, new_value):
90
92
  self.page_at_id = new_value
91
93
 
94
+ @property
95
+ def page_info(self):
96
+ return self.get("page_info")
97
+
98
+ @page_info.setter
99
+ def page_info(self, new_value):
100
+ self.page_info = new_value
101
+
92
102
  @cached_property
93
103
  def additional_properties_type():
94
104
  """
@@ -115,6 +125,7 @@ class ListLaunchersResponse(ModelNormal):
115
125
  'launchers': ([Launcher],), # noqa: E501
116
126
  'limit': (int,), # noqa: E501
117
127
  'page_at_id': (str,), # noqa: E501
128
+ 'page_info': (PageInfo,), # noqa: E501
118
129
  }
119
130
 
120
131
  @cached_property
@@ -127,6 +138,7 @@ class ListLaunchersResponse(ModelNormal):
127
138
  'launchers': 'launchers', # noqa: E501
128
139
  'limit': 'limit', # noqa: E501
129
140
  'page_at_id': 'page_at_id', # noqa: E501
141
+ 'page_info': 'page_info', # noqa: E501
130
142
  }
131
143
 
132
144
  read_only_vars = {
@@ -173,6 +185,7 @@ class ListLaunchersResponse(ModelNormal):
173
185
  launchers ([Launcher]): List of Launchers. [optional] # noqa: E501
174
186
  limit (int): The maximum number of records returned in the response.. [optional] # noqa: E501
175
187
  page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
188
+ page_info (PageInfo): [optional] # noqa: E501
176
189
  """
177
190
 
178
191
  _check_type = kwargs.pop('_check_type', True)
@@ -260,6 +273,7 @@ class ListLaunchersResponse(ModelNormal):
260
273
  launchers ([Launcher]): List of Launchers. [optional] # noqa: E501
261
274
  limit (int): The maximum number of records returned in the response.. [optional] # noqa: E501
262
275
  page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
276
+ page_info (PageInfo): [optional] # noqa: E501
263
277
  """
264
278
 
265
279
  _check_type = kwargs.pop('_check_type', True)
@@ -31,7 +31,9 @@ from agilicus_api.exceptions import ApiAttributeError
31
31
 
32
32
 
33
33
  def lazy_import():
34
+ from agilicus_api.model.page_info import PageInfo
34
35
  from agilicus_api.model.service_forwarder import ServiceForwarder
36
+ globals()['PageInfo'] = PageInfo
35
37
  globals()['ServiceForwarder'] = ServiceForwarder
36
38
 
37
39
 
@@ -81,6 +83,14 @@ class ListServiceForwardersResponse(ModelNormal):
81
83
  def limit(self, new_value):
82
84
  self.limit = new_value
83
85
 
86
+ @property
87
+ def page_info(self):
88
+ return self.get("page_info")
89
+
90
+ @page_info.setter
91
+ def page_info(self, new_value):
92
+ self.page_info = new_value
93
+
84
94
  @cached_property
85
95
  def additional_properties_type():
86
96
  """
@@ -106,6 +116,7 @@ class ListServiceForwardersResponse(ModelNormal):
106
116
  return {
107
117
  'limit': (int,), # noqa: E501
108
118
  'service_forwarders': ([ServiceForwarder],), # noqa: E501
119
+ 'page_info': (PageInfo,), # noqa: E501
109
120
  }
110
121
 
111
122
  @cached_property
@@ -117,6 +128,7 @@ class ListServiceForwardersResponse(ModelNormal):
117
128
  attribute_map = {
118
129
  'limit': 'limit', # noqa: E501
119
130
  'service_forwarders': 'service_forwarders', # noqa: E501
131
+ 'page_info': 'page_info', # noqa: E501
120
132
  }
121
133
 
122
134
  read_only_vars = {
@@ -164,6 +176,7 @@ class ListServiceForwardersResponse(ModelNormal):
164
176
  through its discriminator because we passed in
165
177
  _visited_composed_classes = (Animal,)
166
178
  service_forwarders ([ServiceForwarder]): List of ServiceForwarder. [optional] # noqa: E501
179
+ page_info (PageInfo): [optional] # noqa: E501
167
180
  """
168
181
 
169
182
  _check_type = kwargs.pop('_check_type', True)
@@ -253,6 +266,7 @@ class ListServiceForwardersResponse(ModelNormal):
253
266
  through its discriminator because we passed in
254
267
  _visited_composed_classes = (Animal,)
255
268
  service_forwarders ([ServiceForwarder]): List of ServiceForwarder. [optional] # noqa: E501
269
+ page_info (PageInfo): [optional] # noqa: E501
256
270
  """
257
271
 
258
272
  _check_type = kwargs.pop('_check_type', True)
@@ -31,7 +31,9 @@ from agilicus_api.exceptions import ApiAttributeError
31
31
 
32
32
 
33
33
  def lazy_import():
34
+ from agilicus_api.model.page_info import PageInfo
34
35
  from agilicus_api.model.ssh_resource import SSHResource
36
+ globals()['PageInfo'] = PageInfo
35
37
  globals()['SSHResource'] = SSHResource
36
38
 
37
39
 
@@ -89,6 +91,14 @@ class ListSSHResourcesResponse(ModelNormal):
89
91
  def page_at_id(self, new_value):
90
92
  self.page_at_id = new_value
91
93
 
94
+ @property
95
+ def page_info(self):
96
+ return self.get("page_info")
97
+
98
+ @page_info.setter
99
+ def page_info(self, new_value):
100
+ self.page_info = new_value
101
+
92
102
  @cached_property
93
103
  def additional_properties_type():
94
104
  """
@@ -115,6 +125,7 @@ class ListSSHResourcesResponse(ModelNormal):
115
125
  'limit': (int,), # noqa: E501
116
126
  'ssh_resources': ([SSHResource],), # noqa: E501
117
127
  'page_at_id': (str,), # noqa: E501
128
+ 'page_info': (PageInfo,), # noqa: E501
118
129
  }
119
130
 
120
131
  @cached_property
@@ -127,6 +138,7 @@ class ListSSHResourcesResponse(ModelNormal):
127
138
  'limit': 'limit', # noqa: E501
128
139
  'ssh_resources': 'ssh_resources', # noqa: E501
129
140
  'page_at_id': 'page_at_id', # noqa: E501
141
+ 'page_info': 'page_info', # noqa: E501
130
142
  }
131
143
 
132
144
  read_only_vars = {
@@ -175,6 +187,7 @@ class ListSSHResourcesResponse(ModelNormal):
175
187
  _visited_composed_classes = (Animal,)
176
188
  ssh_resources ([SSHResource]): List of SSHResource objects.. [optional] # noqa: E501
177
189
  page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
190
+ page_info (PageInfo): [optional] # noqa: E501
178
191
  """
179
192
 
180
193
  _check_type = kwargs.pop('_check_type', True)
@@ -265,6 +278,7 @@ class ListSSHResourcesResponse(ModelNormal):
265
278
  _visited_composed_classes = (Animal,)
266
279
  ssh_resources ([SSHResource]): List of SSHResource objects.. [optional] # noqa: E501
267
280
  page_at_id (str): The id to request in the pagination query to get the next page.. [optional] # noqa: E501
281
+ page_info (PageInfo): [optional] # noqa: E501
268
282
  """
269
283
 
270
284
  _check_type = kwargs.pop('_check_type', True)
@@ -14,7 +14,9 @@ import unittest
14
14
 
15
15
  import agilicus_api
16
16
  from agilicus_api.model.database_resource import DatabaseResource
17
+ from agilicus_api.model.page_info import PageInfo
17
18
  globals()['DatabaseResource'] = DatabaseResource
19
+ globals()['PageInfo'] = PageInfo
18
20
  from agilicus_api.model.list_database_resources_response import ListDatabaseResourcesResponse
19
21
 
20
22
 
@@ -14,7 +14,9 @@ import unittest
14
14
 
15
15
  import agilicus_api
16
16
  from agilicus_api.model.desktop_resource import DesktopResource
17
+ from agilicus_api.model.page_info import PageInfo
17
18
  globals()['DesktopResource'] = DesktopResource
19
+ globals()['PageInfo'] = PageInfo
18
20
  from agilicus_api.model.list_desktop_resources_response import ListDesktopResourcesResponse
19
21
 
20
22
 
@@ -14,7 +14,9 @@ import unittest
14
14
 
15
15
  import agilicus_api
16
16
  from agilicus_api.model.file_share_service import FileShareService
17
+ from agilicus_api.model.page_info import PageInfo
17
18
  globals()['FileShareService'] = FileShareService
19
+ globals()['PageInfo'] = PageInfo
18
20
  from agilicus_api.model.list_file_share_services_response import ListFileShareServicesResponse
19
21
 
20
22