@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/graph/devops-component/index.js~
packages/ari/graph/devops-component/index.jsModified+4−1
Index: package/packages/ari/graph/devops-component/index.js
===================================================================
--- package/packages/ari/graph/devops-component/index.js
+++ package/packages/ari/graph/devops-component/index.js
@@ -284,22 +284,25 @@
var graphDevopsComponentAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: GraphDevopsComponentAriResourceOwner,
resourceType: GraphDevopsComponentAriResourceType,
resourceIdSlug: "activation/{activationId}/{devopsComponentId}",
resourceIdSegmentFormats: {
activationId: /[a-zA-Z0-9\-]+/,
// eslint-disable-line no-useless-escape
devopsComponentId: /[!a-zA-Z0-9\-_.~@:;{}=]+(\/[!a-zA-Z0-9\-_.~@:;{}=]+)*/
+ // eslint-disable-line no-useless-escape
}
};
// src/graph/devops-component/index.ts
var GraphDevopsComponentAri = class _GraphDevopsComponentAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._activationId = opts.resourceIdSegmentValues.activationId, this._devopsComponentId = opts.resourceIdSegmentValues.devopsComponentId;
+ super(opts);
+ this._activationId = opts.resourceIdSegmentValues.activationId, this._devopsComponentId = opts.resourceIdSegmentValues.devopsComponentId;
}
get activationId() {
return this._activationId;
}