Skip to content

Latest commit

 

History

History
46 lines (37 loc) · 2.57 KB

DynamicSecretCreateGithub.md

File metadata and controls

46 lines (37 loc) · 2.57 KB

DynamicSecretCreateGithub

dynamicSecretCreateGithub is a command that creates github 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]
github_app_id int Github app id [optional]
github_app_private_key str App private key [optional]
github_base_url str Base URL [optional] [default to 'https://api.github.com/']
installation_id int GitHub application installation id [optional]
installation_organization str Optional, mutually exclusive with installation id, GitHub organization name [optional]
installation_repository str Optional, mutually exclusive with installation id, GitHub repository '<owner>/<repo-name>' [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
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]
token_permissions List[str] Optional - installation token's allowed permissions [optional]
token_repositories List[str] Optional - installation token's allowed repositories [optional]
token_ttl str Token TTL [optional] [default to '60m']
uid_token str The universal identity token, Required only for universal_identity authentication [optional]

Example

from akeyless.models.dynamic_secret_create_github import DynamicSecretCreateGithub

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

# convert the object into a dict
dynamic_secret_create_github_dict = dynamic_secret_create_github_instance.to_dict()
# create an instance of DynamicSecretCreateGithub from a dict
dynamic_secret_create_github_from_dict = DynamicSecretCreateGithub.from_dict(dynamic_secret_create_github_dict)

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