@effect-aws/client-organizations 1.1.0 → 1.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Errors/package.json +6 -0
- package/OrganizationsClientInstance/package.json +6 -0
- package/OrganizationsService/package.json +6 -0
- package/OrganizationsServiceConfig/package.json +6 -0
- package/{lib → dist/cjs}/Errors.d.ts +7 -12
- package/dist/cjs/Errors.d.ts.map +1 -0
- package/dist/cjs/Errors.js +55 -0
- package/dist/cjs/Errors.js.map +1 -0
- package/dist/cjs/OrganizationsClientInstance.d.ts +24 -0
- package/dist/cjs/OrganizationsClientInstance.d.ts.map +1 -0
- package/dist/cjs/OrganizationsClientInstance.js +50 -0
- package/dist/cjs/OrganizationsClientInstance.js.map +1 -0
- package/dist/cjs/OrganizationsService.d.ts +261 -0
- package/dist/cjs/OrganizationsService.d.ts.map +1 -0
- package/dist/cjs/OrganizationsService.js +114 -0
- package/dist/cjs/OrganizationsService.js.map +1 -0
- package/dist/cjs/OrganizationsServiceConfig.d.ts +25 -0
- package/dist/cjs/OrganizationsServiceConfig.d.ts.map +1 -0
- package/dist/cjs/OrganizationsServiceConfig.js +35 -0
- package/dist/cjs/OrganizationsServiceConfig.js.map +1 -0
- package/dist/cjs/index.d.ts +39 -0
- package/dist/cjs/index.d.ts.map +1 -0
- package/dist/cjs/index.js +56 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/dts/Errors.d.ts +54 -0
- package/dist/dts/Errors.d.ts.map +1 -0
- package/dist/dts/OrganizationsClientInstance.d.ts +24 -0
- package/dist/dts/OrganizationsClientInstance.d.ts.map +1 -0
- package/dist/dts/OrganizationsService.d.ts +261 -0
- package/dist/dts/OrganizationsService.d.ts.map +1 -0
- package/dist/dts/OrganizationsServiceConfig.d.ts +25 -0
- package/dist/dts/OrganizationsServiceConfig.d.ts.map +1 -0
- package/dist/dts/index.d.ts +39 -0
- package/dist/dts/index.d.ts.map +1 -0
- package/dist/esm/Errors.js +52 -0
- package/dist/esm/Errors.js.map +1 -0
- package/dist/esm/OrganizationsClientInstance.js +23 -0
- package/dist/esm/OrganizationsClientInstance.js.map +1 -0
- package/dist/esm/OrganizationsService.js +87 -0
- package/dist/esm/OrganizationsService.js.map +1 -0
- package/dist/esm/OrganizationsServiceConfig.js +31 -0
- package/dist/esm/OrganizationsServiceConfig.js.map +1 -0
- package/dist/esm/index.js +27 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/esm/package.json +4 -0
- package/package.json +60 -43
- package/src/Errors.ts +154 -0
- package/src/OrganizationsClientInstance.ts +33 -0
- package/src/OrganizationsService.ts +1389 -0
- package/src/OrganizationsServiceConfig.ts +52 -0
- package/src/index.ts +44 -0
- package/CHANGELOG.md +0 -17
- package/docgen.json +0 -8
- package/lib/Errors.js +0 -55
- package/lib/OrganizationsClientInstance.d.ts +0 -31
- package/lib/OrganizationsClientInstance.js +0 -57
- package/lib/OrganizationsClientInstanceConfig.d.ts +0 -23
- package/lib/OrganizationsClientInstanceConfig.js +0 -44
- package/lib/OrganizationsService.d.ts +0 -340
- package/lib/OrganizationsService.js +0 -143
- package/lib/esm/Errors.js +0 -52
- package/lib/esm/OrganizationsClientInstance.js +0 -30
- package/lib/esm/OrganizationsClientInstanceConfig.js +0 -40
- package/lib/esm/OrganizationsService.js +0 -139
- package/lib/esm/index.js +0 -5
- package/lib/index.d.ts +0 -4
- package/lib/index.js +0 -21
- package/project.json +0 -77
- package/vitest.config.ts +0 -3
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.OrganizationsService = exports.makeOrganizationsService = void 0;
|
|
27
|
+
/**
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
*/
|
|
30
|
+
const client_organizations_1 = require("@aws-sdk/client-organizations");
|
|
31
|
+
const commons_1 = require("@effect-aws/commons");
|
|
32
|
+
const effect_1 = require("effect");
|
|
33
|
+
const Errors_js_1 = require("./Errors.js");
|
|
34
|
+
const Instance = __importStar(require("./OrganizationsClientInstance.js"));
|
|
35
|
+
const OrganizationsServiceConfig = __importStar(require("./OrganizationsServiceConfig.js"));
|
|
36
|
+
const commands = {
|
|
37
|
+
AcceptHandshakeCommand: client_organizations_1.AcceptHandshakeCommand,
|
|
38
|
+
AttachPolicyCommand: client_organizations_1.AttachPolicyCommand,
|
|
39
|
+
CancelHandshakeCommand: client_organizations_1.CancelHandshakeCommand,
|
|
40
|
+
CloseAccountCommand: client_organizations_1.CloseAccountCommand,
|
|
41
|
+
CreateAccountCommand: client_organizations_1.CreateAccountCommand,
|
|
42
|
+
CreateGovCloudAccountCommand: client_organizations_1.CreateGovCloudAccountCommand,
|
|
43
|
+
CreateOrganizationCommand: client_organizations_1.CreateOrganizationCommand,
|
|
44
|
+
CreateOrganizationalUnitCommand: client_organizations_1.CreateOrganizationalUnitCommand,
|
|
45
|
+
CreatePolicyCommand: client_organizations_1.CreatePolicyCommand,
|
|
46
|
+
DeclineHandshakeCommand: client_organizations_1.DeclineHandshakeCommand,
|
|
47
|
+
DeleteOrganizationCommand: client_organizations_1.DeleteOrganizationCommand,
|
|
48
|
+
DeleteOrganizationalUnitCommand: client_organizations_1.DeleteOrganizationalUnitCommand,
|
|
49
|
+
DeletePolicyCommand: client_organizations_1.DeletePolicyCommand,
|
|
50
|
+
DeleteResourcePolicyCommand: client_organizations_1.DeleteResourcePolicyCommand,
|
|
51
|
+
DeregisterDelegatedAdministratorCommand: client_organizations_1.DeregisterDelegatedAdministratorCommand,
|
|
52
|
+
DescribeAccountCommand: client_organizations_1.DescribeAccountCommand,
|
|
53
|
+
DescribeCreateAccountStatusCommand: client_organizations_1.DescribeCreateAccountStatusCommand,
|
|
54
|
+
DescribeEffectivePolicyCommand: client_organizations_1.DescribeEffectivePolicyCommand,
|
|
55
|
+
DescribeHandshakeCommand: client_organizations_1.DescribeHandshakeCommand,
|
|
56
|
+
DescribeOrganizationCommand: client_organizations_1.DescribeOrganizationCommand,
|
|
57
|
+
DescribeOrganizationalUnitCommand: client_organizations_1.DescribeOrganizationalUnitCommand,
|
|
58
|
+
DescribePolicyCommand: client_organizations_1.DescribePolicyCommand,
|
|
59
|
+
DescribeResourcePolicyCommand: client_organizations_1.DescribeResourcePolicyCommand,
|
|
60
|
+
DetachPolicyCommand: client_organizations_1.DetachPolicyCommand,
|
|
61
|
+
DisableAWSServiceAccessCommand: client_organizations_1.DisableAWSServiceAccessCommand,
|
|
62
|
+
DisablePolicyTypeCommand: client_organizations_1.DisablePolicyTypeCommand,
|
|
63
|
+
EnableAWSServiceAccessCommand: client_organizations_1.EnableAWSServiceAccessCommand,
|
|
64
|
+
EnableAllFeaturesCommand: client_organizations_1.EnableAllFeaturesCommand,
|
|
65
|
+
EnablePolicyTypeCommand: client_organizations_1.EnablePolicyTypeCommand,
|
|
66
|
+
InviteAccountToOrganizationCommand: client_organizations_1.InviteAccountToOrganizationCommand,
|
|
67
|
+
LeaveOrganizationCommand: client_organizations_1.LeaveOrganizationCommand,
|
|
68
|
+
ListAWSServiceAccessForOrganizationCommand: client_organizations_1.ListAWSServiceAccessForOrganizationCommand,
|
|
69
|
+
ListAccountsCommand: client_organizations_1.ListAccountsCommand,
|
|
70
|
+
ListAccountsForParentCommand: client_organizations_1.ListAccountsForParentCommand,
|
|
71
|
+
ListChildrenCommand: client_organizations_1.ListChildrenCommand,
|
|
72
|
+
ListCreateAccountStatusCommand: client_organizations_1.ListCreateAccountStatusCommand,
|
|
73
|
+
ListDelegatedAdministratorsCommand: client_organizations_1.ListDelegatedAdministratorsCommand,
|
|
74
|
+
ListDelegatedServicesForAccountCommand: client_organizations_1.ListDelegatedServicesForAccountCommand,
|
|
75
|
+
ListHandshakesForAccountCommand: client_organizations_1.ListHandshakesForAccountCommand,
|
|
76
|
+
ListHandshakesForOrganizationCommand: client_organizations_1.ListHandshakesForOrganizationCommand,
|
|
77
|
+
ListOrganizationalUnitsForParentCommand: client_organizations_1.ListOrganizationalUnitsForParentCommand,
|
|
78
|
+
ListParentsCommand: client_organizations_1.ListParentsCommand,
|
|
79
|
+
ListPoliciesCommand: client_organizations_1.ListPoliciesCommand,
|
|
80
|
+
ListPoliciesForTargetCommand: client_organizations_1.ListPoliciesForTargetCommand,
|
|
81
|
+
ListRootsCommand: client_organizations_1.ListRootsCommand,
|
|
82
|
+
ListTagsForResourceCommand: client_organizations_1.ListTagsForResourceCommand,
|
|
83
|
+
ListTargetsForPolicyCommand: client_organizations_1.ListTargetsForPolicyCommand,
|
|
84
|
+
MoveAccountCommand: client_organizations_1.MoveAccountCommand,
|
|
85
|
+
PutResourcePolicyCommand: client_organizations_1.PutResourcePolicyCommand,
|
|
86
|
+
RegisterDelegatedAdministratorCommand: client_organizations_1.RegisterDelegatedAdministratorCommand,
|
|
87
|
+
RemoveAccountFromOrganizationCommand: client_organizations_1.RemoveAccountFromOrganizationCommand,
|
|
88
|
+
TagResourceCommand: client_organizations_1.TagResourceCommand,
|
|
89
|
+
UntagResourceCommand: client_organizations_1.UntagResourceCommand,
|
|
90
|
+
UpdateOrganizationalUnitCommand: client_organizations_1.UpdateOrganizationalUnitCommand,
|
|
91
|
+
UpdatePolicyCommand: client_organizations_1.UpdatePolicyCommand,
|
|
92
|
+
};
|
|
93
|
+
/**
|
|
94
|
+
* @since 1.0.0
|
|
95
|
+
* @category constructors
|
|
96
|
+
*/
|
|
97
|
+
exports.makeOrganizationsService = effect_1.Effect.gen(function* () {
|
|
98
|
+
const client = yield* Instance.OrganizationsClientInstance;
|
|
99
|
+
return commons_1.Service.fromClientAndCommands(client, commands, {
|
|
100
|
+
errorTags: Errors_js_1.AllServiceErrors,
|
|
101
|
+
resolveClientConfig: OrganizationsServiceConfig.toOrganizationsClientConfig,
|
|
102
|
+
});
|
|
103
|
+
});
|
|
104
|
+
/**
|
|
105
|
+
* @since 1.0.0
|
|
106
|
+
* @category models
|
|
107
|
+
*/
|
|
108
|
+
class OrganizationsService extends effect_1.Effect.Tag("@effect-aws/client-organizations/OrganizationsService")() {
|
|
109
|
+
static defaultLayer = effect_1.Layer.effect(this, exports.makeOrganizationsService).pipe(effect_1.Layer.provide(Instance.layer));
|
|
110
|
+
static layer = (config) => effect_1.Layer.effect(this, exports.makeOrganizationsService).pipe(effect_1.Layer.provide(Instance.layer), effect_1.Layer.provide(OrganizationsServiceConfig.setOrganizationsServiceConfig(config)));
|
|
111
|
+
static baseLayer = (evaluate) => effect_1.Layer.effect(this, exports.makeOrganizationsService).pipe(effect_1.Layer.provide(effect_1.Layer.effect(Instance.OrganizationsClientInstance, effect_1.Effect.map(OrganizationsServiceConfig.toOrganizationsClientConfig, evaluate))));
|
|
112
|
+
}
|
|
113
|
+
exports.OrganizationsService = OrganizationsService;
|
|
114
|
+
//# sourceMappingURL=OrganizationsService.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrganizationsService.js","sourceRoot":"","sources":["../../src/OrganizationsService.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,wEAwKuC;AAEvC,iDAA8C;AAC9C,mCAAuC;AAkDvC,2CAA+C;AAC/C,2EAA6D;AAC7D,4FAA8E;AAE9E,MAAM,QAAQ,GAAG;IACf,sBAAsB,EAAtB,6CAAsB;IACtB,mBAAmB,EAAnB,0CAAmB;IACnB,sBAAsB,EAAtB,6CAAsB;IACtB,mBAAmB,EAAnB,0CAAmB;IACnB,oBAAoB,EAApB,2CAAoB;IACpB,4BAA4B,EAA5B,mDAA4B;IAC5B,yBAAyB,EAAzB,gDAAyB;IACzB,+BAA+B,EAA/B,sDAA+B;IAC/B,mBAAmB,EAAnB,0CAAmB;IACnB,uBAAuB,EAAvB,8CAAuB;IACvB,yBAAyB,EAAzB,gDAAyB;IACzB,+BAA+B,EAA/B,sDAA+B;IAC/B,mBAAmB,EAAnB,0CAAmB;IACnB,2BAA2B,EAA3B,kDAA2B;IAC3B,uCAAuC,EAAvC,8DAAuC;IACvC,sBAAsB,EAAtB,6CAAsB;IACtB,kCAAkC,EAAlC,yDAAkC;IAClC,8BAA8B,EAA9B,qDAA8B;IAC9B,wBAAwB,EAAxB,+CAAwB;IACxB,2BAA2B,EAA3B,kDAA2B;IAC3B,iCAAiC,EAAjC,wDAAiC;IACjC,qBAAqB,EAArB,4CAAqB;IACrB,6BAA6B,EAA7B,oDAA6B;IAC7B,mBAAmB,EAAnB,0CAAmB;IACnB,8BAA8B,EAA9B,qDAA8B;IAC9B,wBAAwB,EAAxB,+CAAwB;IACxB,6BAA6B,EAA7B,oDAA6B;IAC7B,wBAAwB,EAAxB,+CAAwB;IACxB,uBAAuB,EAAvB,8CAAuB;IACvB,kCAAkC,EAAlC,yDAAkC;IAClC,wBAAwB,EAAxB,+CAAwB;IACxB,0CAA0C,EAA1C,iEAA0C;IAC1C,mBAAmB,EAAnB,0CAAmB;IACnB,4BAA4B,EAA5B,mDAA4B;IAC5B,mBAAmB,EAAnB,0CAAmB;IACnB,8BAA8B,EAA9B,qDAA8B;IAC9B,kCAAkC,EAAlC,yDAAkC;IAClC,sCAAsC,EAAtC,6DAAsC;IACtC,+BAA+B,EAA/B,sDAA+B;IAC/B,oCAAoC,EAApC,2DAAoC;IACpC,uCAAuC,EAAvC,8DAAuC;IACvC,kBAAkB,EAAlB,yCAAkB;IAClB,mBAAmB,EAAnB,0CAAmB;IACnB,4BAA4B,EAA5B,mDAA4B;IAC5B,gBAAgB,EAAhB,uCAAgB;IAChB,0BAA0B,EAA1B,iDAA0B;IAC1B,2BAA2B,EAA3B,kDAA2B;IAC3B,kBAAkB,EAAlB,yCAAkB;IAClB,wBAAwB,EAAxB,+CAAwB;IACxB,qCAAqC,EAArC,4DAAqC;IACrC,oCAAoC,EAApC,2DAAoC;IACpC,kBAAkB,EAAlB,yCAAkB;IAClB,oBAAoB,EAApB,2CAAoB;IACpB,+BAA+B,EAA/B,sDAA+B;IAC/B,mBAAmB,EAAnB,0CAAmB;CACpB,CAAC;AA0hCF;;;GAGG;AACU,QAAA,wBAAwB,GAAG,eAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;IAC1D,MAAM,MAAM,GAAG,KAAK,CAAC,CAAC,QAAQ,CAAC,2BAA2B,CAAC;IAE3D,OAAO,iBAAO,CAAC,qBAAqB,CAClC,MAAM,EACN,QAAQ,EACR;QACE,SAAS,EAAE,4BAAgB;QAC3B,mBAAmB,EAAE,0BAA0B,CAAC,2BAA2B;KAC5E,CACF,CAAC;AACJ,CAAC,CAAC,CAAC;AAEH;;;GAGG;AACH,MAAa,oBAAqB,SAAQ,eAAM,CAAC,GAAG,CAAC,uDAAuD,CAAC,EAG1G;IACD,MAAM,CAAU,YAAY,GAAG,cAAK,CAAC,MAAM,CAAC,IAAI,EAAE,gCAAwB,CAAC,CAAC,IAAI,CAAC,cAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC,CAAC;IAChH,MAAM,CAAU,KAAK,GAAG,CAAC,MAAmC,EAAE,EAAE,CAC9D,cAAK,CAAC,MAAM,CAAC,IAAI,EAAE,gCAAwB,CAAC,CAAC,IAAI,CAC/C,cAAK,CAAC,OAAO,CAAC,QAAQ,CAAC,KAAK,CAAC,EAC7B,cAAK,CAAC,OAAO,CAAC,0BAA0B,CAAC,6BAA6B,CAAC,MAAM,CAAC,CAAC,CAChF,CAAC;IACJ,MAAM,CAAU,SAAS,GAAG,CAC1B,QAA2E,EAC3E,EAAE,CACF,cAAK,CAAC,MAAM,CAAC,IAAI,EAAE,gCAAwB,CAAC,CAAC,IAAI,CAC/C,cAAK,CAAC,OAAO,CACX,cAAK,CAAC,MAAM,CACV,QAAQ,CAAC,2BAA2B,EACpC,eAAM,CAAC,GAAG,CAAC,0BAA0B,CAAC,2BAA2B,EAAE,QAAQ,CAAC,CAC7E,CACF,CACF,CAAC;;AApBN,oDAqBC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import type { OrganizationsClientConfig } from "@aws-sdk/client-organizations";
|
|
5
|
+
import { Effect, Layer } from "effect";
|
|
6
|
+
import type { OrganizationsService } from "./OrganizationsService.js";
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category organizations service config
|
|
10
|
+
*/
|
|
11
|
+
export declare const withOrganizationsServiceConfig: {
|
|
12
|
+
(config: OrganizationsService.Config): <A, E, R>(effect: Effect.Effect<A, E, R>) => Effect.Effect<A, E, R>;
|
|
13
|
+
<A, E, R>(effect: Effect.Effect<A, E, R>, config: OrganizationsService.Config): Effect.Effect<A, E, R>;
|
|
14
|
+
};
|
|
15
|
+
/**
|
|
16
|
+
* @since 1.0.0
|
|
17
|
+
* @category organizations service config
|
|
18
|
+
*/
|
|
19
|
+
export declare const setOrganizationsServiceConfig: (config: OrganizationsService.Config) => Layer.Layer<never, never, never>;
|
|
20
|
+
/**
|
|
21
|
+
* @since 1.0.0
|
|
22
|
+
* @category adapters
|
|
23
|
+
*/
|
|
24
|
+
export declare const toOrganizationsClientConfig: Effect.Effect<OrganizationsClientConfig>;
|
|
25
|
+
//# sourceMappingURL=OrganizationsServiceConfig.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrganizationsServiceConfig.d.ts","sourceRoot":"","sources":["../../src/OrganizationsServiceConfig.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,KAAK,EAAE,yBAAyB,EAAE,MAAM,+BAA+B,CAAC;AAE/E,OAAO,EAAE,MAAM,EAAY,KAAK,EAAE,MAAM,QAAQ,CAAC;AAGjD,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAWtE;;;GAGG;AACH,eAAO,MAAM,8BAA8B,EAAE;IAC3C,CAAC,MAAM,EAAE,oBAAoB,CAAC,MAAM,GAAG,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,KAAK,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;IAC3G,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,EAAE,MAAM,EAAE,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,EAAE,MAAM,EAAE,oBAAoB,CAAC,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC,CAAC;CAKxG,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,6BAA6B,WAAY,qBAAqB,MAAM,qCACjB,CAAC;AAEjE;;;GAGG;AACH,eAAO,MAAM,2BAA2B,EAAE,MAAM,CAAC,MAAM,CAAC,yBAAyB,CAQ/E,CAAC"}
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.toOrganizationsClientConfig = exports.setOrganizationsServiceConfig = exports.withOrganizationsServiceConfig = void 0;
|
|
4
|
+
const commons_1 = require("@effect-aws/commons");
|
|
5
|
+
const effect_1 = require("effect");
|
|
6
|
+
const Function_1 = require("effect/Function");
|
|
7
|
+
const GlobalValue_1 = require("effect/GlobalValue");
|
|
8
|
+
/**
|
|
9
|
+
* @since 1.0.0
|
|
10
|
+
* @category organizations service config
|
|
11
|
+
*/
|
|
12
|
+
const currentOrganizationsServiceConfig = (0, GlobalValue_1.globalValue)("@effect-aws/client-organizations/currentOrganizationsServiceConfig", () => effect_1.FiberRef.unsafeMake({}));
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
* @category organizations service config
|
|
16
|
+
*/
|
|
17
|
+
exports.withOrganizationsServiceConfig = (0, Function_1.dual)(2, (effect, config) => effect_1.Effect.locally(effect, currentOrganizationsServiceConfig, config));
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category organizations service config
|
|
21
|
+
*/
|
|
22
|
+
const setOrganizationsServiceConfig = (config) => effect_1.Layer.locallyScoped(currentOrganizationsServiceConfig, config);
|
|
23
|
+
exports.setOrganizationsServiceConfig = setOrganizationsServiceConfig;
|
|
24
|
+
/**
|
|
25
|
+
* @since 1.0.0
|
|
26
|
+
* @category adapters
|
|
27
|
+
*/
|
|
28
|
+
exports.toOrganizationsClientConfig = effect_1.Effect.gen(function* () {
|
|
29
|
+
const { logger: serviceLogger, ...config } = yield* effect_1.FiberRef.get(currentOrganizationsServiceConfig);
|
|
30
|
+
const logger = serviceLogger === true
|
|
31
|
+
? yield* commons_1.ServiceLogger.toClientLogger(commons_1.ServiceLogger.defaultServiceLogger)
|
|
32
|
+
: (serviceLogger ? yield* commons_1.ServiceLogger.toClientLogger(commons_1.ServiceLogger.make(serviceLogger)) : undefined);
|
|
33
|
+
return { logger, ...config };
|
|
34
|
+
});
|
|
35
|
+
//# sourceMappingURL=OrganizationsServiceConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrganizationsServiceConfig.js","sourceRoot":"","sources":["../../src/OrganizationsServiceConfig.ts"],"names":[],"mappings":";;;AAIA,iDAAoD;AACpD,mCAAiD;AACjD,8CAAuC;AACvC,oDAAiD;AAGjD;;;GAGG;AACH,MAAM,iCAAiC,GAAG,IAAA,yBAAW,EACnD,oEAAoE,EACpE,GAAG,EAAE,CAAC,iBAAQ,CAAC,UAAU,CAA8B,EAAE,CAAC,CAC3D,CAAC;AAEF;;;GAGG;AACU,QAAA,8BAA8B,GAGvC,IAAA,eAAI,EACN,CAAC,EACD,CAAU,MAA8B,EAAE,MAAmC,EAA0B,EAAE,CACvG,eAAM,CAAC,OAAO,CAAC,MAAM,EAAE,iCAAiC,EAAE,MAAM,CAAC,CACpE,CAAC;AAEF;;;GAGG;AACI,MAAM,6BAA6B,GAAG,CAAC,MAAmC,EAAE,EAAE,CACnF,cAAK,CAAC,aAAa,CAAC,iCAAiC,EAAE,MAAM,CAAC,CAAC;AADpD,QAAA,6BAA6B,iCACuB;AAEjE;;;GAGG;AACU,QAAA,2BAA2B,GAA6C,eAAM,CAAC,GAAG,CAAC,QAAQ,CAAC;IACvG,MAAM,EAAE,MAAM,EAAE,aAAa,EAAE,GAAG,MAAM,EAAE,GAAG,KAAK,CAAC,CAAC,iBAAQ,CAAC,GAAG,CAAC,iCAAiC,CAAC,CAAC;IAEpG,MAAM,MAAM,GAAG,aAAa,KAAK,IAAI;QACnC,CAAC,CAAC,KAAK,CAAC,CAAC,uBAAa,CAAC,cAAc,CAAC,uBAAa,CAAC,oBAAoB,CAAC;QACzE,CAAC,CAAC,CAAC,aAAa,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC,uBAAa,CAAC,cAAc,CAAC,uBAAa,CAAC,IAAI,CAAC,aAAa,CAAC,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC,CAAC;IAEzG,OAAO,EAAE,MAAM,EAAE,GAAG,MAAM,EAAE,CAAC;AAC/B,CAAC,CAAC,CAAC"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { OrganizationsService } from "./OrganizationsService.js";
|
|
5
|
+
/**
|
|
6
|
+
* @since 1.0.0
|
|
7
|
+
*/
|
|
8
|
+
export * from "./Errors.js";
|
|
9
|
+
/**
|
|
10
|
+
* @since 1.0.0
|
|
11
|
+
*/
|
|
12
|
+
export * as OrganizationsClientInstance from "./OrganizationsClientInstance.js";
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
*/
|
|
16
|
+
export * as OrganizationsServiceConfig from "./OrganizationsServiceConfig.js";
|
|
17
|
+
/**
|
|
18
|
+
* @since 1.0.0
|
|
19
|
+
*/
|
|
20
|
+
export * from "./OrganizationsService.js";
|
|
21
|
+
/**
|
|
22
|
+
* @since 1.0.0
|
|
23
|
+
* @category exports
|
|
24
|
+
* @alias OrganizationsService
|
|
25
|
+
*/
|
|
26
|
+
export declare namespace Organizations {
|
|
27
|
+
/**
|
|
28
|
+
* @since 1.0.0
|
|
29
|
+
* @alias OrganizationsService.Config
|
|
30
|
+
*/
|
|
31
|
+
type Config = OrganizationsService.Config;
|
|
32
|
+
}
|
|
33
|
+
/**
|
|
34
|
+
* @since 1.0.0
|
|
35
|
+
* @category exports
|
|
36
|
+
* @alias OrganizationsService
|
|
37
|
+
*/
|
|
38
|
+
export declare const Organizations: typeof OrganizationsService;
|
|
39
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,oBAAoB,EAAE,MAAM,2BAA2B,CAAC;AAEjE;;GAEG;AACH,cAAc,aAAa,CAAC;AAE5B;;GAEG;AACH,OAAO,KAAK,2BAA2B,MAAM,kCAAkC,CAAC;AAEhF;;GAEG;AACH,OAAO,KAAK,0BAA0B,MAAM,iCAAiC,CAAC;AAE9E;;GAEG;AACH,cAAc,2BAA2B,CAAC;AAE1C;;;;GAIG;AACH,MAAM,CAAC,OAAO,WAAW,aAAa,CAAC;IACrC;;;OAGG;IACH,KAAY,MAAM,GAAG,oBAAoB,CAAC,MAAM,CAAC;CAClD;AAED;;;;GAIG;AACH,eAAO,MAAM,aAAa,6BAAuB,CAAC"}
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
19
|
+
for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
|
|
20
|
+
};
|
|
21
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
22
|
+
if (mod && mod.__esModule) return mod;
|
|
23
|
+
var result = {};
|
|
24
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
25
|
+
__setModuleDefault(result, mod);
|
|
26
|
+
return result;
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.Organizations = exports.OrganizationsServiceConfig = exports.OrganizationsClientInstance = void 0;
|
|
30
|
+
/**
|
|
31
|
+
* @since 1.0.0
|
|
32
|
+
*/
|
|
33
|
+
const OrganizationsService_js_1 = require("./OrganizationsService.js");
|
|
34
|
+
/**
|
|
35
|
+
* @since 1.0.0
|
|
36
|
+
*/
|
|
37
|
+
__exportStar(require("./Errors.js"), exports);
|
|
38
|
+
/**
|
|
39
|
+
* @since 1.0.0
|
|
40
|
+
*/
|
|
41
|
+
exports.OrganizationsClientInstance = __importStar(require("./OrganizationsClientInstance.js"));
|
|
42
|
+
/**
|
|
43
|
+
* @since 1.0.0
|
|
44
|
+
*/
|
|
45
|
+
exports.OrganizationsServiceConfig = __importStar(require("./OrganizationsServiceConfig.js"));
|
|
46
|
+
/**
|
|
47
|
+
* @since 1.0.0
|
|
48
|
+
*/
|
|
49
|
+
__exportStar(require("./OrganizationsService.js"), exports);
|
|
50
|
+
/**
|
|
51
|
+
* @since 1.0.0
|
|
52
|
+
* @category exports
|
|
53
|
+
* @alias OrganizationsService
|
|
54
|
+
*/
|
|
55
|
+
exports.Organizations = OrganizationsService_js_1.OrganizationsService;
|
|
56
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,uEAAiE;AAEjE;;GAEG;AACH,8CAA4B;AAE5B;;GAEG;AACH,gGAAgF;AAEhF;;GAEG;AACH,8FAA8E;AAE9E;;GAEG;AACH,4DAA0C;AAe1C;;;;GAIG;AACU,QAAA,aAAa,GAAG,8CAAoB,CAAC"}
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
import type { AccessDeniedException, AccessDeniedForDependencyException, AccountAlreadyClosedException, AccountAlreadyRegisteredException, AccountNotFoundException, AccountNotRegisteredException, AccountOwnerNotVerifiedException, AlreadyInOrganizationException, AWSOrganizationsNotInUseException, ChildNotFoundException, ConcurrentModificationException, ConflictException, ConstraintViolationException, CreateAccountStatusNotFoundException, DestinationParentNotFoundException, DuplicateAccountException, DuplicateHandshakeException, DuplicateOrganizationalUnitException, DuplicatePolicyAttachmentException, DuplicatePolicyException, EffectivePolicyNotFoundException, FinalizingOrganizationException, HandshakeAlreadyInStateException, HandshakeConstraintViolationException, HandshakeNotFoundException, InvalidHandshakeTransitionException, InvalidInputException, MalformedPolicyDocumentException, MasterCannotLeaveOrganizationException, OrganizationalUnitNotEmptyException, OrganizationalUnitNotFoundException, OrganizationNotEmptyException, ParentNotFoundException, PolicyChangesInProgressException, PolicyInUseException, PolicyNotAttachedException, PolicyNotFoundException, PolicyTypeAlreadyEnabledException, PolicyTypeNotAvailableForOrganizationException, PolicyTypeNotEnabledException, ResourcePolicyNotFoundException, RootNotFoundException, ServiceException, SourceParentNotFoundException, TargetNotFoundException, TooManyRequestsException, UnsupportedAPIEndpointException } from "@aws-sdk/client-organizations";
|
|
2
|
+
import type { TaggedException } from "@effect-aws/commons";
|
|
3
|
+
import { SdkError as CommonSdkError } from "@effect-aws/commons";
|
|
4
|
+
export declare const AllServiceErrors: readonly ["AWSOrganizationsNotInUseException", "AccessDeniedException", "AccessDeniedForDependencyException", "AccountAlreadyClosedException", "AccountAlreadyRegisteredException", "AccountNotFoundException", "AccountNotRegisteredException", "AccountOwnerNotVerifiedException", "AlreadyInOrganizationException", "ChildNotFoundException", "ConcurrentModificationException", "ConflictException", "ConstraintViolationException", "CreateAccountStatusNotFoundException", "DestinationParentNotFoundException", "DuplicateAccountException", "DuplicateHandshakeException", "DuplicateOrganizationalUnitException", "DuplicatePolicyAttachmentException", "DuplicatePolicyException", "EffectivePolicyNotFoundException", "FinalizingOrganizationException", "HandshakeAlreadyInStateException", "HandshakeConstraintViolationException", "HandshakeNotFoundException", "InvalidHandshakeTransitionException", "InvalidInputException", "MalformedPolicyDocumentException", "MasterCannotLeaveOrganizationException", "OrganizationNotEmptyException", "OrganizationalUnitNotEmptyException", "OrganizationalUnitNotFoundException", "ParentNotFoundException", "PolicyChangesInProgressException", "PolicyInUseException", "PolicyNotAttachedException", "PolicyNotFoundException", "PolicyTypeAlreadyEnabledException", "PolicyTypeNotAvailableForOrganizationException", "PolicyTypeNotEnabledException", "ResourcePolicyNotFoundException", "RootNotFoundException", "ServiceException", "SourceParentNotFoundException", "TargetNotFoundException", "TooManyRequestsException", "UnsupportedAPIEndpointException"];
|
|
5
|
+
export type AWSOrganizationsNotInUseError = TaggedException<AWSOrganizationsNotInUseException>;
|
|
6
|
+
export type AccessDeniedError = TaggedException<AccessDeniedException>;
|
|
7
|
+
export type AccessDeniedForDependencyError = TaggedException<AccessDeniedForDependencyException>;
|
|
8
|
+
export type AccountAlreadyClosedError = TaggedException<AccountAlreadyClosedException>;
|
|
9
|
+
export type AccountAlreadyRegisteredError = TaggedException<AccountAlreadyRegisteredException>;
|
|
10
|
+
export type AccountNotFoundError = TaggedException<AccountNotFoundException>;
|
|
11
|
+
export type AccountNotRegisteredError = TaggedException<AccountNotRegisteredException>;
|
|
12
|
+
export type AccountOwnerNotVerifiedError = TaggedException<AccountOwnerNotVerifiedException>;
|
|
13
|
+
export type AlreadyInOrganizationError = TaggedException<AlreadyInOrganizationException>;
|
|
14
|
+
export type ChildNotFoundError = TaggedException<ChildNotFoundException>;
|
|
15
|
+
export type ConcurrentModificationError = TaggedException<ConcurrentModificationException>;
|
|
16
|
+
export type ConflictError = TaggedException<ConflictException>;
|
|
17
|
+
export type ConstraintViolationError = TaggedException<ConstraintViolationException>;
|
|
18
|
+
export type CreateAccountStatusNotFoundError = TaggedException<CreateAccountStatusNotFoundException>;
|
|
19
|
+
export type DestinationParentNotFoundError = TaggedException<DestinationParentNotFoundException>;
|
|
20
|
+
export type DuplicateAccountError = TaggedException<DuplicateAccountException>;
|
|
21
|
+
export type DuplicateHandshakeError = TaggedException<DuplicateHandshakeException>;
|
|
22
|
+
export type DuplicateOrganizationalUnitError = TaggedException<DuplicateOrganizationalUnitException>;
|
|
23
|
+
export type DuplicatePolicyAttachmentError = TaggedException<DuplicatePolicyAttachmentException>;
|
|
24
|
+
export type DuplicatePolicyError = TaggedException<DuplicatePolicyException>;
|
|
25
|
+
export type EffectivePolicyNotFoundError = TaggedException<EffectivePolicyNotFoundException>;
|
|
26
|
+
export type FinalizingOrganizationError = TaggedException<FinalizingOrganizationException>;
|
|
27
|
+
export type HandshakeAlreadyInStateError = TaggedException<HandshakeAlreadyInStateException>;
|
|
28
|
+
export type HandshakeConstraintViolationError = TaggedException<HandshakeConstraintViolationException>;
|
|
29
|
+
export type HandshakeNotFoundError = TaggedException<HandshakeNotFoundException>;
|
|
30
|
+
export type InvalidHandshakeTransitionError = TaggedException<InvalidHandshakeTransitionException>;
|
|
31
|
+
export type InvalidInputError = TaggedException<InvalidInputException>;
|
|
32
|
+
export type MalformedPolicyDocumentError = TaggedException<MalformedPolicyDocumentException>;
|
|
33
|
+
export type MasterCannotLeaveOrganizationError = TaggedException<MasterCannotLeaveOrganizationException>;
|
|
34
|
+
export type OrganizationNotEmptyError = TaggedException<OrganizationNotEmptyException>;
|
|
35
|
+
export type OrganizationalUnitNotEmptyError = TaggedException<OrganizationalUnitNotEmptyException>;
|
|
36
|
+
export type OrganizationalUnitNotFoundError = TaggedException<OrganizationalUnitNotFoundException>;
|
|
37
|
+
export type ParentNotFoundError = TaggedException<ParentNotFoundException>;
|
|
38
|
+
export type PolicyChangesInProgressError = TaggedException<PolicyChangesInProgressException>;
|
|
39
|
+
export type PolicyInUseError = TaggedException<PolicyInUseException>;
|
|
40
|
+
export type PolicyNotAttachedError = TaggedException<PolicyNotAttachedException>;
|
|
41
|
+
export type PolicyNotFoundError = TaggedException<PolicyNotFoundException>;
|
|
42
|
+
export type PolicyTypeAlreadyEnabledError = TaggedException<PolicyTypeAlreadyEnabledException>;
|
|
43
|
+
export type PolicyTypeNotAvailableForOrganizationError = TaggedException<PolicyTypeNotAvailableForOrganizationException>;
|
|
44
|
+
export type PolicyTypeNotEnabledError = TaggedException<PolicyTypeNotEnabledException>;
|
|
45
|
+
export type ResourcePolicyNotFoundError = TaggedException<ResourcePolicyNotFoundException>;
|
|
46
|
+
export type RootNotFoundError = TaggedException<RootNotFoundException>;
|
|
47
|
+
export type ServiceError = TaggedException<ServiceException>;
|
|
48
|
+
export type SourceParentNotFoundError = TaggedException<SourceParentNotFoundException>;
|
|
49
|
+
export type TargetNotFoundError = TaggedException<TargetNotFoundException>;
|
|
50
|
+
export type TooManyRequestsError = TaggedException<TooManyRequestsException>;
|
|
51
|
+
export type UnsupportedAPIEndpointError = TaggedException<UnsupportedAPIEndpointException>;
|
|
52
|
+
export type SdkError = CommonSdkError;
|
|
53
|
+
export declare const SdkError: import("effect/Data").Case.Constructor<CommonSdkError, "_tag">;
|
|
54
|
+
//# sourceMappingURL=Errors.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Errors.d.ts","sourceRoot":"","sources":["../../src/Errors.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @since 1.0.0
|
|
3
|
+
*/
|
|
4
|
+
import { OrganizationsClient } from "@aws-sdk/client-organizations";
|
|
5
|
+
import { Context, Effect, Layer } from "effect";
|
|
6
|
+
declare const OrganizationsClientInstance_base: Context.TagClass<OrganizationsClientInstance, "@effect-aws/client-organizations/OrganizationsClientInstance", OrganizationsClient>;
|
|
7
|
+
/**
|
|
8
|
+
* @since 1.0.0
|
|
9
|
+
* @category tags
|
|
10
|
+
*/
|
|
11
|
+
export declare class OrganizationsClientInstance extends OrganizationsClientInstance_base {
|
|
12
|
+
}
|
|
13
|
+
/**
|
|
14
|
+
* @since 1.0.0
|
|
15
|
+
* @category constructors
|
|
16
|
+
*/
|
|
17
|
+
export declare const make: Effect.Effect<OrganizationsClient, never, import("effect/Scope").Scope>;
|
|
18
|
+
/**
|
|
19
|
+
* @since 1.0.0
|
|
20
|
+
* @category layers
|
|
21
|
+
*/
|
|
22
|
+
export declare const layer: Layer.Layer<OrganizationsClientInstance, never, never>;
|
|
23
|
+
export {};
|
|
24
|
+
//# sourceMappingURL=OrganizationsClientInstance.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"OrganizationsClientInstance.d.ts","sourceRoot":"","sources":["../../src/OrganizationsClientInstance.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,mBAAmB,EAAE,MAAM,+BAA+B,CAAC;AACpE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,QAAQ,CAAC;;AAGhD;;;GAGG;AACH,qBAAa,2BAA4B,SAAQ,gCAEI;CAAG;AAExD;;;GAGG;AACH,eAAO,MAAM,IAAI,yEAOhB,CAAC;AAEF;;;GAGG;AACH,eAAO,MAAM,KAAK,wDAAkD,CAAC"}
|