@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/opsgenie/incident-status-update/index.js~
packages/ari/opsgenie/incident-status-update/index.jsModified+4−1
Index: package/packages/ari/opsgenie/incident-status-update/index.js
===================================================================
--- package/packages/ari/opsgenie/incident-status-update/index.js
+++ package/packages/ari/opsgenie/incident-status-update/index.js
@@ -284,22 +284,25 @@
var opsgenieIncidentStatusUpdateAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: OpsgenieIncidentStatusUpdateAriResourceOwner,
resourceType: OpsgenieIncidentStatusUpdateAriResourceType,
resourceIdSlug: "{workspaceId}/{incidentStatusUpdateId}",
resourceIdSegmentFormats: {
workspaceId: /[a-zA-Z0-9\-]+/,
// eslint-disable-line no-useless-escape
incidentStatusUpdateId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
+ // eslint-disable-line no-useless-escape
}
};
// src/opsgenie/incident-status-update/index.ts
var OpsgenieIncidentStatusUpdateAri = class _OpsgenieIncidentStatusUpdateAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._incidentStatusUpdateId = opts.resourceIdSegmentValues.incidentStatusUpdateId;
+ super(opts);
+ this._workspaceId = opts.resourceIdSegmentValues.workspaceId, this._incidentStatusUpdateId = opts.resourceIdSegmentValues.incidentStatusUpdateId;
}
get workspaceId() {
return this._workspaceId;
}