You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List existing credentials in the specified NATS account. The response contains only the metadata for the credentials, not the credentials themselves, which are only returned after a **Create Credentials** call.
431
432
:param region: Region to target. If none is passed will use default region from the config.
433
+
:param project_id: Include only NATS accounts in this Project.
432
434
:param nats_account_id: Include only credentials for this NATS account.
433
435
:param page: Page number to return.
434
436
:param page_size: Maximum number of credentials to return per page.
List existing credentials in the specified NATS account. The response contains only the metadata for the credentials, not the credentials themselves, which are only returned after a **Create Credentials** call.
474
478
:param region: Region to target. If none is passed will use default region from the config.
479
+
:param project_id: Include only NATS accounts in this Project.
475
480
:param nats_account_id: Include only credentials for this NATS account.
476
481
:param page: Page number to return.
477
482
:param page_size: Maximum number of credentials to return per page.
Copy file name to clipboardExpand all lines: scaleway/scaleway/mnq/v1beta1/api.py
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -420,6 +420,7 @@ def list_nats_credentials(
420
420
self,
421
421
*,
422
422
region: Optional[Region] =None,
423
+
project_id: Optional[str] =None,
423
424
nats_account_id: Optional[str] =None,
424
425
page: Optional[int] =None,
425
426
page_size: Optional[int] =None,
@@ -429,6 +430,7 @@ def list_nats_credentials(
429
430
List NATS credentials.
430
431
List existing credentials in the specified NATS account. The response contains only the metadata for the credentials, not the credentials themselves, which are only returned after a **Create Credentials** call.
431
432
:param region: Region to target. If none is passed will use default region from the config.
433
+
:param project_id: Include only NATS accounts in this Project.
432
434
:param nats_account_id: Include only credentials for this NATS account.
433
435
:param page: Page number to return.
434
436
:param page_size: Maximum number of credentials to return per page.
List existing credentials in the specified NATS account. The response contains only the metadata for the credentials, not the credentials themselves, which are only returned after a **Create Credentials** call.
474
478
:param region: Region to target. If none is passed will use default region from the config.
479
+
:param project_id: Include only NATS accounts in this Project.
475
480
:param nats_account_id: Include only credentials for this NATS account.
476
481
:param page: Page number to return.
477
482
:param page_size: Maximum number of credentials to return per page.
0 commit comments