@forge/util
2.0.1-experimental-78908582.0.1-experimental-04cc2b9
packages/ari/unified-portable-profile/index.js~
packages/ari/unified-portable-profile/index.jsModified+16−4
Index: package/packages/ari/unified-portable-profile/index.js
===================================================================
--- package/packages/ari/unified-portable-profile/index.js
+++ package/packages/ari/unified-portable-profile/index.js
@@ -285,20 +285,23 @@
var unifiedPortableProfileLinkedAccountAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: UnifiedPortableProfileLinkedAccountAriResourceOwner,
resourceType: UnifiedPortableProfileLinkedAccountAriResourceType,
resourceIdSlug: "{linkedAccountInternalId}",
resourceIdSegmentFormats: {
linkedAccountInternalId: /[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/unified-portable-profile/linked-account/index.ts
var UnifiedPortableProfileLinkedAccountAri = class _UnifiedPortableProfileLinkedAccountAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._linkedAccountInternalId = opts.resourceIdSegmentValues.linkedAccountInternalId;
+ super(opts);
+ this._linkedAccountInternalId = opts.resourceIdSegmentValues.linkedAccountInternalId;
}
get linkedAccountInternalId() {
return this._linkedAccountInternalId;
}
@@ -334,20 +337,23 @@
var unifiedPortableProfileParentAccountAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: UnifiedPortableProfileParentAccountAriResourceOwner,
resourceType: UnifiedPortableProfileParentAccountAriResourceType,
resourceIdSlug: "{parentAccountInternalId}",
resourceIdSegmentFormats: {
parentAccountInternalId: /[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/unified-portable-profile/parent-account/index.ts
var UnifiedPortableProfileParentAccountAri = class _UnifiedPortableProfileParentAccountAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._parentAccountInternalId = opts.resourceIdSegmentValues.parentAccountInternalId;
+ super(opts);
+ this._parentAccountInternalId = opts.resourceIdSegmentValues.parentAccountInternalId;
}
get parentAccountInternalId() {
return this._parentAccountInternalId;
}
@@ -383,20 +389,23 @@
var unifiedPortableProfileUnifiedAccountAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: UnifiedPortableProfileUnifiedAccountAriResourceOwner,
resourceType: UnifiedPortableProfileUnifiedAccountAriResourceType,
resourceIdSlug: "{linkedAccountInternalId}",
resourceIdSegmentFormats: {
linkedAccountInternalId: /[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/unified-portable-profile/unified-account/index.ts
var UnifiedPortableProfileUnifiedAccountAri = class _UnifiedPortableProfileUnifiedAccountAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._linkedAccountInternalId = opts.resourceIdSegmentValues.linkedAccountInternalId;
+ super(opts);
+ this._linkedAccountInternalId = opts.resourceIdSegmentValues.linkedAccountInternalId;
}
get linkedAccountInternalId() {
return this._linkedAccountInternalId;
}
@@ -432,20 +441,23 @@
var unifiedPortableProfileUnifiedProfileAriStaticOpts = {
qualifier: "ari",
platformQualifier: "cloud",
cloudId: new RegExp("^$"),
+ // eslint-disable-line no-useless-escape
resourceOwner: UnifiedPortableProfileUnifiedProfileAriResourceOwner,
resourceType: UnifiedPortableProfileUnifiedProfileAriResourceType,
resourceIdSlug: "{unifiedProfileInternalId}",
resourceIdSegmentFormats: {
unifiedProfileInternalId: /[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/unified-portable-profile/unified-profile/index.ts
var UnifiedPortableProfileUnifiedProfileAri = class _UnifiedPortableProfileUnifiedProfileAri extends RegisteredAri {
constructor(opts) {
- super(opts), this._unifiedProfileInternalId = opts.resourceIdSegmentValues.unifiedProfileInternalId;
+ super(opts);
+ this._unifiedProfileInternalId = opts.resourceIdSegmentValues.unifiedProfileInternalId;
}
get unifiedProfileInternalId() {
return this._unifiedProfileInternalId;
}