Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.23 KB

GatewayUpdateProducerPostgreSQLOutput.md

File metadata and controls

29 lines (20 loc) · 1.23 KB

GatewayUpdateProducerPostgreSQLOutput

Properties

Name Type Description Notes
producer_details DSProducerDetails [optional]

Example

from akeyless.models.gateway_update_producer_postgre_sql_output import GatewayUpdateProducerPostgreSQLOutput

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

# convert the object into a dict
gateway_update_producer_postgre_sql_output_dict = gateway_update_producer_postgre_sql_output_instance.to_dict()
# create an instance of GatewayUpdateProducerPostgreSQLOutput from a dict
gateway_update_producer_postgre_sql_output_from_dict = GatewayUpdateProducerPostgreSQLOutput.from_dict(gateway_update_producer_postgre_sql_output_dict)

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