@paulo_raca/cdk-skylight 0.0.4 → 0.0.6
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/.jsii +108 -108
- package/.jsii.tabl.json +1 -1
- package/API.md +371 -371
- package/lib/skylight-authentication/ad-authentication.js +4 -4
- package/lib/skylight-compute/eks/windows-eks-cluster.js +1 -1
- package/lib/skylight-compute/eks/windows-eks-nodes.js +1 -1
- package/lib/skylight-compute/windows-node.js +6 -8
- package/lib/skylight-storage/fsx-windows.js +1 -1
- package/package.json +1 -2
package/.jsii
CHANGED
|
@@ -3019,7 +3019,7 @@
|
|
|
3019
3019
|
}
|
|
3020
3020
|
}
|
|
3021
3021
|
},
|
|
3022
|
-
"description": "cdk-skylight",
|
|
3022
|
+
"description": "@paulo_raca/cdk-skylight",
|
|
3023
3023
|
"docs": {
|
|
3024
3024
|
"stability": "experimental"
|
|
3025
3025
|
},
|
|
@@ -3037,7 +3037,7 @@
|
|
|
3037
3037
|
},
|
|
3038
3038
|
"tscRootDir": "src"
|
|
3039
3039
|
},
|
|
3040
|
-
"name": "cdk-skylight",
|
|
3040
|
+
"name": "@paulo_raca/cdk-skylight",
|
|
3041
3041
|
"readme": {
|
|
3042
3042
|
"markdown": "\n\n# CDK Skylight\n\nCDK Skylight is a set of **Level 3 constructs** for the [Microsoft products on AWS](https://aws.amazon.com/windows/) ecosystem (Windows OS, SQL Server, Active Directory, Windows Containers, Amazon FSx for Windows, and so on). **CDK Skylight Constructs are a natural fit for Platform Teams building Platform as a Product.**\n\nA few examples are:\n\n1. Windows Worker with Domain join and Powershell API that allows running complex automation with a single line of code\n2. Managed Active Directory configured with DNS Topology and an API to create new AD Group with a domain-joined machine.\n3. Amazon FSx library that creates Filesystem with API to create Folder on it\n4. Windows EKS Workers that joins to specified AD domain with APIs to create and configure complex integrations such as SMB with Global Mapping and Domain authentication with gMSA plugin.\n\nAll those examples are built with CDK Skylight libraries and can be used separately with maximum flexibility to change the default settings.\n\nCDK Skylight is set to address repetitive tasks and best practices involved with managing, deploying, and integrating those apps. In addition to the complexity of integrating the AWS side products, Microsoft technologies such as SQL, AD, Windows OS require OS-level integration and optimization. Skylight help in both the \"AWS-side\" and the \"OS-side,\" offering a complete end-to-end configuration and integration solution of AWS products.\n\n# Who should use CDK Skylight?\n\nThe primary persona to use CDK Skylight is the platform team owners to customize the stacks and provide them to the application owners teams.\n\nAs a vision, Project CDK-Skylight targets all Windows EC2 customers in all stages, specifically developers developing features integrated with the Microsoft-products ecosystem (SQL Server, Active Directory, Windows OS, etc.)\n\n# When to use CDK Skylight?\n\nCDK Skylight helps in all application lifecycle stages, starting from the developer machine to running production workloads. With CDK Skylight, the time it takes to move between stages and integrate new services is reduced dramatically.\n\n# How to use\n\n```bash\nnpm install cdk-skylight\n```\n\nIn your CDK App\n\n```typescript\nimport * as skylight from \"cdk-skylight\";\n\nnew skylight.authentication.AwsManagedMicrosoftAdR53(scope: Construct, id: string, props: IAwsManagedMicrosoftAdProps)\n\n```\n\n# CDK Skylight Constructs\n\n## Skylight-Compute\n\nLibrary of Custom Compute components\n\n### DomainWindowsNode\n\nA Domain Windows Node Construct represents one Windows EC2 instance configured with Active Directory.\n\nThe DomainWindowsNode can be customized to different instance sizes and additional permissions set just like any other EC2 Instance.\nYou can use this construct to run elevated domain tasks with domain permissions or run your application in a single instance setup.\n\nThe machine will be joined to the provided Active Directory domain using a custom CloudFormation bootstrap that will wait until the required reboot to join the domain. Then it will register the machine in SSM and pull tasks from the SSM State manager.\n\nYou can send tasks to that machine using the provided methods: runPsCommands() and runPSwithDomainAdmin()\n\n```typescript\nconst windowsNodeObject = new skylight.compute.DomainWindowsNode(\n stack,\n 'WindowsNode',\n {\n vpc: vpc,\n madSsmParameters: {}, //pointer to the Secret that holds the Domain Admin username and password\n }\n);\n\n// Special Methods:\nwindowsNodeObject.runPsCommands(['echo hello-world'], 'hello');\nwindowsNodeObject.runPSwithDomainAdmin(\n ['Write-Host hello-world'],\n 'hello-withPS'\n);\nwindowsNodeObject.openRDP('1.1.1.1/32');\n```\n\n## Skylight-Authentication\n\nLibrary of Custom Authentication components\n\n### **AwsManagedMicrosoftAd** - Managed Active Directory\n\nManaged AD with Secret stored in secret manager\n\nThe secret saved to SSM parameter store so others can use it with other Constructs (Such as Windows node or FSx)\nThe provided VPC or the new created VPC will be configured to forward DNS requests to the Managed AD with Route53 Resolvers\n\nThe construct also creates (optionally) t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createADGroup)\nThe createADGroup() method creates an Active Directory permission group in the domain, using the domain admin user.\n\nPlease note: When calling createADGroup() API, a Lambda will be created to start the worker machine (Using AWS-SDK),\nthen each command will be scheduled with State Manager, and the instance will be shut down after complete.\n\n```typescript\nconst ad = new skylight.authentication.AwsManagedMicrosoftAd(\n stack,\n 'AwsManagedMicrosoftAdR53',\n {\n vpc: vpc,\n edition: 'Enterprise', // Optional\n secret: new Secret(stack, 'test-secret'), // Optional\n domainName: 'test-domain', // Optional\n secretName: 'custom-secret-name', // Optional\n createWorker: false, // Optional\n }\n);\nad.managedActiveDirectory.createADGroup(\n 'MyADGroup', // AD group name\n 'My AD Group Created by CDK-Skylight!' //AD Description\n);\n```\n\n### **AwsManagedMicrosoftAdR53** - Extenstion of Manged Active Directory with R53 Resolvers\n\nAwsManagedMicrosoftAdR53 represents an integration pattern of Managed AD and Route 53 Resolver in a specific VPC, it will create Managed AD with the provided Secret (Secrets Manager) or generates a new Secret.\n\nExample:\n\n```typescript\nconst ad = new skylight.authentication.AwsManagedMicrosoftAdR53(\n stack,\n 'AwsManagedMicrosoftAdR53',\n {\n vpc: vpc,\n }\n);\n```\n\n## Skylight-Storage\n\n### FSxWindows\n\nA FSxWindows represents an integration pattern of Amazon FSx and Managed AD in a specific VPC.\nThe Construct creates Amazon FSx for Windows\n\nThe construct also creates t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createFolder)\nThe createFolder() method creates an SMB Folder in the FSx filesystem, using the domain admin user.\n\nPlease note: When calling createFolder() API, a Lambda will be created to start the worker machine (Using AWS-SDK), then each command will be scheduled with State Manager, and the instance will be shut down after complete.\n\nExample:\n\n```typescript\nthis.fsxWindows = new skylight.storage.FSxWindows(this, 'FSx', {\n vpc: vpc,\n adParametersStore: adParametersStore,\n});\nthis.fsxWindows.createFolder('myFolderStorageOnFSx');\n```\n\n# Very experimental Libraries\n\n### EKS Compute\n\nThe stack creates the Windows Autoscaling group with domain join script and the SSM Documents for gMSA and Global Mapping.\n\n### EKS Cluster\n\n```typescript\nconst cluster = new WindowsEKSCluster(stack, 'ElasticCluster', {\n vpc: new aws_ec2.Vpc(stack, 'MyVpc', {}),\n}); // Creates EKS Cluster with Windows support\n```\n\n### EKS Nodes\n\nThis stack takes the PersistentStorage stack as input and creates the EKS cluster with permissions to operate EKS clusters.\n\n```typescript\nconst myNodes = new WindowsEKSNodes(stack, 'WindowsEKSNodes', {\n // Creates AutoScaling group for Windows Support\n vpc: new aws_ec2.Vpc(stack, 'MyVpc', {}),\n});\n\nmyNodes.addAdDependency(secretObject);\nmyNodes.addStorageDependency(secretObject, storageMount);\nmyNodes.addEKSDependency(eks_cluster.eksCluster);\nmyNodes.addLocalCredFile(secretObject, 'myEKSNodes', 'myWebApp');\n```\n"
|
|
3043
3043
|
},
|
|
@@ -3047,21 +3047,21 @@
|
|
|
3047
3047
|
},
|
|
3048
3048
|
"schema": "jsii/0.10.0",
|
|
3049
3049
|
"submodules": {
|
|
3050
|
-
"cdk-skylight.authentication": {
|
|
3050
|
+
"@paulo_raca/cdk-skylight.authentication": {
|
|
3051
3051
|
"locationInModule": {
|
|
3052
3052
|
"filename": "src/index.ts",
|
|
3053
3053
|
"line": 3
|
|
3054
3054
|
},
|
|
3055
3055
|
"symbolId": "src/skylight-authentication/index:"
|
|
3056
3056
|
},
|
|
3057
|
-
"cdk-skylight.compute": {
|
|
3057
|
+
"@paulo_raca/cdk-skylight.compute": {
|
|
3058
3058
|
"locationInModule": {
|
|
3059
3059
|
"filename": "src/index.ts",
|
|
3060
3060
|
"line": 1
|
|
3061
3061
|
},
|
|
3062
3062
|
"symbolId": "src/skylight-compute/index:"
|
|
3063
3063
|
},
|
|
3064
|
-
"cdk-skylight.storage": {
|
|
3064
|
+
"@paulo_raca/cdk-skylight.storage": {
|
|
3065
3065
|
"locationInModule": {
|
|
3066
3066
|
"filename": "src/index.ts",
|
|
3067
3067
|
"line": 2
|
|
@@ -3071,7 +3071,7 @@
|
|
|
3071
3071
|
},
|
|
3072
3072
|
"targets": {
|
|
3073
3073
|
"js": {
|
|
3074
|
-
"npm": "cdk-skylight"
|
|
3074
|
+
"npm": "@paulo_raca/cdk-skylight"
|
|
3075
3075
|
},
|
|
3076
3076
|
"python": {
|
|
3077
3077
|
"distName": "cdk-skylight",
|
|
@@ -3079,15 +3079,15 @@
|
|
|
3079
3079
|
}
|
|
3080
3080
|
},
|
|
3081
3081
|
"types": {
|
|
3082
|
-
"cdk-skylight.authentication.AwsManagedMicrosoftAd": {
|
|
3083
|
-
"assembly": "cdk-skylight",
|
|
3082
|
+
"@paulo_raca/cdk-skylight.authentication.AwsManagedMicrosoftAd": {
|
|
3083
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
3084
3084
|
"base": "constructs.Construct",
|
|
3085
3085
|
"docs": {
|
|
3086
3086
|
"remarks": "The Construct creates Managed AD with the provided Secret (Secrets Manager) or generates a new Secret.\nThe secret saved to SSM parameter store so others can use it with other Constructs (Such as Windows node or FSx)\nThe provided VPC or the new created VPC will be configured to forward DNS requests to the Managed AD with Route53 Resolvers\nThe construct also creates (optionally) t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createADGroup)\n\nThe createADGroup() method creates an Active Directory permission group in the domain, using the domain admin user.\nPlease note: When calling createADGroup() API, a Lambda will be created to start the worker machine (Using AWS-SDK),\nthen each command will be scheduled with State Manager, and the instance will be shut down after complete.",
|
|
3087
3087
|
"stability": "experimental",
|
|
3088
3088
|
"summary": "A Ad Authentication represents an integration pattern of Managed AD and Route 53 Resolver in a specific VPC."
|
|
3089
3089
|
},
|
|
3090
|
-
"fqn": "cdk-skylight.authentication.AwsManagedMicrosoftAd",
|
|
3090
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.AwsManagedMicrosoftAd",
|
|
3091
3091
|
"initializer": {
|
|
3092
3092
|
"docs": {
|
|
3093
3093
|
"stability": "experimental"
|
|
@@ -3112,7 +3112,7 @@
|
|
|
3112
3112
|
{
|
|
3113
3113
|
"name": "props",
|
|
3114
3114
|
"type": {
|
|
3115
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdProps"
|
|
3115
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdProps"
|
|
3116
3116
|
}
|
|
3117
3117
|
}
|
|
3118
3118
|
]
|
|
@@ -3226,7 +3226,7 @@
|
|
|
3226
3226
|
},
|
|
3227
3227
|
"name": "adParameters",
|
|
3228
3228
|
"type": {
|
|
3229
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
3229
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
3230
3230
|
}
|
|
3231
3231
|
},
|
|
3232
3232
|
{
|
|
@@ -3254,7 +3254,7 @@
|
|
|
3254
3254
|
},
|
|
3255
3255
|
"name": "props",
|
|
3256
3256
|
"type": {
|
|
3257
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdProps"
|
|
3257
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdProps"
|
|
3258
3258
|
}
|
|
3259
3259
|
},
|
|
3260
3260
|
{
|
|
@@ -3283,21 +3283,21 @@
|
|
|
3283
3283
|
"name": "domainWindowsNode",
|
|
3284
3284
|
"optional": true,
|
|
3285
3285
|
"type": {
|
|
3286
|
-
"fqn": "cdk-skylight.compute.DomainWindowsNode"
|
|
3286
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.DomainWindowsNode"
|
|
3287
3287
|
}
|
|
3288
3288
|
}
|
|
3289
3289
|
],
|
|
3290
3290
|
"symbolId": "src/skylight-authentication/ad-authentication:AwsManagedMicrosoftAd"
|
|
3291
3291
|
},
|
|
3292
|
-
"cdk-skylight.authentication.AwsManagedMicrosoftAdR53": {
|
|
3293
|
-
"assembly": "cdk-skylight",
|
|
3294
|
-
"base": "cdk-skylight.authentication.AwsManagedMicrosoftAd",
|
|
3292
|
+
"@paulo_raca/cdk-skylight.authentication.AwsManagedMicrosoftAdR53": {
|
|
3293
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
3294
|
+
"base": "@paulo_raca/cdk-skylight.authentication.AwsManagedMicrosoftAd",
|
|
3295
3295
|
"docs": {
|
|
3296
3296
|
"remarks": "The Construct creates Managed AD with the provided Secret (Secrets Manager) or generates a new Secret.\nThe secret saved to SSM parameter store so others can use it with other Constructs (Such as Windows node or FSx)\nThe provided VPC or the new created VPC will be configured to forward DNS requests to the Managed AD with Route53 Resolvers\nThe construct also creates (optionally) t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createADGroup)\n\nThe createADGroup() method creates an Active Directory permission group in the domain, using the domain admin user.\nPlease note: When calling createADGroup() API, a Lambda will be created to start the worker machine (Using AWS-SDK),\nthen each command will be scheduled with State Manager, and the instance will be shut down after complete.",
|
|
3297
3297
|
"stability": "experimental",
|
|
3298
3298
|
"summary": "A Ad Authentication represents an integration pattern of Managed AD and Route 53 Resolver in a specific VPC."
|
|
3299
3299
|
},
|
|
3300
|
-
"fqn": "cdk-skylight.authentication.AwsManagedMicrosoftAdR53",
|
|
3300
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.AwsManagedMicrosoftAdR53",
|
|
3301
3301
|
"initializer": {
|
|
3302
3302
|
"docs": {
|
|
3303
3303
|
"stability": "experimental"
|
|
@@ -3322,7 +3322,7 @@
|
|
|
3322
3322
|
{
|
|
3323
3323
|
"name": "props",
|
|
3324
3324
|
"type": {
|
|
3325
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdProps"
|
|
3325
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdProps"
|
|
3326
3326
|
}
|
|
3327
3327
|
}
|
|
3328
3328
|
]
|
|
@@ -3336,12 +3336,12 @@
|
|
|
3336
3336
|
"namespace": "authentication",
|
|
3337
3337
|
"symbolId": "src/skylight-authentication/ad-authentication:AwsManagedMicrosoftAdR53"
|
|
3338
3338
|
},
|
|
3339
|
-
"cdk-skylight.authentication.AwsManagedMicrosoftConfigurationStoreType": {
|
|
3340
|
-
"assembly": "cdk-skylight",
|
|
3339
|
+
"@paulo_raca/cdk-skylight.authentication.AwsManagedMicrosoftConfigurationStoreType": {
|
|
3340
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
3341
3341
|
"docs": {
|
|
3342
3342
|
"stability": "experimental"
|
|
3343
3343
|
},
|
|
3344
|
-
"fqn": "cdk-skylight.authentication.AwsManagedMicrosoftConfigurationStoreType",
|
|
3344
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.AwsManagedMicrosoftConfigurationStoreType",
|
|
3345
3345
|
"kind": "enum",
|
|
3346
3346
|
"locationInModule": {
|
|
3347
3347
|
"filename": "src/skylight-authentication/ad-authentication.ts",
|
|
@@ -3359,13 +3359,13 @@
|
|
|
3359
3359
|
"namespace": "authentication",
|
|
3360
3360
|
"symbolId": "src/skylight-authentication/ad-authentication:AwsManagedMicrosoftConfigurationStoreType"
|
|
3361
3361
|
},
|
|
3362
|
-
"cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters": {
|
|
3363
|
-
"assembly": "cdk-skylight",
|
|
3362
|
+
"@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters": {
|
|
3363
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
3364
3364
|
"docs": {
|
|
3365
3365
|
"stability": "experimental",
|
|
3366
3366
|
"summary": "The properties of an DomainWindowsNodeProps, requires Active Directory parameter to read the Secret to join the domain Default setting: Domain joined, m5.2xlarge, latest windows, Managed by SSM."
|
|
3367
3367
|
},
|
|
3368
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters",
|
|
3368
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters",
|
|
3369
3369
|
"kind": "interface",
|
|
3370
3370
|
"locationInModule": {
|
|
3371
3371
|
"filename": "src/skylight-authentication/ad-authentication.ts",
|
|
@@ -3388,7 +3388,7 @@
|
|
|
3388
3388
|
"name": "configurationStoreType",
|
|
3389
3389
|
"optional": true,
|
|
3390
3390
|
"type": {
|
|
3391
|
-
"fqn": "cdk-skylight.authentication.AwsManagedMicrosoftConfigurationStoreType"
|
|
3391
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.AwsManagedMicrosoftConfigurationStoreType"
|
|
3392
3392
|
}
|
|
3393
3393
|
},
|
|
3394
3394
|
{
|
|
@@ -3445,13 +3445,13 @@
|
|
|
3445
3445
|
],
|
|
3446
3446
|
"symbolId": "src/skylight-authentication/ad-authentication:IAwsManagedMicrosoftAdParameters"
|
|
3447
3447
|
},
|
|
3448
|
-
"cdk-skylight.authentication.IAwsManagedMicrosoftAdProps": {
|
|
3449
|
-
"assembly": "cdk-skylight",
|
|
3448
|
+
"@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdProps": {
|
|
3449
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
3450
3450
|
"docs": {
|
|
3451
3451
|
"stability": "experimental",
|
|
3452
3452
|
"summary": "The properties for the AwsManagedMicrosoftAd class."
|
|
3453
3453
|
},
|
|
3454
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdProps",
|
|
3454
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdProps",
|
|
3455
3455
|
"kind": "interface",
|
|
3456
3456
|
"locationInModule": {
|
|
3457
3457
|
"filename": "src/skylight-authentication/ad-authentication.ts",
|
|
@@ -3488,7 +3488,7 @@
|
|
|
3488
3488
|
"name": "configurationStore",
|
|
3489
3489
|
"optional": true,
|
|
3490
3490
|
"type": {
|
|
3491
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
3491
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
3492
3492
|
}
|
|
3493
3493
|
},
|
|
3494
3494
|
{
|
|
@@ -3597,22 +3597,22 @@
|
|
|
3597
3597
|
],
|
|
3598
3598
|
"symbolId": "src/skylight-authentication/ad-authentication:IAwsManagedMicrosoftAdProps"
|
|
3599
3599
|
},
|
|
3600
|
-
"cdk-skylight.compute.DomainWindowsNode": {
|
|
3601
|
-
"assembly": "cdk-skylight",
|
|
3600
|
+
"@paulo_raca/cdk-skylight.compute.DomainWindowsNode": {
|
|
3601
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
3602
3602
|
"base": "constructs.Construct",
|
|
3603
3603
|
"docs": {
|
|
3604
3604
|
"remarks": "The DomainWindowsNode can be customized to different instance sizes and additional permissions set just like any other EC2 Instance.\nYou can use this construct to run elevated domain tasks with domain permissions or run your application in a single instance setup.\n\nThe machine will be joined to the provided Active Directory domain using a custom CloudFormation bootstrap that will wait until the required reboot to join the domain. Then it will register the machine in SSM and pull tasks from the SSM State manager.\n\nYou can send tasks to that machine using the provided methods: runPsCommands() and runPSwithDomainAdmin()",
|
|
3605
3605
|
"stability": "experimental",
|
|
3606
3606
|
"summary": "A Domain Windows Node represents one Windows EC2 instance configured with Active Directory."
|
|
3607
3607
|
},
|
|
3608
|
-
"fqn": "cdk-skylight.compute.DomainWindowsNode",
|
|
3608
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.DomainWindowsNode",
|
|
3609
3609
|
"initializer": {
|
|
3610
3610
|
"docs": {
|
|
3611
3611
|
"stability": "experimental"
|
|
3612
3612
|
},
|
|
3613
3613
|
"locationInModule": {
|
|
3614
3614
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3615
|
-
"line":
|
|
3615
|
+
"line": 99
|
|
3616
3616
|
},
|
|
3617
3617
|
"parameters": [
|
|
3618
3618
|
{
|
|
@@ -3630,7 +3630,7 @@
|
|
|
3630
3630
|
{
|
|
3631
3631
|
"name": "props",
|
|
3632
3632
|
"type": {
|
|
3633
|
-
"fqn": "cdk-skylight.compute.IDomainWindowsNodeProps"
|
|
3633
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.IDomainWindowsNodeProps"
|
|
3634
3634
|
}
|
|
3635
3635
|
}
|
|
3636
3636
|
]
|
|
@@ -3638,7 +3638,7 @@
|
|
|
3638
3638
|
"kind": "class",
|
|
3639
3639
|
"locationInModule": {
|
|
3640
3640
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3641
|
-
"line":
|
|
3641
|
+
"line": 93
|
|
3642
3642
|
},
|
|
3643
3643
|
"methods": [
|
|
3644
3644
|
{
|
|
@@ -3648,7 +3648,7 @@
|
|
|
3648
3648
|
},
|
|
3649
3649
|
"locationInModule": {
|
|
3650
3650
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3651
|
-
"line":
|
|
3651
|
+
"line": 269
|
|
3652
3652
|
},
|
|
3653
3653
|
"name": "openRDP",
|
|
3654
3654
|
"parameters": [
|
|
@@ -3668,7 +3668,7 @@
|
|
|
3668
3668
|
},
|
|
3669
3669
|
"locationInModule": {
|
|
3670
3670
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3671
|
-
"line":
|
|
3671
|
+
"line": 254
|
|
3672
3672
|
},
|
|
3673
3673
|
"name": "runPsCommands",
|
|
3674
3674
|
"parameters": [
|
|
@@ -3698,7 +3698,7 @@
|
|
|
3698
3698
|
},
|
|
3699
3699
|
"locationInModule": {
|
|
3700
3700
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3701
|
-
"line":
|
|
3701
|
+
"line": 282
|
|
3702
3702
|
},
|
|
3703
3703
|
"name": "runPSwithDomainAdmin",
|
|
3704
3704
|
"parameters": [
|
|
@@ -3729,7 +3729,7 @@
|
|
|
3729
3729
|
},
|
|
3730
3730
|
"locationInModule": {
|
|
3731
3731
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3732
|
-
"line":
|
|
3732
|
+
"line": 238
|
|
3733
3733
|
},
|
|
3734
3734
|
"name": "runShellCommands",
|
|
3735
3735
|
"parameters": [
|
|
@@ -3758,7 +3758,7 @@
|
|
|
3758
3758
|
},
|
|
3759
3759
|
"locationInModule": {
|
|
3760
3760
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3761
|
-
"line":
|
|
3761
|
+
"line": 315
|
|
3762
3762
|
},
|
|
3763
3763
|
"name": "startInstance"
|
|
3764
3764
|
}
|
|
@@ -3773,7 +3773,7 @@
|
|
|
3773
3773
|
"immutable": true,
|
|
3774
3774
|
"locationInModule": {
|
|
3775
3775
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3776
|
-
"line":
|
|
3776
|
+
"line": 94
|
|
3777
3777
|
},
|
|
3778
3778
|
"name": "instance",
|
|
3779
3779
|
"type": {
|
|
@@ -3787,7 +3787,7 @@
|
|
|
3787
3787
|
"immutable": true,
|
|
3788
3788
|
"locationInModule": {
|
|
3789
3789
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3790
|
-
"line":
|
|
3790
|
+
"line": 95
|
|
3791
3791
|
},
|
|
3792
3792
|
"name": "nodeRole",
|
|
3793
3793
|
"type": {
|
|
@@ -3801,7 +3801,7 @@
|
|
|
3801
3801
|
"immutable": true,
|
|
3802
3802
|
"locationInModule": {
|
|
3803
3803
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3804
|
-
"line":
|
|
3804
|
+
"line": 96
|
|
3805
3805
|
},
|
|
3806
3806
|
"name": "vpc",
|
|
3807
3807
|
"type": {
|
|
@@ -3815,7 +3815,7 @@
|
|
|
3815
3815
|
"immutable": true,
|
|
3816
3816
|
"locationInModule": {
|
|
3817
3817
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3818
|
-
"line":
|
|
3818
|
+
"line": 97
|
|
3819
3819
|
},
|
|
3820
3820
|
"name": "passwordObject",
|
|
3821
3821
|
"optional": true,
|
|
@@ -3826,17 +3826,17 @@
|
|
|
3826
3826
|
],
|
|
3827
3827
|
"symbolId": "src/skylight-compute/windows-node:DomainWindowsNode"
|
|
3828
3828
|
},
|
|
3829
|
-
"cdk-skylight.compute.IDomainWindowsNodeProps": {
|
|
3830
|
-
"assembly": "cdk-skylight",
|
|
3829
|
+
"@paulo_raca/cdk-skylight.compute.IDomainWindowsNodeProps": {
|
|
3830
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
3831
3831
|
"docs": {
|
|
3832
3832
|
"stability": "experimental",
|
|
3833
3833
|
"summary": "The properties of an DomainWindowsNodeProps, requires Active Directory parameter to read the Secret to join the domain Default setting: Domain joined, m5.2xlarge, latest windows, Managed by SSM."
|
|
3834
3834
|
},
|
|
3835
|
-
"fqn": "cdk-skylight.compute.IDomainWindowsNodeProps",
|
|
3835
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.IDomainWindowsNodeProps",
|
|
3836
3836
|
"kind": "interface",
|
|
3837
3837
|
"locationInModule": {
|
|
3838
3838
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3839
|
-
"line":
|
|
3839
|
+
"line": 35
|
|
3840
3840
|
},
|
|
3841
3841
|
"name": "IDomainWindowsNodeProps",
|
|
3842
3842
|
"namespace": "compute",
|
|
@@ -3849,7 +3849,7 @@
|
|
|
3849
3849
|
},
|
|
3850
3850
|
"locationInModule": {
|
|
3851
3851
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3852
|
-
"line":
|
|
3852
|
+
"line": 79
|
|
3853
3853
|
},
|
|
3854
3854
|
"name": "vpc",
|
|
3855
3855
|
"type": {
|
|
@@ -3865,7 +3865,7 @@
|
|
|
3865
3865
|
},
|
|
3866
3866
|
"locationInModule": {
|
|
3867
3867
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3868
|
-
"line":
|
|
3868
|
+
"line": 58
|
|
3869
3869
|
},
|
|
3870
3870
|
"name": "amiName",
|
|
3871
3871
|
"optional": true,
|
|
@@ -3880,7 +3880,7 @@
|
|
|
3880
3880
|
},
|
|
3881
3881
|
"locationInModule": {
|
|
3882
3882
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3883
|
-
"line":
|
|
3883
|
+
"line": 68
|
|
3884
3884
|
},
|
|
3885
3885
|
"name": "domainName",
|
|
3886
3886
|
"optional": true,
|
|
@@ -3897,7 +3897,7 @@
|
|
|
3897
3897
|
},
|
|
3898
3898
|
"locationInModule": {
|
|
3899
3899
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3900
|
-
"line":
|
|
3900
|
+
"line": 40
|
|
3901
3901
|
},
|
|
3902
3902
|
"name": "iamManagedPoliciesList",
|
|
3903
3903
|
"optional": true,
|
|
@@ -3919,7 +3919,7 @@
|
|
|
3919
3919
|
},
|
|
3920
3920
|
"locationInModule": {
|
|
3921
3921
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3922
|
-
"line":
|
|
3922
|
+
"line": 46
|
|
3923
3923
|
},
|
|
3924
3924
|
"name": "instanceType",
|
|
3925
3925
|
"optional": true,
|
|
@@ -3934,7 +3934,7 @@
|
|
|
3934
3934
|
},
|
|
3935
3935
|
"locationInModule": {
|
|
3936
3936
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3937
|
-
"line":
|
|
3937
|
+
"line": 69
|
|
3938
3938
|
},
|
|
3939
3939
|
"name": "passwordObject",
|
|
3940
3940
|
"optional": true,
|
|
@@ -3952,7 +3952,7 @@
|
|
|
3952
3952
|
},
|
|
3953
3953
|
"locationInModule": {
|
|
3954
3954
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3955
|
-
"line":
|
|
3955
|
+
"line": 53
|
|
3956
3956
|
},
|
|
3957
3957
|
"name": "usePrivateSubnet",
|
|
3958
3958
|
"optional": true,
|
|
@@ -3970,7 +3970,7 @@
|
|
|
3970
3970
|
},
|
|
3971
3971
|
"locationInModule": {
|
|
3972
3972
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3973
|
-
"line":
|
|
3973
|
+
"line": 66
|
|
3974
3974
|
},
|
|
3975
3975
|
"name": "userData",
|
|
3976
3976
|
"optional": true,
|
|
@@ -3986,7 +3986,7 @@
|
|
|
3986
3986
|
},
|
|
3987
3987
|
"locationInModule": {
|
|
3988
3988
|
"filename": "src/skylight-compute/windows-node.ts",
|
|
3989
|
-
"line":
|
|
3989
|
+
"line": 74
|
|
3990
3990
|
},
|
|
3991
3991
|
"name": "windowsMachine",
|
|
3992
3992
|
"optional": true,
|
|
@@ -3997,12 +3997,12 @@
|
|
|
3997
3997
|
],
|
|
3998
3998
|
"symbolId": "src/skylight-compute/windows-node:IDomainWindowsNodeProps"
|
|
3999
3999
|
},
|
|
4000
|
-
"cdk-skylight.compute.IRuntimeNodes": {
|
|
4001
|
-
"assembly": "cdk-skylight",
|
|
4000
|
+
"@paulo_raca/cdk-skylight.compute.IRuntimeNodes": {
|
|
4001
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
4002
4002
|
"docs": {
|
|
4003
4003
|
"stability": "experimental"
|
|
4004
4004
|
},
|
|
4005
|
-
"fqn": "cdk-skylight.compute.IRuntimeNodes",
|
|
4005
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.IRuntimeNodes",
|
|
4006
4006
|
"kind": "interface",
|
|
4007
4007
|
"locationInModule": {
|
|
4008
4008
|
"filename": "src/skylight-compute/eks/windows-eks-nodes.ts",
|
|
@@ -4024,7 +4024,7 @@
|
|
|
4024
4024
|
{
|
|
4025
4025
|
"name": "adParametersStore",
|
|
4026
4026
|
"type": {
|
|
4027
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4027
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4028
4028
|
}
|
|
4029
4029
|
}
|
|
4030
4030
|
]
|
|
@@ -4064,7 +4064,7 @@
|
|
|
4064
4064
|
{
|
|
4065
4065
|
"name": "adParametersStore",
|
|
4066
4066
|
"type": {
|
|
4067
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4067
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4068
4068
|
}
|
|
4069
4069
|
},
|
|
4070
4070
|
{
|
|
@@ -4096,13 +4096,13 @@
|
|
|
4096
4096
|
{
|
|
4097
4097
|
"name": "adParametersStore",
|
|
4098
4098
|
"type": {
|
|
4099
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4099
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4100
4100
|
}
|
|
4101
4101
|
},
|
|
4102
4102
|
{
|
|
4103
4103
|
"name": "fsxParametersStore",
|
|
4104
4104
|
"type": {
|
|
4105
|
-
"fqn": "cdk-skylight.storage.IFSxWindowsParameters"
|
|
4105
|
+
"fqn": "@paulo_raca/cdk-skylight.storage.IFSxWindowsParameters"
|
|
4106
4106
|
}
|
|
4107
4107
|
},
|
|
4108
4108
|
{
|
|
@@ -4140,12 +4140,12 @@
|
|
|
4140
4140
|
"namespace": "compute",
|
|
4141
4141
|
"symbolId": "src/skylight-compute/eks/windows-eks-nodes:IRuntimeNodes"
|
|
4142
4142
|
},
|
|
4143
|
-
"cdk-skylight.compute.IWindowsEKSClusterParameters": {
|
|
4144
|
-
"assembly": "cdk-skylight",
|
|
4143
|
+
"@paulo_raca/cdk-skylight.compute.IWindowsEKSClusterParameters": {
|
|
4144
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
4145
4145
|
"docs": {
|
|
4146
4146
|
"stability": "experimental"
|
|
4147
4147
|
},
|
|
4148
|
-
"fqn": "cdk-skylight.compute.IWindowsEKSClusterParameters",
|
|
4148
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.IWindowsEKSClusterParameters",
|
|
4149
4149
|
"kind": "interface",
|
|
4150
4150
|
"locationInModule": {
|
|
4151
4151
|
"filename": "src/skylight-compute/eks/windows-eks-cluster.ts",
|
|
@@ -4191,12 +4191,12 @@
|
|
|
4191
4191
|
],
|
|
4192
4192
|
"symbolId": "src/skylight-compute/eks/windows-eks-cluster:IWindowsEKSClusterParameters"
|
|
4193
4193
|
},
|
|
4194
|
-
"cdk-skylight.compute.IWindowsEKSClusterProps": {
|
|
4195
|
-
"assembly": "cdk-skylight",
|
|
4194
|
+
"@paulo_raca/cdk-skylight.compute.IWindowsEKSClusterProps": {
|
|
4195
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
4196
4196
|
"docs": {
|
|
4197
4197
|
"stability": "experimental"
|
|
4198
4198
|
},
|
|
4199
|
-
"fqn": "cdk-skylight.compute.IWindowsEKSClusterProps",
|
|
4199
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.IWindowsEKSClusterProps",
|
|
4200
4200
|
"kind": "interface",
|
|
4201
4201
|
"locationInModule": {
|
|
4202
4202
|
"filename": "src/skylight-compute/eks/windows-eks-cluster.ts",
|
|
@@ -4233,18 +4233,18 @@
|
|
|
4233
4233
|
"name": "eksSsmParameters",
|
|
4234
4234
|
"optional": true,
|
|
4235
4235
|
"type": {
|
|
4236
|
-
"fqn": "cdk-skylight.compute.IWindowsEKSClusterParameters"
|
|
4236
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.IWindowsEKSClusterParameters"
|
|
4237
4237
|
}
|
|
4238
4238
|
}
|
|
4239
4239
|
],
|
|
4240
4240
|
"symbolId": "src/skylight-compute/eks/windows-eks-cluster:IWindowsEKSClusterProps"
|
|
4241
4241
|
},
|
|
4242
|
-
"cdk-skylight.compute.IWindowsEKSNodesProps": {
|
|
4243
|
-
"assembly": "cdk-skylight",
|
|
4242
|
+
"@paulo_raca/cdk-skylight.compute.IWindowsEKSNodesProps": {
|
|
4243
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
4244
4244
|
"docs": {
|
|
4245
4245
|
"stability": "experimental"
|
|
4246
4246
|
},
|
|
4247
|
-
"fqn": "cdk-skylight.compute.IWindowsEKSNodesProps",
|
|
4247
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.IWindowsEKSNodesProps",
|
|
4248
4248
|
"kind": "interface",
|
|
4249
4249
|
"locationInModule": {
|
|
4250
4250
|
"filename": "src/skylight-compute/eks/windows-eks-nodes.ts",
|
|
@@ -4304,13 +4304,13 @@
|
|
|
4304
4304
|
],
|
|
4305
4305
|
"symbolId": "src/skylight-compute/eks/windows-eks-nodes:IWindowsEKSNodesProps"
|
|
4306
4306
|
},
|
|
4307
|
-
"cdk-skylight.compute.WindowsEKSCluster": {
|
|
4308
|
-
"assembly": "cdk-skylight",
|
|
4307
|
+
"@paulo_raca/cdk-skylight.compute.WindowsEKSCluster": {
|
|
4308
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
4309
4309
|
"base": "constructs.Construct",
|
|
4310
4310
|
"docs": {
|
|
4311
4311
|
"stability": "experimental"
|
|
4312
4312
|
},
|
|
4313
|
-
"fqn": "cdk-skylight.compute.WindowsEKSCluster",
|
|
4313
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.WindowsEKSCluster",
|
|
4314
4314
|
"initializer": {
|
|
4315
4315
|
"docs": {
|
|
4316
4316
|
"stability": "experimental"
|
|
@@ -4335,7 +4335,7 @@
|
|
|
4335
4335
|
{
|
|
4336
4336
|
"name": "props",
|
|
4337
4337
|
"type": {
|
|
4338
|
-
"fqn": "cdk-skylight.compute.IWindowsEKSClusterProps"
|
|
4338
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.IWindowsEKSClusterProps"
|
|
4339
4339
|
}
|
|
4340
4340
|
}
|
|
4341
4341
|
]
|
|
@@ -4365,13 +4365,13 @@
|
|
|
4365
4365
|
],
|
|
4366
4366
|
"symbolId": "src/skylight-compute/eks/windows-eks-cluster:WindowsEKSCluster"
|
|
4367
4367
|
},
|
|
4368
|
-
"cdk-skylight.compute.WindowsEKSNodes": {
|
|
4369
|
-
"assembly": "cdk-skylight",
|
|
4368
|
+
"@paulo_raca/cdk-skylight.compute.WindowsEKSNodes": {
|
|
4369
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
4370
4370
|
"base": "constructs.Construct",
|
|
4371
4371
|
"docs": {
|
|
4372
4372
|
"stability": "experimental"
|
|
4373
4373
|
},
|
|
4374
|
-
"fqn": "cdk-skylight.compute.WindowsEKSNodes",
|
|
4374
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.WindowsEKSNodes",
|
|
4375
4375
|
"initializer": {
|
|
4376
4376
|
"docs": {
|
|
4377
4377
|
"stability": "experimental"
|
|
@@ -4396,13 +4396,13 @@
|
|
|
4396
4396
|
{
|
|
4397
4397
|
"name": "props",
|
|
4398
4398
|
"type": {
|
|
4399
|
-
"fqn": "cdk-skylight.compute.IWindowsEKSNodesProps"
|
|
4399
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.IWindowsEKSNodesProps"
|
|
4400
4400
|
}
|
|
4401
4401
|
}
|
|
4402
4402
|
]
|
|
4403
4403
|
},
|
|
4404
4404
|
"interfaces": [
|
|
4405
|
-
"cdk-skylight.compute.IRuntimeNodes"
|
|
4405
|
+
"@paulo_raca/cdk-skylight.compute.IRuntimeNodes"
|
|
4406
4406
|
],
|
|
4407
4407
|
"kind": "class",
|
|
4408
4408
|
"locationInModule": {
|
|
@@ -4420,12 +4420,12 @@
|
|
|
4420
4420
|
"line": 162
|
|
4421
4421
|
},
|
|
4422
4422
|
"name": "addAdDependency",
|
|
4423
|
-
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4423
|
+
"overrides": "@paulo_raca/cdk-skylight.compute.IRuntimeNodes",
|
|
4424
4424
|
"parameters": [
|
|
4425
4425
|
{
|
|
4426
4426
|
"name": "adParametersStore",
|
|
4427
4427
|
"type": {
|
|
4428
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4428
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4429
4429
|
}
|
|
4430
4430
|
}
|
|
4431
4431
|
]
|
|
@@ -4440,7 +4440,7 @@
|
|
|
4440
4440
|
"line": 343
|
|
4441
4441
|
},
|
|
4442
4442
|
"name": "addEKSDependency",
|
|
4443
|
-
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4443
|
+
"overrides": "@paulo_raca/cdk-skylight.compute.IRuntimeNodes",
|
|
4444
4444
|
"parameters": [
|
|
4445
4445
|
{
|
|
4446
4446
|
"name": "eksCluster",
|
|
@@ -4460,12 +4460,12 @@
|
|
|
4460
4460
|
"line": 363
|
|
4461
4461
|
},
|
|
4462
4462
|
"name": "addLocalCredFile",
|
|
4463
|
-
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4463
|
+
"overrides": "@paulo_raca/cdk-skylight.compute.IRuntimeNodes",
|
|
4464
4464
|
"parameters": [
|
|
4465
4465
|
{
|
|
4466
4466
|
"name": "adParametersStore",
|
|
4467
4467
|
"type": {
|
|
4468
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4468
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4469
4469
|
}
|
|
4470
4470
|
},
|
|
4471
4471
|
{
|
|
@@ -4492,18 +4492,18 @@
|
|
|
4492
4492
|
"line": 295
|
|
4493
4493
|
},
|
|
4494
4494
|
"name": "addStorageDependency",
|
|
4495
|
-
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4495
|
+
"overrides": "@paulo_raca/cdk-skylight.compute.IRuntimeNodes",
|
|
4496
4496
|
"parameters": [
|
|
4497
4497
|
{
|
|
4498
4498
|
"name": "adParametersStore",
|
|
4499
4499
|
"type": {
|
|
4500
|
-
"fqn": "cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4500
|
+
"fqn": "@paulo_raca/cdk-skylight.authentication.IAwsManagedMicrosoftAdParameters"
|
|
4501
4501
|
}
|
|
4502
4502
|
},
|
|
4503
4503
|
{
|
|
4504
4504
|
"name": "fsxParametersStore",
|
|
4505
4505
|
"type": {
|
|
4506
|
-
"fqn": "cdk-skylight.storage.IFSxWindowsParameters"
|
|
4506
|
+
"fqn": "@paulo_raca/cdk-skylight.storage.IFSxWindowsParameters"
|
|
4507
4507
|
}
|
|
4508
4508
|
},
|
|
4509
4509
|
{
|
|
@@ -4524,7 +4524,7 @@
|
|
|
4524
4524
|
"line": 158
|
|
4525
4525
|
},
|
|
4526
4526
|
"name": "addUserData",
|
|
4527
|
-
"overrides": "cdk-skylight.compute.IRuntimeNodes",
|
|
4527
|
+
"overrides": "@paulo_raca/cdk-skylight.compute.IRuntimeNodes",
|
|
4528
4528
|
"parameters": [
|
|
4529
4529
|
{
|
|
4530
4530
|
"name": "commands",
|
|
@@ -4678,15 +4678,15 @@
|
|
|
4678
4678
|
],
|
|
4679
4679
|
"symbolId": "src/skylight-compute/eks/windows-eks-nodes:WindowsEKSNodes"
|
|
4680
4680
|
},
|
|
4681
|
-
"cdk-skylight.storage.FSxWindows": {
|
|
4682
|
-
"assembly": "cdk-skylight",
|
|
4681
|
+
"@paulo_raca/cdk-skylight.storage.FSxWindows": {
|
|
4682
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
4683
4683
|
"base": "constructs.Construct",
|
|
4684
4684
|
"docs": {
|
|
4685
4685
|
"remarks": "The Construct creates Amazon FSx for Windows\nThe construct also creates (optionally) t3.nano machine that is part of the domain that can be used to run admin-tasks (such as createFolder)\n\nThe createFolder() method creates an SMB Folder in the FSx filesystem, using the domain admin user.\nPlease note: When calling createFolder() API, a Lambda will be created to start the worker machine (Using AWS-SDK),\nthen each command will be scheduled with State Manager, and the instance will be shut down after complete .",
|
|
4686
4686
|
"stability": "experimental",
|
|
4687
4687
|
"summary": "A FSxWindows represents an integration pattern of Amazon FSx and Managed AD in a specific VPC."
|
|
4688
4688
|
},
|
|
4689
|
-
"fqn": "cdk-skylight.storage.FSxWindows",
|
|
4689
|
+
"fqn": "@paulo_raca/cdk-skylight.storage.FSxWindows",
|
|
4690
4690
|
"initializer": {
|
|
4691
4691
|
"docs": {
|
|
4692
4692
|
"stability": "experimental"
|
|
@@ -4711,7 +4711,7 @@
|
|
|
4711
4711
|
{
|
|
4712
4712
|
"name": "props",
|
|
4713
4713
|
"type": {
|
|
4714
|
-
"fqn": "cdk-skylight.storage.IFSxWindowsProps"
|
|
4714
|
+
"fqn": "@paulo_raca/cdk-skylight.storage.IFSxWindowsProps"
|
|
4715
4715
|
}
|
|
4716
4716
|
}
|
|
4717
4717
|
]
|
|
@@ -4735,7 +4735,7 @@
|
|
|
4735
4735
|
{
|
|
4736
4736
|
"name": "worker",
|
|
4737
4737
|
"type": {
|
|
4738
|
-
"fqn": "cdk-skylight.compute.DomainWindowsNode"
|
|
4738
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.DomainWindowsNode"
|
|
4739
4739
|
}
|
|
4740
4740
|
},
|
|
4741
4741
|
{
|
|
@@ -4777,7 +4777,7 @@
|
|
|
4777
4777
|
],
|
|
4778
4778
|
"returns": {
|
|
4779
4779
|
"type": {
|
|
4780
|
-
"fqn": "cdk-skylight.compute.DomainWindowsNode"
|
|
4780
|
+
"fqn": "@paulo_raca/cdk-skylight.compute.DomainWindowsNode"
|
|
4781
4781
|
}
|
|
4782
4782
|
}
|
|
4783
4783
|
}
|
|
@@ -4810,7 +4810,7 @@
|
|
|
4810
4810
|
},
|
|
4811
4811
|
"name": "props",
|
|
4812
4812
|
"type": {
|
|
4813
|
-
"fqn": "cdk-skylight.storage.IFSxWindowsProps"
|
|
4813
|
+
"fqn": "@paulo_raca/cdk-skylight.storage.IFSxWindowsProps"
|
|
4814
4814
|
}
|
|
4815
4815
|
},
|
|
4816
4816
|
{
|
|
@@ -4824,18 +4824,18 @@
|
|
|
4824
4824
|
},
|
|
4825
4825
|
"name": "ssmParameters",
|
|
4826
4826
|
"type": {
|
|
4827
|
-
"fqn": "cdk-skylight.storage.IFSxWindowsParameters"
|
|
4827
|
+
"fqn": "@paulo_raca/cdk-skylight.storage.IFSxWindowsParameters"
|
|
4828
4828
|
}
|
|
4829
4829
|
}
|
|
4830
4830
|
],
|
|
4831
4831
|
"symbolId": "src/skylight-storage/fsx-windows:FSxWindows"
|
|
4832
4832
|
},
|
|
4833
|
-
"cdk-skylight.storage.IFSxWindowsParameters": {
|
|
4834
|
-
"assembly": "cdk-skylight",
|
|
4833
|
+
"@paulo_raca/cdk-skylight.storage.IFSxWindowsParameters": {
|
|
4834
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
4835
4835
|
"docs": {
|
|
4836
4836
|
"stability": "experimental"
|
|
4837
4837
|
},
|
|
4838
|
-
"fqn": "cdk-skylight.storage.IFSxWindowsParameters",
|
|
4838
|
+
"fqn": "@paulo_raca/cdk-skylight.storage.IFSxWindowsParameters",
|
|
4839
4839
|
"kind": "interface",
|
|
4840
4840
|
"locationInModule": {
|
|
4841
4841
|
"filename": "src/skylight-storage/fsx-windows.ts",
|
|
@@ -4881,13 +4881,13 @@
|
|
|
4881
4881
|
],
|
|
4882
4882
|
"symbolId": "src/skylight-storage/fsx-windows:IFSxWindowsParameters"
|
|
4883
4883
|
},
|
|
4884
|
-
"cdk-skylight.storage.IFSxWindowsProps": {
|
|
4885
|
-
"assembly": "cdk-skylight",
|
|
4884
|
+
"@paulo_raca/cdk-skylight.storage.IFSxWindowsProps": {
|
|
4885
|
+
"assembly": "@paulo_raca/cdk-skylight",
|
|
4886
4886
|
"docs": {
|
|
4887
4887
|
"stability": "experimental",
|
|
4888
4888
|
"summary": "The properties for the PersistentStorage class."
|
|
4889
4889
|
},
|
|
4890
|
-
"fqn": "cdk-skylight.storage.IFSxWindowsProps",
|
|
4890
|
+
"fqn": "@paulo_raca/cdk-skylight.storage.IFSxWindowsProps",
|
|
4891
4891
|
"kind": "interface",
|
|
4892
4892
|
"locationInModule": {
|
|
4893
4893
|
"filename": "src/skylight-storage/fsx-windows.ts",
|
|
@@ -4988,7 +4988,7 @@
|
|
|
4988
4988
|
"name": "ssmParameters",
|
|
4989
4989
|
"optional": true,
|
|
4990
4990
|
"type": {
|
|
4991
|
-
"fqn": "cdk-skylight.storage.IFSxWindowsParameters"
|
|
4991
|
+
"fqn": "@paulo_raca/cdk-skylight.storage.IFSxWindowsParameters"
|
|
4992
4992
|
}
|
|
4993
4993
|
},
|
|
4994
4994
|
{
|
|
@@ -5013,5 +5013,5 @@
|
|
|
5013
5013
|
}
|
|
5014
5014
|
},
|
|
5015
5015
|
"version": "0.0.0",
|
|
5016
|
-
"fingerprint": "
|
|
5016
|
+
"fingerprint": "G51z8HpNvtv/aE7h4lW/Z+LRK15RjOIzU5x7+Umv8kI="
|
|
5017
5017
|
}
|