mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
fix(Venafi TLS Protect Cloud Node): Remove parameter Application Server Type
(#8325)
## Summary Parameter was removed from the API. ## Review / Merge checklist - [x] PR title and summary are descriptive. **Remember, the title automatically goes into the changelog. Use `(no-changelog)` otherwise.** ([conventions](https://github.com/n8n-io/n8n/blob/master/.github/pull_request_title_conventions.md))
This commit is contained in:
parent
dac0ddaf16
commit
e3cedf7db0
|
@ -86,24 +86,6 @@ export const certificateRequestFields: INodeProperties[] = [
|
||||||
},
|
},
|
||||||
default: false,
|
default: false,
|
||||||
},
|
},
|
||||||
{
|
|
||||||
displayName: 'Application Server Type Name or ID',
|
|
||||||
name: 'applicationServerTypeId',
|
|
||||||
type: 'options',
|
|
||||||
description:
|
|
||||||
'Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code-examples/expressions/">expression</a>',
|
|
||||||
typeOptions: {
|
|
||||||
loadOptionsMethod: 'getApplicationServerTypes',
|
|
||||||
},
|
|
||||||
displayOptions: {
|
|
||||||
show: {
|
|
||||||
operation: ['create'],
|
|
||||||
resource: ['certificateRequest'],
|
|
||||||
generateCsr: [true],
|
|
||||||
},
|
|
||||||
},
|
|
||||||
default: '',
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
displayName: 'Common Name',
|
displayName: 'Common Name',
|
||||||
name: 'commonName',
|
name: 'commonName',
|
||||||
|
|
|
@ -88,23 +88,6 @@ export class VenafiTlsProtectCloud implements INodeType {
|
||||||
}
|
}
|
||||||
return returnData;
|
return returnData;
|
||||||
},
|
},
|
||||||
async getApplicationServerTypes(
|
|
||||||
this: ILoadOptionsFunctions,
|
|
||||||
): Promise<INodePropertyOptions[]> {
|
|
||||||
const returnData: INodePropertyOptions[] = [];
|
|
||||||
const { applicationServerTypes } = await venafiApiRequest.call(
|
|
||||||
this,
|
|
||||||
'GET',
|
|
||||||
'/outagedetection/v1/applicationservertypes',
|
|
||||||
);
|
|
||||||
for (const applicationServerType of applicationServerTypes) {
|
|
||||||
returnData.push({
|
|
||||||
name: applicationServerType.platformName,
|
|
||||||
value: applicationServerType.id,
|
|
||||||
});
|
|
||||||
}
|
|
||||||
return returnData;
|
|
||||||
},
|
|
||||||
async getCertificateIssuingTemplates(
|
async getCertificateIssuingTemplates(
|
||||||
this: ILoadOptionsFunctions,
|
this: ILoadOptionsFunctions,
|
||||||
): Promise<INodePropertyOptions[]> {
|
): Promise<INodePropertyOptions[]> {
|
||||||
|
@ -157,10 +140,6 @@ export class VenafiTlsProtectCloud implements INodeType {
|
||||||
};
|
};
|
||||||
|
|
||||||
if (generateCsr) {
|
if (generateCsr) {
|
||||||
const applicationServerTypeId = this.getNodeParameter(
|
|
||||||
'applicationServerTypeId',
|
|
||||||
i,
|
|
||||||
) as string;
|
|
||||||
const commonName = this.getNodeParameter('commonName', i) as string;
|
const commonName = this.getNodeParameter('commonName', i) as string;
|
||||||
const additionalFields = this.getNodeParameter('additionalFields', i);
|
const additionalFields = this.getNodeParameter('additionalFields', i);
|
||||||
|
|
||||||
|
@ -169,7 +148,6 @@ export class VenafiTlsProtectCloud implements INodeType {
|
||||||
const subjectAltNamesByType: ISubjectAltNamesByType = {};
|
const subjectAltNamesByType: ISubjectAltNamesByType = {};
|
||||||
|
|
||||||
body.isVaaSGenerated = true;
|
body.isVaaSGenerated = true;
|
||||||
body.applicationServerTypeId = applicationServerTypeId;
|
|
||||||
|
|
||||||
csrAttributes.commonName = commonName;
|
csrAttributes.commonName = commonName;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue