@robhan-cdk-lib/aws_grafana 0.0.402 → 0.1.0
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/.compatignore +37 -0
- package/.jsii +1554 -341
- package/API.md +593 -196
- package/lib/workspace-base.d.ts +228 -24
- package/lib/workspace-base.js +14 -6
- package/lib/workspace.d.ts +134 -32
- package/lib/workspace.js +115 -83
- package/package.json +4 -6
- package/lib/validation/workspace-base.d.ts +0 -121
- package/lib/validation/workspace-base.js +0 -427
package/.compatignore
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# jsii-diff suppressions (API compatibility). Each entry is an intentional, reviewed break for
|
|
2
|
+
# the next MAJOR version of this package. Consumed by `yarn compat`
|
|
3
|
+
# (`jsii-diff --ignore-file .compatignore`), comparing the published baseline to the local build.
|
|
4
|
+
#
|
|
5
|
+
# --- Deprecated SAML misspelling removed (breaking) ---
|
|
6
|
+
# `SamlConfiguration.assertionAtrributes` was a misspelled alias of `assertionAttributes`, kept
|
|
7
|
+
# temporarily as `@deprecated`. It is removed in this major. Use `assertionAttributes`.
|
|
8
|
+
removed:@robhan-cdk-lib/aws_grafana.SamlConfiguration.assertionAtrributes
|
|
9
|
+
#
|
|
10
|
+
# --- Intentional API relaxation: accountAccessType / authenticationProviders / permissionType ---
|
|
11
|
+
# These read members were made OPTIONAL on IWorkspace / WorkspaceBase / Workspace so that
|
|
12
|
+
# `Workspace.fromWorkspaceArn(...)` returns a legitimately-typed import that does not carry
|
|
13
|
+
# create-time configuration, instead of a `undefined as unknown as T` type-lie. They remain
|
|
14
|
+
# REQUIRED on `WorkspaceProps`, so creating a workspace is unchanged.
|
|
15
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.accountAccessType
|
|
16
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.authenticationProviders
|
|
17
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.permissionType
|
|
18
|
+
changed-type:@robhan-cdk-lib/aws_grafana.WorkspaceBase.accountAccessType
|
|
19
|
+
changed-type:@robhan-cdk-lib/aws_grafana.WorkspaceBase.authenticationProviders
|
|
20
|
+
changed-type:@robhan-cdk-lib/aws_grafana.WorkspaceBase.permissionType
|
|
21
|
+
changed-type:@robhan-cdk-lib/aws_grafana.IWorkspace.accountAccessType
|
|
22
|
+
changed-type:@robhan-cdk-lib/aws_grafana.IWorkspace.authenticationProviders
|
|
23
|
+
changed-type:@robhan-cdk-lib/aws_grafana.IWorkspace.permissionType
|
|
24
|
+
#
|
|
25
|
+
# --- CloudFormation attributes: now optional + string-typed (core parity) ---
|
|
26
|
+
# The read attributes were made OPTIONAL (they are unknowable on an ARN import, and are now
|
|
27
|
+
# declared on the IWorkspace resource interface as `@attribute`), and `status` /
|
|
28
|
+
# `samlConfigurationStatus` were retyped from enum to `string` because they are unresolved
|
|
29
|
+
# CloudFormation tokens at synth time (an enum type on a deploy-time token is misleading). The
|
|
30
|
+
# `Status` / `SamlConfigurationStatuses` enums remain exported to document the possible values.
|
|
31
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.creationTimestamp
|
|
32
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.endpoint
|
|
33
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.grafanaVersion
|
|
34
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.modificationTimestamp
|
|
35
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.samlConfigurationStatus
|
|
36
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.ssoClientId
|
|
37
|
+
changed-type:@robhan-cdk-lib/aws_grafana.Workspace.status
|