@@ -55,11 +55,11 @@ async def create_secret(
55
55
) -> Secret :
56
56
"""
57
57
Create a Secret containing no versions
58
- :param region: Region to target. If none is passed will use default region from the config
59
- :param project_id: ID of the project containing the Secret
60
- :param name: Name of the Secret
61
- :param tags: List of tags associated to this Secret
62
- :param description: Description of the Secret
58
+ :param region: Region to target. If none is passed will use default region from the config.
59
+ :param project_id: ID of the project containing the Secret.
60
+ :param name: Name of the Secret.
61
+ :param tags: List of tags associated to this Secret.
62
+ :param description: Description of the Secret.
63
63
:return: :class:`Secret <Secret>`
64
64
65
65
Usage:
@@ -98,8 +98,8 @@ async def get_secret(
98
98
) -> Secret :
99
99
"""
100
100
Get metadata of a Secret
101
- :param region: Region to target. If none is passed will use default region from the config
102
- :param secret_id: ID of the Secret
101
+ :param region: Region to target. If none is passed will use default region from the config.
102
+ :param secret_id: ID of the Secret.
103
103
:return: :class:`Secret <Secret>`
104
104
105
105
Usage:
@@ -129,8 +129,8 @@ async def get_secret_by_name(
129
129
) -> Secret :
130
130
"""
131
131
Get metadata of a Secret
132
- :param region: Region to target. If none is passed will use default region from the config
133
- :param secret_name: Name of the Secret
132
+ :param region: Region to target. If none is passed will use default region from the config.
133
+ :param secret_name: Name of the Secret.
134
134
:return: :class:`Secret <Secret>`
135
135
136
136
Usage:
@@ -163,11 +163,11 @@ async def update_secret(
163
163
) -> Secret :
164
164
"""
165
165
Update metadata of a Secret
166
- :param region: Region to target. If none is passed will use default region from the config
167
- :param secret_id: ID of the Secret
168
- :param name: New name of the Secret (optional)
169
- :param tags: New list of tags associated to this Secret (optional)
170
- :param description: Description of the Secret
166
+ :param region: Region to target. If none is passed will use default region from the config.
167
+ :param secret_id: ID of the Secret.
168
+ :param name: New name of the Secret (optional).
169
+ :param tags: New list of tags associated to this Secret (optional).
170
+ :param description: Description of the Secret.
171
171
:return: :class:`Secret <Secret>`
172
172
173
173
Usage:
@@ -213,11 +213,11 @@ async def list_secrets(
213
213
) -> ListSecretsResponse :
214
214
"""
215
215
List Secrets
216
- :param region: Region to target. If none is passed will use default region from the config
217
- :param organization_id: ID of an organization to filter on (optional)
218
- :param project_id: ID of a project to filter on (optional)
219
- :param name: Secret name to filter on (optional)
220
- :param tags: List of tags to filter on (optional)
216
+ :param region: Region to target. If none is passed will use default region from the config.
217
+ :param organization_id: ID of an organization to filter on (optional).
218
+ :param project_id: ID of a project to filter on (optional).
219
+ :param name: Secret name to filter on (optional).
220
+ :param tags: List of tags to filter on (optional).
221
221
:param order_by:
222
222
:param page:
223
223
:param page_size:
@@ -265,11 +265,11 @@ async def list_secrets_all(
265
265
) -> List [Secret ]:
266
266
"""
267
267
List Secrets
268
- :param region: Region to target. If none is passed will use default region from the config
269
- :param organization_id: ID of an organization to filter on (optional)
270
- :param project_id: ID of a project to filter on (optional)
271
- :param name: Secret name to filter on (optional)
272
- :param tags: List of tags to filter on (optional)
268
+ :param region: Region to target. If none is passed will use default region from the config.
269
+ :param organization_id: ID of an organization to filter on (optional).
270
+ :param project_id: ID of a project to filter on (optional).
271
+ :param name: Secret name to filter on (optional).
272
+ :param tags: List of tags to filter on (optional).
273
273
:param order_by:
274
274
:param page:
275
275
:param page_size:
@@ -305,8 +305,8 @@ async def delete_secret(
305
305
) -> Optional [None ]:
306
306
"""
307
307
Delete a secret
308
- :param region: Region to target. If none is passed will use default region from the config
309
- :param secret_id: ID of the Secret
308
+ :param region: Region to target. If none is passed will use default region from the config.
309
+ :param secret_id: ID of the Secret.
310
310
311
311
Usage:
312
312
::
@@ -337,10 +337,10 @@ async def create_secret_version(
337
337
) -> SecretVersion :
338
338
"""
339
339
Create a SecretVersion
340
- :param region: Region to target. If none is passed will use default region from the config
341
- :param secret_id: ID of the Secret
342
- :param data: The base64-encoded secret payload of the SecretVersion
343
- :param description: Description of the SecretVersion
340
+ :param region: Region to target. If none is passed will use default region from the config.
341
+ :param secret_id: ID of the Secret.
342
+ :param data: The base64-encoded secret payload of the SecretVersion.
343
+ :param description: Description of the SecretVersion.
344
344
:return: :class:`SecretVersion <SecretVersion>`
345
345
346
346
Usage:
@@ -383,9 +383,9 @@ async def get_secret_version(
383
383
) -> SecretVersion :
384
384
"""
385
385
Get metadata of a SecretVersion
386
- :param region: Region to target. If none is passed will use default region from the config
387
- :param secret_id: ID of the Secret
388
- :param revision: Revision of the SecretVersion (may be a number or "latest")
386
+ :param region: Region to target. If none is passed will use default region from the config.
387
+ :param secret_id: ID of the Secret.
388
+ :param revision: Revision of the SecretVersion (may be a number or "latest").
389
389
:return: :class:`SecretVersion <SecretVersion>`
390
390
391
391
Usage:
@@ -420,9 +420,9 @@ async def get_secret_version_by_name(
420
420
) -> SecretVersion :
421
421
"""
422
422
Get metadata of a SecretVersion
423
- :param region: Region to target. If none is passed will use default region from the config
424
- :param secret_name: Name of the Secret
425
- :param revision: Revision of the SecretVersion (may be a number or "latest")
423
+ :param region: Region to target. If none is passed will use default region from the config.
424
+ :param secret_name: Name of the Secret.
425
+ :param revision: Revision of the SecretVersion (may be a number or "latest").
426
426
:return: :class:`SecretVersion <SecretVersion>`
427
427
428
428
Usage:
@@ -458,10 +458,10 @@ async def update_secret_version(
458
458
) -> SecretVersion :
459
459
"""
460
460
Update metadata of a SecretVersion
461
- :param region: Region to target. If none is passed will use default region from the config
462
- :param secret_id: ID of the Secret
463
- :param revision: Revision of the SecretVersion (may be a number or "latest")
464
- :param description: Description of the SecretVersion
461
+ :param region: Region to target. If none is passed will use default region from the config.
462
+ :param secret_id: ID of the Secret.
463
+ :param revision: Revision of the SecretVersion (may be a number or "latest").
464
+ :param description: Description of the SecretVersion.
465
465
:return: :class:`SecretVersion <SecretVersion>`
466
466
467
467
Usage:
@@ -507,11 +507,11 @@ async def list_secret_versions(
507
507
) -> ListSecretVersionsResponse :
508
508
"""
509
509
List versions of a secret, not returning any sensitive data
510
- :param region: Region to target. If none is passed will use default region from the config
511
- :param secret_id: ID of the Secret
510
+ :param region: Region to target. If none is passed will use default region from the config.
511
+ :param secret_id: ID of the Secret.
512
512
:param page:
513
513
:param page_size:
514
- :param status: Filter results by status
514
+ :param status: Filter results by status.
515
515
:return: :class:`ListSecretVersionsResponse <ListSecretVersionsResponse>`
516
516
517
517
Usage:
@@ -549,11 +549,11 @@ async def list_secret_versions_all(
549
549
) -> List [SecretVersion ]:
550
550
"""
551
551
List versions of a secret, not returning any sensitive data
552
- :param region: Region to target. If none is passed will use default region from the config
553
- :param secret_id: ID of the Secret
552
+ :param region: Region to target. If none is passed will use default region from the config.
553
+ :param secret_id: ID of the Secret.
554
554
:param page:
555
555
:param page_size:
556
- :param status: Filter results by status
556
+ :param status: Filter results by status.
557
557
:return: :class:`List[ListSecretVersionsResponse] <List[ListSecretVersionsResponse]>`
558
558
559
559
Usage:
@@ -586,11 +586,11 @@ async def list_secret_versions_by_name(
586
586
) -> ListSecretVersionsResponse :
587
587
"""
588
588
List versions of a secret, not returning any sensitive data
589
- :param region: Region to target. If none is passed will use default region from the config
590
- :param secret_name: Name of the Secret
589
+ :param region: Region to target. If none is passed will use default region from the config.
590
+ :param secret_name: Name of the Secret.
591
591
:param page:
592
592
:param page_size:
593
- :param status: Filter results by status
593
+ :param status: Filter results by status.
594
594
:return: :class:`ListSecretVersionsResponse <ListSecretVersionsResponse>`
595
595
596
596
Usage:
@@ -628,11 +628,11 @@ async def list_secret_versions_by_name_all(
628
628
) -> List [SecretVersion ]:
629
629
"""
630
630
List versions of a secret, not returning any sensitive data
631
- :param region: Region to target. If none is passed will use default region from the config
632
- :param secret_name: Name of the Secret
631
+ :param region: Region to target. If none is passed will use default region from the config.
632
+ :param secret_name: Name of the Secret.
633
633
:param page:
634
634
:param page_size:
635
- :param status: Filter results by status
635
+ :param status: Filter results by status.
636
636
:return: :class:`List[ListSecretVersionsResponse] <List[ListSecretVersionsResponse]>`
637
637
638
638
Usage:
@@ -663,9 +663,9 @@ async def destroy_secret_version(
663
663
) -> SecretVersion :
664
664
"""
665
665
Destroy a SecretVersion, permanently destroying the sensitive data
666
- :param region: Region to target. If none is passed will use default region from the config
667
- :param secret_id: ID of the Secret
668
- :param revision: Revision of the SecretVersion (may be a number or "latest")
666
+ :param region: Region to target. If none is passed will use default region from the config.
667
+ :param secret_id: ID of the Secret.
668
+ :param revision: Revision of the SecretVersion (may be a number or "latest").
669
669
:return: :class:`SecretVersion <SecretVersion>`
670
670
671
671
Usage:
@@ -700,9 +700,9 @@ async def enable_secret_version(
700
700
) -> SecretVersion :
701
701
"""
702
702
Enable a SecretVersion
703
- :param region: Region to target. If none is passed will use default region from the config
704
- :param secret_id: ID of the Secret
705
- :param revision: Revision of the SecretVersion (may be a number or "latest")
703
+ :param region: Region to target. If none is passed will use default region from the config.
704
+ :param secret_id: ID of the Secret.
705
+ :param revision: Revision of the SecretVersion (may be a number or "latest").
706
706
:return: :class:`SecretVersion <SecretVersion>`
707
707
708
708
Usage:
@@ -737,9 +737,9 @@ async def disable_secret_version(
737
737
) -> SecretVersion :
738
738
"""
739
739
Disable a SecretVersion
740
- :param region: Region to target. If none is passed will use default region from the config
741
- :param secret_id: ID of the Secret
742
- :param revision: Revision of the SecretVersion (may be a number or "latest")
740
+ :param region: Region to target. If none is passed will use default region from the config.
741
+ :param secret_id: ID of the Secret.
742
+ :param revision: Revision of the SecretVersion (may be a number or "latest").
743
743
:return: :class:`SecretVersion <SecretVersion>`
744
744
745
745
Usage:
@@ -774,9 +774,9 @@ async def access_secret_version(
774
774
) -> AccessSecretVersionResponse :
775
775
"""
776
776
Access a SecretVersion, returning the sensitive data
777
- :param region: Region to target. If none is passed will use default region from the config
778
- :param secret_id: ID of the Secret
779
- :param revision: Revision of the SecretVersion (may be a number or "latest")
777
+ :param region: Region to target. If none is passed will use default region from the config.
778
+ :param secret_id: ID of the Secret.
779
+ :param revision: Revision of the SecretVersion (may be a number or "latest").
780
780
:return: :class:`AccessSecretVersionResponse <AccessSecretVersionResponse>`
781
781
782
782
Usage:
@@ -811,9 +811,9 @@ async def access_secret_version_by_name(
811
811
) -> AccessSecretVersionResponse :
812
812
"""
813
813
Access a SecretVersion, returning the sensitive data
814
- :param region: Region to target. If none is passed will use default region from the config
815
- :param secret_name: Name of the Secret
816
- :param revision: Revision of the SecretVersion (may be a number or "latest")
814
+ :param region: Region to target. If none is passed will use default region from the config.
815
+ :param secret_name: Name of the Secret.
816
+ :param revision: Revision of the SecretVersion (may be a number or "latest").
817
817
:return: :class:`AccessSecretVersionResponse <AccessSecretVersionResponse>`
818
818
819
819
Usage:
0 commit comments