/**
 * Netlify Node - Version 1
 * Discriminator: resource=deploy, operation=get
 */


interface Credentials {
  netlifyApi: CredentialReference;
}

/** Get a deployment */
export type NetlifyV1DeployGetParams = {
  resource: 'deploy';
  operation: 'get';
/**
 * Enter the Site ID. Choose from the list, or specify an ID using an &lt;a href="https://docs.n8n.io/code/expressions/"&gt;expression&lt;/a&gt;.
 */
    siteId?: string | Expression<string>;
/**
 * Deploy ID
 */
    deployId?: string | Expression<string> | PlaceholderValue;
};

export type NetlifyV1DeployGetNode = {
  type: 'n8n-nodes-base.netlify';
  version: 1;
  credentials?: Credentials;
  config: NodeConfig<NetlifyV1DeployGetParams>;
};