Skip to content

Latest commit

 

History

History
35 lines (27 loc) · 2.17 KB

ApiV1IntegrationIntegrationIdPatchRequest.md

File metadata and controls

35 lines (27 loc) · 2.17 KB

ApiV1IntegrationIntegrationIdPatchRequest

Properties

Name Type Description Notes
app str The name of the external integration providers app entity that you want to sync secrets with. Used in Netlify, GitHub, Vercel integrations. [optional]
app_id str The ID of the external integration providers app entity that you want to sync secrets with. Used in Netlify, GitHub, Vercel integrations. [optional]
is_active bool Whether the integration should be active or disabled.
secret_path str The path of the secrets to sync secrets from. [optional] [default to '/']
target_environment str The target environment of the integration provider. Used in cloudflare pages, TeamCity, Gitlab integrations.
owner str External integration providers service entity owner. Used in Github.
environment str The environment to sync secrets from.
metadata ApiV1IntegrationIntegrationIdPatchRequestMetadata [optional]

Example

from infisicalapi_client.models.api_v1_integration_integration_id_patch_request import ApiV1IntegrationIntegrationIdPatchRequest

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

# convert the object into a dict
api_v1_integration_integration_id_patch_request_dict = api_v1_integration_integration_id_patch_request_instance.to_dict()
# create an instance of ApiV1IntegrationIntegrationIdPatchRequest from a dict
api_v1_integration_integration_id_patch_request_from_dict = ApiV1IntegrationIntegrationIdPatchRequest.from_dict(api_v1_integration_integration_id_patch_request_dict)

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