Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.75 KB

ApiV1DynamicSecretsLeasesLeaseIdDeleteRequest.md

File metadata and controls

31 lines (23 loc) · 1.75 KB

ApiV1DynamicSecretsLeasesLeaseIdDeleteRequest

Properties

Name Type Description Notes
project_slug str The slug of the project of the dynamic secret in.
path str The path of the dynamic secret in. [optional] [default to '/']
environment_slug str The slug of the environment of the dynamic secret in.
is_forced bool A boolean flag to delete the the dynamic secret from infisical without trying to remove it from external provider. Used when the dynamic secret got modified externally. [optional] [default to False]

Example

from infisicalapi_client.models.api_v1_dynamic_secrets_leases_lease_id_delete_request import ApiV1DynamicSecretsLeasesLeaseIdDeleteRequest

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

# convert the object into a dict
api_v1_dynamic_secrets_leases_lease_id_delete_request_dict = api_v1_dynamic_secrets_leases_lease_id_delete_request_instance.to_dict()
# create an instance of ApiV1DynamicSecretsLeasesLeaseIdDeleteRequest from a dict
api_v1_dynamic_secrets_leases_lease_id_delete_request_from_dict = ApiV1DynamicSecretsLeasesLeaseIdDeleteRequest.from_dict(api_v1_dynamic_secrets_leases_lease_id_delete_request_dict)

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