Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.44 KB

DynamicSecretUpdateDockerhub.md

File metadata and controls

43 lines (34 loc) · 2.44 KB

DynamicSecretUpdateDockerhub

dynamicSecretUpdateDockerhub is a command that updates a DOCKERHUB dynamic secret

Properties

Name Type Description Notes
delete_protection str Protection from accidental deletion of this object [true/false] [optional]
description str Description of the object [optional]
dockerhub_password str DockerhubPassword is either the user's password access token to manage the repository [optional]
dockerhub_token_scopes str Access token scopes list (comma-separated) to give the dynamic secret valid options are in "repo:admin", "repo:write", "repo:read", "repo:public_read" [optional]
dockerhub_username str DockerhubUsername is the name of the user in dockerhub [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
new_name str Dynamic secret name [optional]
producer_encryption_key_name str Dynamic producer encryption key [optional]
tags List[str] Add tags attached to this object [optional]
target_name str Target name [optional]
token str Authentication token (see `/auth` and `/configure`) [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]
user_ttl str User TTL [optional] [default to '60m']

Example

from akeyless.models.dynamic_secret_update_dockerhub import DynamicSecretUpdateDockerhub

# TODO update the JSON string below
json = "{}"
# create an instance of DynamicSecretUpdateDockerhub from a JSON string
dynamic_secret_update_dockerhub_instance = DynamicSecretUpdateDockerhub.from_json(json)
# print the JSON string representation of the object
print(DynamicSecretUpdateDockerhub.to_json())

# convert the object into a dict
dynamic_secret_update_dockerhub_dict = dynamic_secret_update_dockerhub_instance.to_dict()
# create an instance of DynamicSecretUpdateDockerhub from a dict
dynamic_secret_update_dockerhub_from_dict = DynamicSecretUpdateDockerhub.from_dict(dynamic_secret_update_dockerhub_dict)

[Back to Model list] [Back to API list] [Back to README]