Skip to content

Latest commit

 

History

History
47 lines (38 loc) · 2.48 KB

DynamicSecretUpdateGitlab.md

File metadata and controls

47 lines (38 loc) · 2.48 KB

DynamicSecretUpdateGitlab

dynamicSecretUpdateGitlab is a command that updates gitlab 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]
gitlab_access_token str Gitlab access token [optional]
gitlab_access_type str Gitlab access token type [project,group]
gitlab_certificate str Gitlab tls certificate (base64 encoded) [optional]
gitlab_role str Gitlab role [optional]
gitlab_token_scopes str Comma-separated list of access token scopes to grant
gitlab_url str Gitlab base url [optional] [default to 'https://gitlab.com/']
group_name str Gitlab group name, required for access-type=group [optional]
installation_organization str Gitlab project name, required for access-type=project [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]
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]
ttl str Access Token TTL [optional]
uid_token str The universal identity token, Required only for universal_identity authentication [optional]

Example

from akeyless.models.dynamic_secret_update_gitlab import DynamicSecretUpdateGitlab

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

# convert the object into a dict
dynamic_secret_update_gitlab_dict = dynamic_secret_update_gitlab_instance.to_dict()
# create an instance of DynamicSecretUpdateGitlab from a dict
dynamic_secret_update_gitlab_from_dict = DynamicSecretUpdateGitlab.from_dict(dynamic_secret_update_gitlab_dict)

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