@forge/util
2.0.12.0.1-experimental-7890858
packages/ari/identity/auth-policy/index.js~
packages/ari/identity/auth-policy/index.jsModified+1−4
Index: package/packages/ari/identity/auth-policy/index.js
===================================================================
--- package/packages/ari/identity/auth-policy/index.js
+++ package/packages/ari/identity/auth-policy/index.js
@@ -284,23 +284,20 @@
var identityAuthPolicyAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
- // eslint-disable-line no-useless-escape
resourceOwner: IdentityAuthPolicyAriResourceOwner,
resourceType: IdentityAuthPolicyAriResourceType,
resourceIdSlug: "{authPolicyId}",
resourceIdSegmentFormats: {
authPolicyId: /[0-9a-f]{8}-[0-9a-f]{4}-[0-5][0-9a-f]{3}-[089ab][0-9a-f]{3}-[0-9a-f]{12}/
- // eslint-disable-line no-useless-escape
}
};
// src/identity/auth-policy/index.ts
var IdentityAuthPolicyAri = class _IdentityAuthPolicyAri extends RegisteredAri {
constructor(opts) {
- super(opts);
- this._authPolicyId = opts.resourceIdSegmentValues.authPolicyId;
+ super(opts), this._authPolicyId = opts.resourceIdSegmentValues.authPolicyId;
}
get authPolicyId() {
return this._authPolicyId;
}