@aurahelper/xml-definitions
Version:
Powerfull Libraries to get the XML Definitions of ALL XML Salesforce Metadata Files. Support All API Versions up to API 53.0. You can get the definition of one or more XML files for a specific version of Salesforce. For Example: You can get the XML Defini
53 lines • 2.29 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InboundNetworkConnection = void 0;
var core_1 = require("@aurahelper/core");
exports.InboundNetworkConnection = {
connectionType: new core_1.EnumXMLField('connectionType', 'Connection Type')
.setMinApi(49)
.setEditable()
.setRequired()
.addEnumValue('AWS Private Link', 'AwsPrivateLink'),
description: new core_1.StringXMLField('description', 'Description')
.setMinApi(49)
.setEditable()
.setRequired()
.setMaxLength(255),
inboundNetworkConnProperties: new core_1.ArrayXMLField('inboundNetworkConnProperties', 'Inbound Network Conn Properties')
.setMinApi(49)
.setEditable()
.setRequired()
.setFieldKey('propertyName')
.addField('propertyName', new core_1.EnumXMLField('propertyName', 'Property Name')
.setEditable()
.setRequired()
.addEnumValue('AWS Virtual Private Cloud Endpoint Id', 'AwsVpcEndpointId')
.addEnumValue('Region', 'Region')
.addEnumValue('Source Ip Ranges', 'SourceIpRanges'))
.addField('propertyValue', new core_1.StringXMLField('propertyValue', 'Property Value')
.setEditable()
.setRequired()
.setJSON()),
isActive: new core_1.BooleanXMLField('isActive', 'Is Active')
.setMinApi(49)
.setEditable()
.setRequired()
.setDefaultValue(false),
label: new core_1.StringXMLField('label', 'Label')
.setMinApi(49)
.setEditable()
.setRequired(),
status: new core_1.EnumXMLField('status', 'Status')
.setMinApi(49)
.setEditable()
.setRequired()
.addEnumValue('Unprovisioned', 'Unprovisioned')
.addEnumValue('Allocating', 'Allocating')
.addEnumValue('Pending Acceptance', 'PendingAcceptance')
.addEnumValue('Pending Activation', 'PendingActivation')
.addEnumValue('Rejected Remotely', 'RejectedRemotely')
.addEnumValue('Deleted Remotely', 'DeletedRemotely')
.addEnumValue('Teardown In Progress', 'TeardownInProgress')
.addEnumValue('Ready', 'Ready')
};
//# sourceMappingURL=inboundNetworkConnection.js.map