gatewayStartProducer is a command that starts producer [Deprecated: Use set-item-state command]
Name | Type | Description | Notes |
---|---|---|---|
var_json | bool | Set output format to JSON | [optional] [default to False] |
name | str | Dynamic secret name | |
token | str | Authentication token (see `/auth` and `/configure`) | [optional] |
uid_token | str | The universal identity token, Required only for universal_identity authentication | [optional] |
from akeyless.models.gateway_start_producer import GatewayStartProducer
# TODO update the JSON string below
json = "{}"
# create an instance of GatewayStartProducer from a JSON string
gateway_start_producer_instance = GatewayStartProducer.from_json(json)
# print the JSON string representation of the object
print(GatewayStartProducer.to_json())
# convert the object into a dict
gateway_start_producer_dict = gateway_start_producer_instance.to_dict()
# create an instance of GatewayStartProducer from a dict
gateway_start_producer_from_dict = GatewayStartProducer.from_dict(gateway_start_producer_dict)