Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 2.25 KB

GatewayCreateProducerArtifactory.md

File metadata and controls

43 lines (34 loc) · 2.25 KB

GatewayCreateProducerArtifactory

gatewayCreateProducerArtifactory is a command that creates artifactory producer [Deprecated: Use dynamic-secret-create-artifactory command]

Properties

Name Type Description Notes
artifactory_admin_name str Artifactory Admin Name [optional]
artifactory_admin_pwd str Artifactory Admin password [optional]
artifactory_token_audience str Token Audience
artifactory_token_scope str Token Scope
base_url str Base URL [optional]
delete_protection str Protection from accidental deletion of this object [true/false] [optional]
var_json bool Set output format to JSON [optional] [default to False]
name str Dynamic secret name
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.gateway_create_producer_artifactory import GatewayCreateProducerArtifactory

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

# convert the object into a dict
gateway_create_producer_artifactory_dict = gateway_create_producer_artifactory_instance.to_dict()
# create an instance of GatewayCreateProducerArtifactory from a dict
gateway_create_producer_artifactory_from_dict = GatewayCreateProducerArtifactory.from_dict(gateway_create_producer_artifactory_dict)

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