cdk-code-server 1.0.4__tar.gz → 1.0.6__tar.gz

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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdk-code-server
3
- Version: 1.0.4
3
+ Version: 1.0.6
4
4
  Summary: CDK Construct for a VSCode Server development environment on EC2
5
5
  Home-page: https://github.com/badmintoncryer/cdk-code-server.git
6
6
  Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
@@ -21,9 +21,9 @@ Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  Requires-Dist: aws-cdk-lib<3.0.0,>=2.143.0
23
23
  Requires-Dist: constructs<11.0.0,>=10.0.5
24
- Requires-Dist: jsii<2.0.0,>=1.114.1
24
+ Requires-Dist: jsii<2.0.0,>=1.121.0
25
25
  Requires-Dist: publication>=0.0.3
26
- Requires-Dist: typeguard<4.3.0,>=2.13.3
26
+ Requires-Dist: typeguard==2.13.3
27
27
 
28
28
  # CDK VSCode Server Construct
29
29
 
@@ -5,7 +5,7 @@ kwargs = json.loads(
5
5
  """
6
6
  {
7
7
  "name": "cdk-code-server",
8
- "version": "1.0.4",
8
+ "version": "1.0.6",
9
9
  "description": "CDK Construct for a VSCode Server development environment on EC2",
10
10
  "license": "Apache-2.0",
11
11
  "url": "https://github.com/badmintoncryer/cdk-code-server.git",
@@ -26,7 +26,7 @@ kwargs = json.loads(
26
26
  ],
27
27
  "package_data": {
28
28
  "cdk_code_server._jsii": [
29
- "cdk-code-server@1.0.4.jsii.tgz"
29
+ "cdk-code-server@1.0.6.jsii.tgz"
30
30
  ],
31
31
  "cdk_code_server": [
32
32
  "py.typed"
@@ -36,9 +36,9 @@ kwargs = json.loads(
36
36
  "install_requires": [
37
37
  "aws-cdk-lib>=2.143.0, <3.0.0",
38
38
  "constructs>=10.0.5, <11.0.0",
39
- "jsii>=1.114.1, <2.0.0",
39
+ "jsii>=1.121.0, <2.0.0",
40
40
  "publication>=0.0.3",
41
- "typeguard>=2.13.3,<4.3.0"
41
+ "typeguard==2.13.3"
42
42
  ],
43
43
  "classifiers": [
44
44
  "Intended Audience :: Developers",
@@ -179,16 +179,16 @@ class CodeServer(
179
179
 
180
180
  def __init__(
181
181
  self,
182
- scope: _constructs_77d1e7e8.Construct,
182
+ scope: "_constructs_77d1e7e8.Construct",
183
183
  id: builtins.str,
184
184
  *,
185
- cpu_type: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.AmazonLinuxCpuType] = None,
186
- instance_type: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType] = None,
187
- policy: typing.Optional[_aws_cdk_aws_iam_ceddda9d.PolicyStatement] = None,
185
+ cpu_type: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.AmazonLinuxCpuType"] = None,
186
+ instance_type: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.InstanceType"] = None,
187
+ policy: typing.Optional["_aws_cdk_aws_iam_ceddda9d.PolicyStatement"] = None,
188
188
  use_instance_connect_endpoint: typing.Optional[builtins.bool] = None,
189
189
  user_data: typing.Optional[typing.Sequence[builtins.str]] = None,
190
190
  volume_size: typing.Optional[jsii.Number] = None,
191
- vpc: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc] = None,
191
+ vpc: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"] = None,
192
192
  ) -> None:
193
193
  '''
194
194
  :param scope: -
@@ -235,13 +235,13 @@ class CodeServerProps:
235
235
  def __init__(
236
236
  self,
237
237
  *,
238
- cpu_type: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.AmazonLinuxCpuType] = None,
239
- instance_type: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType] = None,
240
- policy: typing.Optional[_aws_cdk_aws_iam_ceddda9d.PolicyStatement] = None,
238
+ cpu_type: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.AmazonLinuxCpuType"] = None,
239
+ instance_type: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.InstanceType"] = None,
240
+ policy: typing.Optional["_aws_cdk_aws_iam_ceddda9d.PolicyStatement"] = None,
241
241
  use_instance_connect_endpoint: typing.Optional[builtins.bool] = None,
242
242
  user_data: typing.Optional[typing.Sequence[builtins.str]] = None,
243
243
  volume_size: typing.Optional[jsii.Number] = None,
244
- vpc: typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc] = None,
244
+ vpc: typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"] = None,
245
245
  ) -> None:
246
246
  '''Properties for CodeServer construct.
247
247
 
@@ -279,31 +279,35 @@ class CodeServerProps:
279
279
  self._values["vpc"] = vpc
280
280
 
281
281
  @builtins.property
282
- def cpu_type(self) -> typing.Optional[_aws_cdk_aws_ec2_ceddda9d.AmazonLinuxCpuType]:
282
+ def cpu_type(
283
+ self,
284
+ ) -> typing.Optional["_aws_cdk_aws_ec2_ceddda9d.AmazonLinuxCpuType"]:
283
285
  '''The CPU type.
284
286
 
285
287
  :default: - ARM_64
286
288
  '''
287
289
  result = self._values.get("cpu_type")
288
- return typing.cast(typing.Optional[_aws_cdk_aws_ec2_ceddda9d.AmazonLinuxCpuType], result)
290
+ return typing.cast(typing.Optional["_aws_cdk_aws_ec2_ceddda9d.AmazonLinuxCpuType"], result)
289
291
 
290
292
  @builtins.property
291
- def instance_type(self) -> typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType]:
293
+ def instance_type(
294
+ self,
295
+ ) -> typing.Optional["_aws_cdk_aws_ec2_ceddda9d.InstanceType"]:
292
296
  '''The instance type.
293
297
 
294
298
  :default: - C7g.2xlarge
295
299
  '''
296
300
  result = self._values.get("instance_type")
297
- return typing.cast(typing.Optional[_aws_cdk_aws_ec2_ceddda9d.InstanceType], result)
301
+ return typing.cast(typing.Optional["_aws_cdk_aws_ec2_ceddda9d.InstanceType"], result)
298
302
 
299
303
  @builtins.property
300
- def policy(self) -> typing.Optional[_aws_cdk_aws_iam_ceddda9d.PolicyStatement]:
304
+ def policy(self) -> typing.Optional["_aws_cdk_aws_iam_ceddda9d.PolicyStatement"]:
301
305
  '''The IAM policy to attach to the instance role.
302
306
 
303
307
  :default: - Allow all actions on all resources
304
308
  '''
305
309
  result = self._values.get("policy")
306
- return typing.cast(typing.Optional[_aws_cdk_aws_iam_ceddda9d.PolicyStatement], result)
310
+ return typing.cast(typing.Optional["_aws_cdk_aws_iam_ceddda9d.PolicyStatement"], result)
307
311
 
308
312
  @builtins.property
309
313
  def use_instance_connect_endpoint(self) -> typing.Optional[builtins.bool]:
@@ -336,13 +340,13 @@ class CodeServerProps:
336
340
  return typing.cast(typing.Optional[jsii.Number], result)
337
341
 
338
342
  @builtins.property
339
- def vpc(self) -> typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc]:
343
+ def vpc(self) -> typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"]:
340
344
  '''The VPC where the instance will be deployed.
341
345
 
342
346
  :default: - A new VPC will be created
343
347
  '''
344
348
  result = self._values.get("vpc")
345
- return typing.cast(typing.Optional[_aws_cdk_aws_ec2_ceddda9d.IVpc], result)
349
+ return typing.cast(typing.Optional["_aws_cdk_aws_ec2_ceddda9d.IVpc"], result)
346
350
 
347
351
  def __eq__(self, rhs: typing.Any) -> builtins.bool:
348
352
  return isinstance(rhs, self.__class__) and rhs._values == self._values
@@ -32,7 +32,7 @@ import aws_cdk._jsii
32
32
  import constructs._jsii
33
33
 
34
34
  __jsii_assembly__ = jsii.JSIIAssembly.load(
35
- "cdk-code-server", "1.0.4", __name__[0:-6], "cdk-code-server@1.0.4.jsii.tgz"
35
+ "cdk-code-server", "1.0.6", __name__[0:-6], "cdk-code-server@1.0.6.jsii.tgz"
36
36
  )
37
37
 
38
38
  __all__ = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: cdk-code-server
3
- Version: 1.0.4
3
+ Version: 1.0.6
4
4
  Summary: CDK Construct for a VSCode Server development environment on EC2
5
5
  Home-page: https://github.com/badmintoncryer/cdk-code-server.git
6
6
  Author: Kazuho CryerShinozuka<malaysia.cryer@gmail.com>
@@ -21,9 +21,9 @@ Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
22
  Requires-Dist: aws-cdk-lib<3.0.0,>=2.143.0
23
23
  Requires-Dist: constructs<11.0.0,>=10.0.5
24
- Requires-Dist: jsii<2.0.0,>=1.114.1
24
+ Requires-Dist: jsii<2.0.0,>=1.121.0
25
25
  Requires-Dist: publication>=0.0.3
26
- Requires-Dist: typeguard<4.3.0,>=2.13.3
26
+ Requires-Dist: typeguard==2.13.3
27
27
 
28
28
  # CDK VSCode Server Construct
29
29
 
@@ -11,4 +11,4 @@ src/cdk_code_server.egg-info/dependency_links.txt
11
11
  src/cdk_code_server.egg-info/requires.txt
12
12
  src/cdk_code_server.egg-info/top_level.txt
13
13
  src/cdk_code_server/_jsii/__init__.py
14
- src/cdk_code_server/_jsii/cdk-code-server@1.0.4.jsii.tgz
14
+ src/cdk_code_server/_jsii/cdk-code-server@1.0.6.jsii.tgz
@@ -1,5 +1,5 @@
1
1
  aws-cdk-lib<3.0.0,>=2.143.0
2
2
  constructs<11.0.0,>=10.0.5
3
- jsii<2.0.0,>=1.114.1
3
+ jsii<2.0.0,>=1.121.0
4
4
  publication>=0.0.3
5
- typeguard<4.3.0,>=2.13.3
5
+ typeguard==2.13.3
File without changes